@adobe/genstudio-uix-sdk
Version:
GenStudio UI Extensibility SDK
16 lines (15 loc) • 407 B
TypeScript
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;