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
13 lines
398 B
TypeScript
13 lines
398 B
TypeScript
/**
|
|
* HPM_ERR_INVALID_MULTIPART prefixed error code will be used in
|
|
* [status-code.ts]({@link ../../status-code.ts}) to return status code 400.
|
|
*/
|
|
export declare const HPM_ERR_INVALID_MULTIPART = "HPM_ERR_INVALID_MULTIPART";
|
|
/**
|
|
* stringify FormData data
|
|
* @param contentType
|
|
* @param data
|
|
* @returns
|
|
*/
|
|
export declare function stringifyFormData(contentType: string, data: object): string;
|