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
7 lines
563 B
TypeScript
7 lines
563 B
TypeScript
import { type TreeAdapterTypeMap, type TreeAdapter } from 'parse5';
|
|
import { type AnyNode, type ParentNode, type ChildNode, Element, Document, ProcessingInstruction, Comment, Text } from 'domhandler';
|
|
export type Htmlparser2TreeAdapterMap = TreeAdapterTypeMap<AnyNode, ParentNode, ChildNode, Document, Document, Element, Comment, Text, Element, ProcessingInstruction>;
|
|
/** @internal */
|
|
export declare function serializeDoctypeContent(name: string, publicId: string, systemId: string): string;
|
|
export declare const adapter: TreeAdapter<Htmlparser2TreeAdapterMap>;
|