mirror of
https://github.com/dadosfera/maestro.git
synced 2026-09-01 20:28:17 +00:00
3 lines
77 B
TypeScript
3 lines
77 B
TypeScript
export interface Parser<T> {
|
|
parse(data: T[]): Promise<string | Buffer>
|
|
} |