interface LogoutOptions {
    services: {
        authApi: Pick<AuthApi, "logout">;
    };
    settings: {
        logoutRedirect: string;
        screenMode: "desktop" | "mobile";
    };
}

Properties

Properties

services: {
    authApi: Pick<AuthApi, "logout">;
}

Type declaration

  • authApi: Pick<AuthApi, "logout">

    Auth Api

settings: {
    logoutRedirect: string;
    screenMode: "desktop" | "mobile";
}

Type declaration

  • logoutRedirect: string

    Route to redirect to once logged out

  • screenMode: "desktop" | "mobile"

    Screen size to show for this block

Generated using TypeDoc