12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import { IBlockData } from '@schlechtenburg/core';
|
|
|
|
export interface ILayoutData {
|
|
orientation: string;
|
|
children: IBlockData<any>[];
|
|
}
|
|
|
|
export const getDefaultData: () => ILayoutData = () => ({
|
|
orientation: 'vertical',
|
|
children: [],
|
|
});
|