@studiometa/js-toolkit
Version:
A set of useful little bits of JavaScript to boost your project! 🚀
8 lines (7 loc) • 426 B
TypeScript
import type { BaseDecorator, BaseInterface } from '../Base/types.js';
import type { Base, BaseConstructor } from '../Base/index.js';
/**
* BreakpointManager class.
* @link https://js-toolkit.studiometa.dev/api/decorators/withBreakpointManager.html
*/
export declare function withBreakpointManager<S extends Base>(BaseClass: typeof Base, breakpoints: Array<[string, BaseConstructor<Base>]>): BaseDecorator<BaseInterface, S>;