source: node_modules/ts-mixer/dist/esm/mixin-tracking.d.ts

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 332 bytes
RevLine 
[d24f17c]1import { Class } from './types';
2export declare const getMixinsForClass: (clazz: Class) => Function[] | undefined;
3export declare const registerMixins: (mixedClass: any, constituents: Function[]) => Map<any, Function[]>;
4export declare const hasMixin: <M>(instance: any, mixin: abstract new (...args: any[]) => M) => instance is M;
Note: See TracBrowser for help on using the repository browser.