/** * Class mixins are a pattern for sharing code between classes using standard JavaScript. * https://lit.dev/docs/composition/mixins/ */ import type { Constructor } from 'clone-class'; interface PoolifyMixin { new (...args: any[]): T; pool: Map; } /** * https://stackoverflow.com/a/60378737/1123955 * * You want something like partial type parameter inference, * which is not currently a feature of TypeScript (see microsoft/TypeScript#26242). * Right now you either have to specify all type parameters manually * or let the compiler infer all type parameters; * there's no partial inference. * As you've noticed, * generic type parameter defaults do not scratch this itch; * a default turns off inference. */ declare const poolifyMixin: >(mixinBase: MixinBase) => () => ((abstract new (...args: any[]) => {}) & { _pool?: Map | undefined; readonly pool: Map; load & { new (...args: any[]): T; prototype: T; } & PoolifyMixin>(this: L, id: string): T; }) & MixinBase; export type { PoolifyMixin, }; export { poolifyMixin, }; //# sourceMappingURL=poolify.d.ts.map