Skip to content

Instantly share code, notes, and snippets.

@rcdexta
Created December 22, 2019 21:23
Show Gist options
  • Save rcdexta/ae3f2382e56a5348bd0a4ec6115242c2 to your computer and use it in GitHub Desktop.
Save rcdexta/ae3f2382e56a5348bd0a4ec6115242c2 to your computer and use it in GitHub Desktop.
interface Customer {
name: string
phone: string
}
declare function getCustomerData(id: string): Promise<Customer>;
declare function payCustomer(customer: Customer): void;
async function f() {
const customer = getCustomerData('c1')
payCustomer(customer)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment