@omnia/foundation
Version:
Provide omnia foundation typings and tooling work on client side for omnia extension
14 lines (13 loc) • 406 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { IGlue } from '../../models';
export declare abstract class GluePaneContentBase implements OnInit, OnDestroy {
glueEditor: IGlue.IGlueEditor;
tabName: string;
name: string;
subcribeIds: any[];
destroy: boolean;
abstract onSelected(): void;
ngOnDestroy(): void;
ngOnInit(): void;
dispose(): void;
}