@aca-1/a2-composer
Version:
Angular 2 Interface for composer
20 lines (19 loc) • 583 B
TypeScript
import { StatusVariable } from './status-variable.class';
export declare class Module {
id: string;
parent: any;
index: number;
status_variables: StatusVariable[];
debugger: any;
private _debug;
private service;
constructor(srv: object, parent: any, name: string, i: number);
bind(prop: string, cb_fn?: () => void): () => void;
exec(fn: string, prop: string, args: any): any;
unbind(prop: string): void;
debug(): void;
ignore(): void;
get(prop: string): StatusVariable;
rebind(): void;
setDebug(debug: any): boolean;
}