Skip to content

Commit

Permalink
fix(typings): fix type errors exposed by node 14 typings
Browse files Browse the repository at this point in the history
  • Loading branch information
Hotell committed Nov 3, 2022
1 parent 704a3aa commit 7bd3085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typings/json-stable-stringify-without-jsonify/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Type definitions for json-stable-stringify-without-jsonify 1.0.1

declare module 'json-stable-stringify-without-jsonify' {
function stringify(value: Record<string, any>, options?: Partial<Options>): Record<string, any>;
function stringify(value: Record<string, any>, options?: Partial<Options>): string;

interface Options {
cmp: (a: any, b: any) => any;
Expand Down

0 comments on commit 7bd3085

Please sign in to comment.