export type GConstructor = new (...args: any[]) => T; /** * This is a helper to create a class type extended with the provided set of instance properties. It's useful when there * are some dynamic generated properties or native overrides in the class. We're use it to define dynamic access * properties and events to subscribe to. */ export type MixinClass, InstanceProperties extends Record = {}> = { new (...args: ConstructorParameters): InstanceProperties & InstanceType; } & Omit; //# sourceMappingURL=mixinClass.d.ts.map