UNPKG

@foblex/core

Version:

A core library providing a set of utilities and interfaces for various projects.

7 lines (6 loc) 427 B
import { AbstractConstructor, Constructor } from '../constructor'; import { ICanFitToParent } from './i-can-fit-to-parent'; import { ITransformable } from '../i-transformable'; declare type CanFitToParentConstructor = Constructor<ICanFitToParent> & AbstractConstructor<ICanFitToParent>; export declare function mixinFitToParent<T extends AbstractConstructor<ITransformable>>(base: T): CanFitToParentConstructor & T; export {};