import { ActionInstance } from './ActionInstance'; export interface SpecialProperty { propertyName: string; meta: { typeName: string; [k: string]: any; } action: ActionInstance; init?(): Promise | void; onDestroy?(): Promise | void; onContextChanged?(): Promise | void; }