UNPKG

@adobe/genstudio-uix-sdk

Version:
16 lines (15 loc) 407 B
import { Account } from "../account/Account"; import { Channel } from "../channel/Channel"; /** App Metadata */ export type AppMetadata = { id: string; extensionId: string; iconDataUri: string; supportedChannels: Channel[]; label: string; accounts?: Account[]; }; /** * @deprecated This type is deprecated. Please use AppMetadata instead. */ export type AppMetaData = AppMetadata;