parent
560d60c7e8
commit
a16d5160d4
3 changed files with 26 additions and 0 deletions
@ -0,0 +1,11 @@ |
||||
type UserParams = InsertOrUpdateFunctionCommonParams & { |
||||
user_algorithm?: string; |
||||
user_hash_count?: number; |
||||
user_language?: string; |
||||
user_name: string; |
||||
user_password_hash: string; |
||||
user_salt?: string; |
||||
user_uuid?: string; |
||||
}; |
||||
|
||||
type InsertOrUpdateUserFunction = (params: UserParams) => Promise<string>; |
Loading…
Reference in new issue