Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions dist/src/main/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ export declare const ignoreLeadingUnderscoreKey: ReplacerDelegate;
export declare const includeError: ReplacerDelegate;
export declare function chainReplacers(...replacers: ReplacerDelegate[]): ReplacerDelegate;
export declare function toPathStr(path: string[]): string;
export declare function stringify(raw: any, replacer?: ReplacerDelegate, path?: string[], closed?: {
export declare function stringify(raw: any, replacer?: ReplacerDelegate, recursionKey?: string, path?: string[], closed?: {
value: any;
path: string[];
}[]): undefined | string;
export declare function stringifyOrError(raw: any, replacer?: ReplacerDelegate): string;
export declare function stringifyOrError(raw: any, replacer?: ReplacerDelegate, recursionKey?: string): string;
export declare function findAtPath(raw: any, path: string[]): any;
export declare function resolveRecursiveObjects(root: any, cur: any, path?: string[]): any;
export declare function parse(str: string): any;
export declare function createStringifyOrError(...replacers: ReplacerDelegate[]): (raw: any) => string;
export declare function resolveRecursiveObjects(root: any, cur: any, recursionKey?: string, path?: string[]): any;
export declare function parse(str: string, recursionKey?: string): any;
export declare function createStringifyOrError(...replacers: ReplacerDelegate[]): (raw: any, recursionKey?: string) => string;
32 changes: 16 additions & 16 deletions dist/src/main/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/main/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading