mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
5 lines
179 B
TypeScript
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;
|