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
9 lines
376 B
TypeScript
9 lines
376 B
TypeScript
/**
|
|
* A URL matches about:blank if its scheme is "about", its path contains a single string
|
|
* "blank", its username and password are the empty string, and its host is null.
|
|
* https://html.spec.whatwg.org/multipage/urls-and-fetching.html#matches-about:blank
|
|
* @param {string} url
|
|
* @return {boolean}
|
|
*/
|
|
export declare function urlMatchesAboutBlank(url: string): boolean;
|