UNPKG

generator-theia

Version:

Theia Generator

8 lines (7 loc) 463 B
import { AbstractGenerator, FileSystem } from "../common"; export declare abstract class AbstractFrontendGenerator extends AbstractGenerator { protected doGenerate(fs: FileSystem, frontendModules: Map<string, string>): void; protected compileIndexHtml(frontendModules: Map<string, string>): string; protected compileIndexHead(frontendModules: Map<string, string>): string; protected compileIndexJs(frontendModules: Map<string, string>): string; }