export interface Account { email: string password: string passwordSalt: string } export type AccountCreate = Pick export type AccountUpdate = Partial>