@appsemble/lang-sdk
Version:
Language SDK for Appsemble
18 lines • 581 B
JavaScript
export const PageLayoutDefinition = {
type: 'object',
description: 'Grid layout of the page, define as an anchor to re-use across multiple pages',
additionalProperties: false,
minProperties: 1,
properties: {
mobile: {
$ref: '#/components/schemas/DeviceGridLayoutDefinition',
},
tablet: {
$ref: '#/components/schemas/DeviceGridLayoutDefinition',
},
desktop: {
$ref: '#/components/schemas/DeviceGridLayoutDefinition',
},
},
};
//# sourceMappingURL=PageLayoutDefinition.js.map