Skip to content

Instantly share code, notes, and snippets.

@s-thom
Created March 25, 2020 02:51
Show Gist options
  • Save s-thom/a4013c9ebe2b063d5da818e6434a74bd to your computer and use it in GitHub Desktop.
Save s-thom/a4013c9ebe2b063d5da818e6434a74bd to your computer and use it in GitHub Desktop.
Async function type
type Async<T extends (this: any, ...args: any) => void> =
(this: ThisParameterType<T>, ...params: Parameters<T> ) => Promise<ReturnType<T>>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment