UNPKG

thunderpix

Version:

Biblioteca javascript de padronização de gateways de pagamentos PIX

9 lines (8 loc) 289 B
type QueryObject = Record<string, string | number | boolean | null | undefined>; declare const queryString: { stringify(obj: QueryObject): string; parse(str: string): QueryObject; encode(value: string): string; decode(value: string): string; }; export default queryString;