index.d.ts 394 B

12345678910
  1. declare const formats: {
  2. formatters: Record<import("./types").Format, (str: PropertyKey) => string>;
  3. RFC1738: string;
  4. RFC3986: string;
  5. default: import("./types").Format;
  6. };
  7. export { stringify } from "./stringify.js";
  8. export { formats };
  9. export type { DefaultDecoder, DefaultEncoder, Format, ParseOptions, StringifyOptions } from "./types.js";
  10. //# sourceMappingURL=index.d.ts.map