sdg
Version:
pomelo ts
13 lines (12 loc) • 341 B
TypeScript
import { ILogger } from './interfaces/IApplication';
import Application from './application';
export default class Base {
app: Application;
logger: ILogger | Console;
opts: any;
name: string;
state: number;
constructor(app?: Application, opts?: any);
private setName;
bindGlobalProperty(target: any): void;
}