UNPKG

mili

Version:

Scaffolding with continuous control over the development of the project.

16 lines (15 loc) 284 B
export interface Handler { name: string; options: Record<string, any>; } export interface Template { path: string; /** * @default 'utf8' */ encoding: 'utf8' | 'binary' | 'hex' | 'ascii'; /** * @default 'cover' */ handlers: Handler[]; }