@studiometa/js-toolkit
Version:
A set of useful little bits of JavaScript to boost your project! 🚀
10 lines (9 loc) • 439 B
TypeScript
import type { BaseInterface, BaseDecorator } from '../Base/types.js';
import type { Base } from '../Base/index.js';
/**
* Extends the configuration of an existing class.
* @link https://js-toolkit.studiometa.dev/api/decorators/withResponsiveOptions.html
*/
export declare function withResponsiveOptions<S extends Base>(BaseClass: typeof Base, { responsiveOptions }?: {
responsiveOptions?: any[];
}): BaseDecorator<BaseInterface, S>;