UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

16 lines (12 loc) 580 B
// Type definitions for circular-json v0.1.6 // Project: https://github.com/WebReflection/circular-json // Definitions by: Jonathan Pevarnek <https://github.com/jpevarnek/> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare module 'circular-json' { interface ICircularJSON extends JSON { parse(text: string, reviver?: (key: any, value: any) => any): any; stringify(value: any, replacer?: ((key: string, value: any) => any) | any[], space?: any, placeholder?: boolean): string; } var CircularJSON: ICircularJSON; export = CircularJSON; }