Lines Matching refs:FragBlockInterface
65 export interface FragBlockInterface { interface
151 function compile(vm: Vm, target: TemplateInterface, dest: FragBlockInterface | Element, meta?: Part…
292 dest: Element | FragBlockInterface,
456 const fragBlock: FragBlockInterface = createBlock(vm, dest);
473 dest: Element | FragBlockInterface,
502 function compileBlock(vm: Vm, target: TemplateInterface, dest: Element | FragBlockInterface): void {
530 dest: Element | FragBlockInterface,
616 function compileNativeComponent(vm: Vm, template: TemplateInterface, dest: FragBlockInterface | Ele…
728 function compileChildren(vm: Vm, template: any, dest: Element | FragBlockInterface): void | boolean…
746 function bindRepeat(vm: Vm, target: TemplateInterface, fragBlock: FragBlockInterface, info: any): v…
862 fragBlock: FragBlockInterface,
895 function watchBlock(vm: Vm, fragBlock: FragBlockInterface, calc: Function, type: string, handler: F…
945 export function isBlock(node: FragBlockInterface | Node): node is FragBlockInterface {
946 const newNode = <FragBlockInterface>node;