/* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface MatchMedia { /** * 页面最小宽度( px 为单位) */ "min-width"?: number; /** * 页面最大宽度( px 为单位) */ "max-width"?: number; /** * 页面宽度( px 为单位) */ width?: number; /** * 页面最小高度( px 为单位) */ "min-height"?: number; /** * 页面最大高度( px 为单位) */ "max-height"?: number; /** * 页面高度( px 为单位) */ height?: number; /** * 屏幕方向( landscape 或 portrait ) */ orientation?: string; }