ngx-translate-extract/src/parsers/parser.interface.ts

6 lines
95 B
TypeScript

export interface ParserInterface {
process(filePath: string, contents: string): string[];
}