generated from gxc-solutions/gxc-template-repo
7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
export interface ISelectableObject {
|
|
isSelected: boolean;
|
|
}
|
|
|
|
export interface IVisibleObject {
|
|
isVisible: boolean;
|
|
}
|