Created
March 24, 2019 02:19
-
-
Save zapkub/e4f03adf90c5c536e291eb9e40851a42 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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