UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

7 lines (6 loc) • 342 B
import type { BaseDecorator, BaseInterface } from '../Base/types.js'; import type { Base, BaseConstructor } from '../Base/index.js'; /** * BreakpointManager class. */ export declare function withBreakpointManager<S extends Base>(BaseClass: typeof Base, breakpoints: Array<[string, BaseConstructor<Base>]>): BaseDecorator<BaseInterface, S>;