UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

8 lines (7 loc) 110 B
/** * Declares the instance of an object */ export type Instance<T> = { new (): T; prototype: T; };