UNPKG

@ffsm/serialize

Version:
27 lines (26 loc) 973 B
import { decode } from './decode'; import { encode } from './encode'; import { get } from './get'; import { parse, SerializeParseOptions } from './parse'; import { query, SerializeQueryOptions } from './query'; import { url } from './url'; import { variable, variableAsync } from './variable'; import { isString, isNumber, isBoolean, isPrimitive } from './primitive'; export * from './types'; export type { SerializeParseOptions, SerializeQueryOptions }; export { decode, encode, get, parse, url, variable, variableAsync, isBoolean, isNumber, isPrimitive, isString, }; declare const _default: { decode: typeof decode; encode: typeof encode; get: typeof get; parse: typeof parse; query: typeof query; url: typeof url; variable: typeof variable; variableAsync: typeof variableAsync; isBoolean: typeof isBoolean; isNumber: typeof isNumber; isPrimitive: typeof isPrimitive; isString: typeof isString; }; export default _default;