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

6 lines
95 B
TypeScript
Raw Normal View History

2016-12-03 17:09:39 +03:00
export interface ParserInterface {
process(filePath: string, contents: string): string[];
2016-12-03 17:09:39 +03:00
}