OptionalAppOptions
Home > @backstage/app-defaults
> OptionalAppOptions
The set of app options that createApp() will provide defaults for if they are not passed in explicitly.
Signature:
export type OptionalAppOptions = {
icons?: Partial<AppIcons> & {
[key in string]: IconComponent;
};
themes?: (Partial<AppTheme> & Omit<AppTheme, 'theme'>)[];
components?: Partial<AppComponents>;
};
References: AppIcons, IconComponent, AppTheme, AppComponents