move type
This commit is contained in:
@@ -1 +1,2 @@
|
||||
export * from './workspace/index.js';
|
||||
export * from './types.js';
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
import type { UmbBlockTypeBase } from '../block-type/index.js';
|
||||
|
||||
export interface UmbBlockGridType extends UmbBlockTypeBase {
|
||||
columnSpanOptions: Array<number>;
|
||||
allowAtRoot: boolean;
|
||||
allowInAreas: boolean;
|
||||
rowMinSpan: number;
|
||||
rowMaxSpan: number;
|
||||
thumbnail?: string;
|
||||
areaGridColumns?: number;
|
||||
areas: Array<any>;
|
||||
groupKey: null | string;
|
||||
}
|
||||
@@ -10,15 +10,3 @@ export interface UmbBlockTypeBase {
|
||||
backgroundColor?: string;
|
||||
editorSize?: UUIModalSidebarSize;
|
||||
}
|
||||
|
||||
export interface UmbBlockGridType extends UmbBlockTypeBase {
|
||||
columnSpanOptions: Array<number>;
|
||||
allowAtRoot: boolean;
|
||||
allowInAreas: boolean;
|
||||
rowMinSpan: number;
|
||||
rowMaxSpan: number;
|
||||
thumbnail?: string;
|
||||
areaGridColumns?: number;
|
||||
areas: Array<any>;
|
||||
groupKey: null | string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user