UNPKG

@criticalmanufacturing/dev-i18n-transform

Version:
15 lines (14 loc) 314 B
/// <reference types="node" /> export interface Writer { run(): FileOutputInformation[]; } export interface FileOutputInformation { /** * Relative file path where to write the file to. */ file: string; /** * Content of the file to write. */ content: Buffer; }