objectSorter.d.ts 177 B

12345678
  1. declare module 'node-object-hash.objectSorter' {
  2. function makeObjectSorter(options?: {
  3. coerce?: boolean,
  4. sort?: boolean,
  5. }): string;
  6. export = makeObjectSorter;
  7. }