6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
11 lines
640 B
TypeScript
11 lines
640 B
TypeScript
import { Id } from '../types';
|
|
export declare function isNum(v: any): v is Number;
|
|
export declare function isBool(v: any): v is Boolean;
|
|
export declare function isStr(v: any): v is String;
|
|
export declare function isFn(v: any): v is Function;
|
|
export declare function parseClassName(v: any): any;
|
|
export declare function isToastIdValid(toastId?: Id): string | number | true | undefined;
|
|
export declare function getAutoCloseDelay(toastAutoClose?: false | number, containerAutoClose?: false | number): number | false | undefined;
|
|
export declare const canUseDom: boolean;
|
|
export declare function canBeRendered<T>(content: T): boolean;
|