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
365 B
TypeScript
11 lines
365 B
TypeScript
import { DOMAttributes } from 'react';
|
|
import { ToastProps } from '../types';
|
|
export declare function useToast(props: ToastProps): {
|
|
playToast: () => void;
|
|
pauseToast: () => void;
|
|
isRunning: boolean;
|
|
preventExitTransition: boolean;
|
|
toastRef: import("react").RefObject<HTMLDivElement>;
|
|
eventHandlers: DOMAttributes<HTMLElement>;
|
|
};
|