index.d.ts 327 B

12345678910111213141516
  1. /// export * as default from './base.js';
  2. // Workaround for TS missing feature.
  3. import * as queryString from './base.js';
  4. export default queryString;
  5. export {
  6. type ParseOptions,
  7. type ParsedQuery,
  8. type ParsedUrl,
  9. type StringifyOptions,
  10. type Stringifiable,
  11. type StringifiableRecord,
  12. type UrlObject,
  13. } from './base.js';