query-string
Version:
Parse and stringify URL query strings
17 lines (13 loc) • 327 B
TypeScript
/// export * as default from './base.js';
// Workaround for TS missing feature.
import * as queryString from './base.js';
export default queryString;
export {
type ParseOptions,
type ParsedQuery,
type ParsedUrl,
type StringifyOptions,
type Stringifiable,
type StringifiableRecord,
type UrlObject,
} from './base.js';