Skip to content

Instantly share code, notes, and snippets.

@captain-yossarian
Created July 14, 2021 17:27
Show Gist options
  • Save captain-yossarian/3dd1acf395f04996363db60121057b49 to your computer and use it in GitHub Desktop.
Save captain-yossarian/3dd1acf395f04996363db60121057b49 to your computer and use it in GitHub Desktop.
const fn = <
T extends typeof Base,
Instance extends InstanceType<T>
>(Cls: T & (new () => Instance), prop: keyof Instance,
) => new Cls()[prop];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment