@types/streaming-json-stringify
TypeScript icon, indicating that this package has built-in type declarations

3.1.4 • Public • Published

Installation

npm install --save @types/streaming-json-stringify

Summary

This package contains type definitions for streaming-json-stringify (https://github.com/stream-utils/streaming-json-stringify#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/streaming-json-stringify.

index.d.ts

/// <reference types="node" />
import * as stream from "stream";

export = Stringify;

declare const Stringify: StringifyFactory;

interface StringifyFactory {
    (options?: Stringify.Options): Stringify.Instance & stream.Transform;
    new(options?: Stringify.Options): Stringify.Instance & stream.Transform;
}

declare namespace Stringify {
    interface Instance {
        replacer: Replacer;
        space: string | number;
        opener: string;
        seperator: string;
        closer: string;
        stringifier(value: any, replacer: Replacer, space: string | number): string;
    }

    type Replacer = (key: string, value: any) => any;

    type Options = Partial<Instance> & stream.TransformOptions;
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: @types/node

Credits

These definitions were written by BendingBender.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/streaming-json-stringify

Weekly Downloads

5,189

Version

3.1.4

License

MIT

Unpacked Size

4.21 kB

Total Files

5

Last publish

Collaborators

  • types