Skip to content

Instantly share code, notes, and snippets.

@zapkub
Created March 24, 2019 02:15
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/aa33667b497e478a6f5a996fee12e865 to your computer and use it in GitHub Desktop.
Save zapkub/aa33667b497e478a6f5a996fee12e865 to your computer and use it in GitHub Desktop.
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