UNPKG

@studiometa/js-toolkit

Version:

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

9 lines (8 loc) • 355 B
import type { BaseInterface, BaseDecorator } from '../Base/types.js'; import type { Base } from '../Base/index.js'; /** * Extends the configuration of an existing class. */ export declare function withResponsiveOptions<S extends Base>(BaseClass: typeof Base, { responsiveOptions }?: { responsiveOptions?: any[]; }): BaseDecorator<BaseInterface, S>;