Skip to content
Snippets Groups Projects
Select Git revision
  • c288effda9d500cf28ccbd61a0f9e0841af47531
  • dev default
  • renovate/cozy-konnector-packages
  • build-dev
  • build
  • main protected
  • v1.5.1
  • v1.5.0
  • v1.4.0
  • v1.3.5
  • v1.3.4
  • v1.3.3
  • v1.3.2
  • v1.3.1
  • v1.3.0
  • v1.2.5
  • v1.2.4
  • v1.2.3
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
26 results

index.js

Blame
  • temp-user.interface.ts 212 B
    import { Document, Types } from 'mongoose';
    
    export interface ITempUser extends Document {
      readonly _id: string;
      email: string;
      name: string;
      surname: string;
      pendingStructuresLink: Types.ObjectId[];
    }