4 lines
143 B
TypeScript
4 lines
143 B
TypeScript
interface IFormatterTable {
|
|
[key: string]: (config: IConfig, input: string|Buffer, done: (err: Error, subtitle?: string) => void) => void;
|
|
}
|