Skip to content

Instantly share code, notes, and snippets.

@morintd
Created March 10, 2024 16:16
Show Gist options
  • Select an option

  • Save morintd/5ca3d34ac252e845050fe835051b7058 to your computer and use it in GitHub Desktop.

Select an option

Save morintd/5ca3d34ac252e845050fe835051b7058 to your computer and use it in GitHub Desktop.
export interface Executable<Input, Output> {
execute(input: Input): Promise<Output>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment