UNPKG

fauton

Version:

A library to test any finite automaton with arbitrary alphabets

10 lines (9 loc) 397 B
/// <reference types="node" /> import fs from 'fs'; import { IOutputFiles } from '../../../types'; declare type IWriteStreams = Record<`${keyof IOutputFiles}WriteStream`, null | fs.WriteStream>; export declare function createFileWriteStreams(logsPath: string, automatonLabel: string, outputFiles: Partial<IOutputFiles>): { record: IWriteStreams; endStreams(): void; }; export {};