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
8 lines
265 B
TypeScript
8 lines
265 B
TypeScript
/**
|
|
* `useKeeper` is a helper around `useRef`.
|
|
*
|
|
* You don't need to access the `.current`property to get the value
|
|
* If refresh is set to true. The ref will be updated every render
|
|
*/
|
|
export declare function useKeeper<T>(arg: T, refresh?: boolean): T;
|