Skip to content

Commit

Permalink
fix: add types for ./esm/wrapper.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pkerschbaum authored and BridgeAR committed Sep 14, 2022
1 parent 78891ff commit 753eb6a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions esm/wrapper.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
export function stringify(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string;
export function stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string;

export interface StringifyOptions {
bigint?: boolean,
circularValue?: string | null | TypeErrorConstructor | ErrorConstructor,
deterministic?: boolean,
maximumBreadth?: number,
maximumDepth?: number,
}

export namespace stringify {
export function configure(options: StringifyOptions): typeof stringify;
}

export function configure(options: StringifyOptions): typeof stringify;

export default stringify;

0 comments on commit 753eb6a

Please sign in to comment.