UNPKG

570 BTypeScriptView Raw
1import type { IOptionLoader } from "../Interfaces/IOptionLoader";
2import type { IOptions } from "../Interfaces/IOptions";
3import type { IResponsive } from "../Interfaces/IResponsive";
4import type { RecursivePartial } from "../../Types/RecursivePartial";
5import { ResponsiveMode } from "../../Enums/Modes/ResponsiveMode";
6export declare class Responsive implements IResponsive, IOptionLoader<IResponsive> {
7 maxWidth: number;
8 mode: ResponsiveMode;
9 options: RecursivePartial<IOptions>;
10 constructor();
11 load(data?: RecursivePartial<IResponsive>): void;
12}