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

8 lines
164 B
TypeScript
Raw Normal View History

import { StringCollection } from '../utils/string.collection';
2016-12-03 17:09:39 +03:00
export interface ParserInterface {
extract(contents: string, path?: string): StringCollection;
2016-12-03 17:09:39 +03:00
}