10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
export interface File {
|
|
get html(): string;
|
|
get data(): {
|
|
[key: string]: any;
|
|
};
|
|
}
|
|
export default interface Parser {
|
|
get name(): string;
|
|
parse(path: string): File;
|
|
}
|