Skip to content

Instantly share code, notes, and snippets.

@zapkub
Created March 24, 2019 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zapkub/e4f03adf90c5c536e291eb9e40851a42 to your computer and use it in GitHub Desktop.
Save zapkub/e4f03adf90c5c536e291eb9e40851a42 to your computer and use it in GitHub Desktop.
interface UserAccount {
id: string
createdAt: Date
name: string
mobileNumber: string
password: string
}
export type CreateNewUserAccount = (input: UserAccount) => UserAccount
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment