@qualweb/cli
Version:
QualWeb evaluator command line interface
12 lines • 352 B
TypeScript
import { Command } from 'commander';
export type ViewportOptions = {
mobile?: boolean;
orientation?: 'portrait' | 'landscape';
userAgent?: string;
viewportResolution?: {
width: number;
height: number;
};
};
export declare function addViewportOptions(command: Command): Command;
//# sourceMappingURL=viewport.d.ts.map