alapa
Version:
A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.
14 lines (13 loc) • 440 B
TypeScript
export interface ContainerParseResult {
key: string;
content: string;
}
export declare class Container {
private static containers;
private static parser;
static compile(template: string): ContainerParseResult[];
static compileFile(templatePath: string): ContainerParseResult[];
static removeContainersFromTemplate(template: string): string;
static clear(): void;
static get(): ContainerParseResult[];
}