Web API for code.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314
  1. export interface Session {
  2. id: Buffer
  3. createdAt: Date
  4. validUntil: Date
  5. userId: Buffer
  6. }
  7. export interface CreateSessionData extends Omit<Session, 'id' | 'createdAt' | 'validUntil'> {
  8. }
  9. export interface LoginUserFormData {
  10. username: string;
  11. password: string;
  12. }