mframejs
Version:
simple framework
17 lines (13 loc) • 375 B
text/typescript
type AttibuteTypes = 'controller' | 'value' | 'attribute';
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;
}