Quick and dirty strict checks

This commit is contained in:
2022-08-18 17:53:22 -04:00
parent 8899687c03
commit f17d18a903
28 changed files with 159 additions and 153 deletions

View File

@@ -1,6 +1,6 @@
import { GridsterItem } from 'angular-gridster2';
export class DashboardLayout {
version: number;
layout: Array<GridsterItem>;
version: number | undefined;
layout: Array<GridsterItem> | undefined;
}