UNPKG

@passflow/passflow-react-sdk

Version:
16 lines 625 B
import { AppSettings, LoginWebAppStyle, LoginWebAppTheme, PassflowPasswordPolicySettings } from '@passflow/passflow-js-sdk'; export type UseAppSettingsProps = () => { appSettings: AppSettings | null; passwordPolicy: PassflowPasswordPolicySettings | null; isLoading: boolean; isError: boolean; error: string; reset: () => void; currentTheme: string; currentStyles: LoginWebAppStyle | null; scopes: string[]; createTenantForNewUser: boolean; loginAppTheme?: LoginWebAppTheme; }; export declare const useAppSettings: UseAppSettingsProps; //# sourceMappingURL=use-app-settings.d.ts.map