11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
|
export interface File {
|
||
|
get html(): string;
|
||
|
get data(): {
|
||
|
[key: string]: any;
|
||
|
};
|
||
|
}
|
||
|
export default interface Renderer {
|
||
|
get name(): string;
|
||
|
loadAsHTML(path: string): File;
|
||
|
}
|