UNPKG

splito

Version:

Passive event based multifile editor

10 lines (8 loc) 192 B
import { WriteStream } from "fs"; export interface Chunk { key: string; content: string; } export interface Parser { parseIfApplicable(chunk: Chunk, outputStream: WriteStream): boolean; }