ngx-translate-extract/src/parsers/parser.interface.ts
2019-09-18 14:16:47 +02:00

6 lines
185 B
TypeScript

import { TranslationCollection } from '../utils/translation.collection';
export interface ParserInterface {
extract(source: string, filePath: string): TranslationCollection | null;
}