UNPKG

@types/jsonlines

Version:
56 lines (44 loc) 2.19 kB
# Installation > `npm install --save @types/jsonlines` # Summary This package contains type definitions for jsonlines (https://github.com/LinusU/node-jsonlines#readme). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonlines. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonlines/index.d.ts) ````ts /// <reference types="node" /> import { Transform } from "stream"; export interface Options { emitInvalidLines?: boolean | undefined; } /** A transform stream that turns newline separated json into a stream of javascript values. */ export class Parser extends Transform { // inherited (must re-declare since this is a class) on(event: "close" | "end" | "pause" | "readable" | "resume", listener: () => void): this; // added 'invalid-line' on(event: "error" | "invalid-line", listener: (err: Error) => void): this; // changed on(event: "data", listener: (data: any) => void): this; // inherited on(event: string | symbol, listener: (...args: any[]) => void): this; } /** A transform stream that turns javascript values into a stream of newline separated json. */ export class Stringifier extends Transform { // inherited (must re-declare since this is a class) on(event: "close" | "end" | "pause" | "readable" | "resume", listener: () => void): this; on(event: "error", listener: (err: Error) => void): this; // changed on(event: "data", listener: (data: any) => void): this; // inherited on(event: string | symbol, listener: (...args: any[]) => void): this; } /** Returns a transform stream that turns newline separated json into a stream of javascript values. */ export function parse(options?: Options): Parser; /** Returns a transform stream that turns javascript values into a stream of newline separated json. */ export function stringify(): Stringifier; ```` ### Additional Details * Last updated: Tue, 07 Nov 2023 03:09:37 GMT * Dependencies: [@types/node](https://npmjs.com/package/@types/node) # Credits These definitions were written by [Raine Revere](https://github.com/raineorshine).