Files

10 lines
156 B
TypeScript
Raw Permalink Normal View History

2026-05-06 15:04:33 +00:00
export interface IPassportNonce {
id: string;
data: {
deviceId: string;
nonceHash: string;
createdAt: number;
expiresAt: number;
};
}