| 14 | } |
| 15 | |
| 16 | export interface IUser { |
| 17 | uuid?: string; |
| 18 | userName?: string; |
| 19 | passWord?: string; |
| 20 | salt?: string; |
| 21 | permission?: number; |
| 22 | registerTime?: string; |
| 23 | loginTime?: string; |
| 24 | instances?: Array<any>; |
| 25 | isInit?: boolean; |
| 26 | passWordType?: number; |
| 27 | secret?: string; |
| 28 | open2FA?: boolean; |
| 29 | ssoSub?: string; |
| 30 | ssoBound?: boolean; |
| 31 | } |
| 32 | |
| 33 | export interface ICompleteUser { |
| 34 | uuid: string; |
nothing calls this directly
no outgoing calls
no test coverage detected