UNPKG

193 BTypeScriptView Raw
1import type { RecursivePartial } from "../../Types";
2import type { IOptions } from "./IOptions";
3export interface IResponsive {
4 maxWidth: number;
5 options: RecursivePartial<IOptions>;
6}