mframejs
Version:
simple framework
15 lines (14 loc) • 397 B
TypeScript
declare type AttibuteTypes = 'controller' | 'value' | 'attribute';
declare type NodeTypes = 'element' | 'text' | 'blank';
export interface ITemplateCacheAttibute {
type: AttibuteTypes;
container: any;
name: string;
}
export interface ITemplateCache {
type: NodeTypes;
attributes: ITemplateCacheAttibute[];
container: any;
gotoChild: boolean;
}
export {};