0.3.3 • Published 2 years ago

@types/jsonic v0.3.3

Weekly downloads
245
License
MIT
Repository
github
Last release
2 years ago

Installation

npm install --save @types/jsonic

Summary

This package contains type definitions for jsonic (https://github.com/rjrodger/jsonic).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonic.

index.d.ts

// Type definitions for jsonic 0.3
// Project: https://github.com/rjrodger/jsonic
// Definitions by: Rong SHen <https://github.com/jacobbubu>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

declare function jsonic(text: string): any;
declare namespace jsonic {
    interface Options {
        depth?: number | undefined;
        maxitems?: number | undefined;
        maxchars?: number | undefined;
        omit?: string[] | undefined;
        exclude?: string[] | undefined;
    }

    function stringify(val: any, opts?: Options): string;
}

export = jsonic;

Additional Details

  • Last updated: Thu, 08 Jul 2021 16:22:54 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Rong SHen.

0.3.2

2 years ago

0.3.3

2 years ago

0.3.1

4 years ago

0.3.0

7 years ago