Skip to main content

getAppStateLayout

client.application.getAppStateLayout(): Promise<AppStateLayout>

Retrieves the application state layout.

Returns the full layout configuration for the application, including all mode-specific layout definitions.

Parameters

No parameters.

Returns

Promise<AppStateLayout> — A promise that resolves to the AppStateLayout object

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.application.getAppStateLayout();
console.log(result);