/* * This file is part of the Protevus Platform. * * (C) Protevus * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /// This library exports various foundation classes and utilities for web-related operations. /// /// Exports: /// - [CountableInterface] from 'src/foundation/countable_interface.dart' /// - [StringableInterface] from 'src/foundation/stringable_interface.dart' /// - [Filter] from 'src/foundation/filter.dart' /// - [Cookie] from 'src/foundation/cookie.dart' /// - [HeaderUtils] from 'src/foundation/header_utils.dart' /// - [HeaderBag] from 'src/foundation/header_bag.dart' /// - [ParameterBag] from 'src/foundation/parameter_bag.dart' /// - [InputBag] from 'src/foundation/input_bag.dart' /// - [ResponseHeaderBag] from 'src/foundation/response_header_bag.dart' /// /// These exports provide a comprehensive set of tools for handling various aspects of web development, /// including countable objects, string manipulation, filtering, cookies, HTTP headers, request parameters, /// and response handling. library; export 'src/foundation/countable_interface.dart'; export 'src/foundation/stringable_interface.dart'; export 'src/foundation/filter.dart'; export 'src/foundation/cookie.dart'; export 'src/foundation/header_utils.dart'; export 'src/foundation/header_bag.dart'; export 'src/foundation/parameter_bag.dart'; export 'src/foundation/input_bag.dart'; export 'src/foundation/response_header_bag.dart';