Louis Mazin fc8aef3ed3 test
2026-07-19 17:19:41 +02:00

5 lines
336 B
TypeScript

import { Class } from './types';
export declare const getMixinsForClass: (clazz: Class) => Function[] | undefined;
export declare const registerMixins: (mixedClass: any, constituents: Function[]) => WeakMap<any, Function[]>;
export declare const hasMixin: <M>(instance: any, mixin: abstract new (...args: any[]) => M) => instance is M;