parseqs.d.ts 309 B

123456789101112131415
  1. /**
  2. * Compiles a querystring
  3. * Returns string representation of the object
  4. *
  5. * @param {Object}
  6. * @api private
  7. */
  8. export declare function encode(obj: any): string;
  9. /**
  10. * Parses a simple querystring into an object
  11. *
  12. * @param {String} qs
  13. * @api private
  14. */
  15. export declare function decode(qs: any): {};