foxr
Version:
Node.js API to control Firefox
7 lines (6 loc) • 295 B
TypeScript
/// <reference types="node" />
import { Transform } from 'stream';
import { TJsonValue } from 'typeon';
export declare const createParseStream: () => Transform;
export declare const parse: (buf: Buffer) => import("typeon").TJsonMap;
export declare const stringify: (data: TJsonValue) => string;