UNPKG

lugger

Version:

Lugger is an automation framework running on customizable Typescript DSL

10 lines (8 loc) 239 B
export interface FileOperationOptions { file: string; fullpath?: string; pretty?: boolean; dedent?: boolean; encoding?: BufferEncoding; } export type FileOperationReturn = number & { isFileTarget: true } & FileOperationOptions;