UNPKG

@redhare/lowcode-types

Version:

Types for Ali lowCode engine

18 lines (17 loc) 380 B
export interface IPublicTypeAppConfig { sdkVersion?: string; historyMode?: string; targetRootID?: string; layout?: IPublicTypeLayout; theme?: IPublicTypeTheme; } interface IPublicTypeTheme { package: string; version: string; primary: string; } interface IPublicTypeLayout { componentName?: string; props?: Record<string, any>; } export {};