nge-facturaperu
Version:
nge-facturaperu. Es un proyecto de libreria javascript que contiene componentes reutilizables para el proyectos web de [facturación electrónica](http://svs.factura-peru.com/) u [algún otro proyecto web](http://hotelparis.pe/).
25 lines (24 loc) • 746 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
export declare class AppTreeViewComponent implements OnInit {
_collapseAll: boolean;
collapseAttr: string;
data: any[];
collapseAll: boolean;
eventNewChildren: EventEmitter<any>;
eventUpdate: EventEmitter<any>;
eventDelete: EventEmitter<any>;
constructor();
ngOnInit(): void;
newChildren($event: any): void;
updated($event: any): void;
deleted($event: any): void;
private _recursiveEdit;
}
export declare const APP_TREEVIEW_COMPONENTS: (typeof AppTreeViewComponent)[];
export declare class ModelTreeView {
id: string;
name: string;
parent: string;
collapse: boolean;
children: ModelTreeView[];
}