interface IResponsive {
    maxWidth: number;
    mode: "screen" | "canvas" | ResponsiveMode;
    options: RecursivePartial<IOptions>;
}

Implemented by

Properties

Properties

maxWidth: number

Maximum width of the canvas or the screen, depending on mode value.

mode: "screen" | "canvas" | ResponsiveMode

Responsive mode.

Options to override.