Skip to content

Instantly share code, notes, and snippets.

@zapkub
Created March 24, 2019 02:29
Show Gist options
  • Save zapkub/59cc7f07db51462e677c707c8bc01980 to your computer and use it in GitHub Desktop.
Save zapkub/59cc7f07db51462e677c707c8bc01980 to your computer and use it in GitHub Desktop.
interface UserAccount {
id: string
createdAt: Date
name: string
mobileNumber: string
password: string
}
type CreateNewUserAccountInput = Pick<UserAccount, Exclude<keyof UserAccount, 'id' | 'createdAt'>>
export type CreateNewUserAccount = (input: CreateNewUserAccountInput) => UserAccount
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment