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