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
22 lines
589 B
TypeScript
22 lines
589 B
TypeScript
import { Next } from "./types";
|
|
/**
|
|
* Quote a string.
|
|
*/
|
|
export declare function quoteString(str: string): string;
|
|
/**
|
|
* Test for valid JavaScript identifier.
|
|
*/
|
|
export declare const IS_VALID_IDENTIFIER: RegExp;
|
|
/**
|
|
* Check if a variable name is valid.
|
|
*/
|
|
export declare function isValidVariableName(name: PropertyKey): name is string;
|
|
/**
|
|
* Quote JavaScript key access.
|
|
*/
|
|
export declare function quoteKey(key: PropertyKey, next: Next): string | undefined;
|
|
/**
|
|
* Serialize the path to a string.
|
|
*/
|
|
export declare function stringifyPath(path: PropertyKey[], next: Next): string;
|