Created
March 24, 2019 02:15
-
-
Save zapkub/aa33667b497e478a6f5a996fee12e865 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 CreateUserAccountInput{ | |
name: string | |
mobileNumber: string | |
password: string | |
} | |
interface CreateUserAccountOutput extends CreateUserAccountInput{ | |
id: string | |
createdAt: Date | |
} | |
export type CreateNewUserAccount = (input: CreateUserAccountInput) => CreateUserAccountOutput |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment