PopupOptions
Home > @backstage/core-app-api > PopupOptions
Options for login popup
Signature:
export type PopupOptions = {
    size?: {
        width: number;
        height: number;
        fullscreen?: never;
    } | {
        width?: never;
        height?: never;
        fullscreen: boolean;
    };
};