UNPKG

@nightingale-elements/nightingale-new-core

Version:
13 lines 575 B
import NightingaleBaseElement, { Constructor } from "../../nightingale-base-element"; import { WithDimensionsInterface } from "../withDimensions"; export interface WithResizableInterface extends WithDimensionsInterface { "min-width": number; "min-height": number; onDimensionsChange(): void; } declare const withResizable: <T extends Constructor<NightingaleBaseElement>>(superClass: T, options?: { "min-width"?: number; "min-height"?: number; }) => Constructor<WithResizableInterface> & T; export default withResizable; //# sourceMappingURL=index.d.ts.map