armisa-models
Version:
models of armisa!
13 lines (12 loc) • 349 B
TypeScript
/// <reference types="react" />
export interface INewProperties {
propertyName: string;
controlRef: React.RefObject<HTMLButtonElement>;
caption: string;
accessDenied: boolean;
}
export declare class SelfButton {
private _properties?;
get properties(): INewProperties;
set properties(value: INewProperties);
}