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