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
14 lines
578 B
TypeScript
14 lines
578 B
TypeScript
import { Meta, StandardValidator } from '../base';
|
|
import { toString as toStringImpl } from '../utils';
|
|
import { Context } from '../context';
|
|
import { ContextItem } from './context-item';
|
|
export declare class StandardValidation implements ContextItem {
|
|
private readonly validator;
|
|
private readonly negated;
|
|
private readonly options;
|
|
private readonly stringify;
|
|
message: any;
|
|
constructor(validator: StandardValidator, negated: boolean, options?: any[], stringify?: typeof toStringImpl);
|
|
run(context: Context, value: any, meta: Meta): Promise<void>;
|
|
}
|