2016-12-09 21:29:48 +03:00
|
|
|
import { TranslationCollection } from '../utils/translation.collection';
|
2016-12-09 07:18:04 +03:00
|
|
|
|
2016-12-03 17:09:39 +03:00
|
|
|
export interface ParserInterface {
|
2019-09-16 17:49:47 +03:00
|
|
|
extract(source: string, filePath: string): TranslationCollection | null;
|
2016-12-03 17:09:39 +03:00
|
|
|
}
|