UNPKG

211 BTypeScriptView Raw
1import { StatusEntry } from "./status-entry";
2
3export interface StatusFileOptions {
4 path?: string | undefined;
5 status?: number | undefined;
6 entry?: StatusEntry | undefined;
7 [key: string]: any;
8}