authelia/server/src/lib/storage/IdentityValidationDocument.d.ts

7 lines
129 B
TypeScript
Raw Normal View History

export interface IdentityValidationDocument {
userId: string;
token: string;
challenge: string;
maxDate: Date;
}