This commit is contained in:
2023-08-10 21:57:55 +03:00
parent 25184e9edc
commit a09fc7ece3
19 changed files with 230 additions and 68 deletions
@@ -0,0 +1,4 @@
export interface ISelectableModel<T> {
model: T;
selected: boolean;
}