gxc-model-base/lib/src/interfaces/state.ts
Andrey Kernichniy 19c5dc67b9
Some checks failed
CI / build (push) Failing after 26s
Release package version 0.0.5
Update models
2026-03-15 01:24:29 +07:00

7 lines
121 B
TypeScript

export interface ISelectableObject {
isSelected: boolean;
}
export interface IVisibleObject {
isVisible: boolean;
}