query.d.ts 108 B

123456
  1. declare const query: {
  2. parse(str: string): any;
  3. stringify(object: any): string;
  4. };
  5. export = query;