ack-angular
Version:
Extra special directives, components, providers and pipes to aide in tackling everyday interface development needs in Angular2
25 lines (24 loc) • 1.13 kB
TypeScript
import { EventEmitter, TemplateRef, ElementRef, QueryList } from "@angular/core";
import * as i0 from "@angular/core";
export declare class DebugItem {
name: string;
value: any;
type: "array" | string;
rowTitle: TemplateRef<ElementRef>;
save: EventEmitter<any>;
static ɵfac: i0.ɵɵFactoryDeclaration<DebugItem, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<DebugItem, "debug-item", never, { "name": "name"; "value": "value"; "type": "type"; }, { "save": "save"; }, ["rowTitle"], never, false>;
}
export declare class DebugArea {
edit: boolean;
dataString: string;
editsMap?: any;
debugItem: DebugItem;
DebugItems: QueryList<DebugItem>;
ngAfterViewInit(): void;
updateDataByJsonString(item: any, string: string, debugItem: DebugItem): void;
apply(item: any, json: string, debugItem: DebugItem): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DebugArea, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DebugArea, "debug-area", never, {}, {}, ["DebugItems"], never, false>;
}
export declare const debugDeclarations: (typeof DebugItem | typeof DebugArea)[];