transfer-key.ts 91 B

12345
  1. export interface ITransferKey<ID = string> {
  2. _id: ID
  3. expireAt: Date
  4. value: string,
  5. }