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
10 lines
424 B
TypeScript
10 lines
424 B
TypeScript
import type { UUIDTypes } from './types.js';
|
|
export { DNS, URL } from './v35.js';
|
|
declare function v3(value: string | Uint8Array, namespace: UUIDTypes, buf?: undefined, offset?: number): string;
|
|
declare function v3<TBuf extends Uint8Array = Uint8Array>(value: string | Uint8Array, namespace: UUIDTypes, buf: TBuf, offset?: number): TBuf;
|
|
declare namespace v3 {
|
|
var DNS: string;
|
|
var URL: string;
|
|
}
|
|
export default v3;
|