cloudflare/cloudflare-typescript
Publicmirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable
src/internal/qs/index.ts
13lines · modecode
| 1 | import { default_format, formatters, RFC1738, RFC3986 } from './formats'; |
| 2 | |
| 3 | const formats = { |
| 4 | formatters, |
| 5 | RFC1738, |
| 6 | RFC3986, |
| 7 | default: default_format, |
| 8 | }; |
| 9 | |
| 10 | export { stringify } from './stringify'; |
| 11 | export { formats }; |
| 12 | |
| 13 | export type { DefaultDecoder, DefaultEncoder, Format, ParseOptions, StringifyOptions } from './types'; |
| 14 | |