UNPKG

armisa-models

Version:
17 lines (15 loc) 384 B
export interface INewProperties { propertyName: string; controlRef: React.RefObject<HTMLButtonElement>; caption: string; accessDenied: boolean; } export class SelfButton { private _properties?: INewProperties; public get properties() { return this._properties!; } public set properties(value: INewProperties) { this._properties = value; } }