Files
oneuptime/Common/Types/Mixins.ts

5 lines
179 B
TypeScript

// https://www.typescriptlang.org/docs/handbook/mixins.html
import GenericObject from "./GenericObject";
export type GConstructor<T = GenericObject> = new (...args: any[]) => T;