/* 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 GridView { /** * 布局方式 */ type: "aligned" | "masonry"; /** * 交叉轴元素数量 */ "cross-axis-count"?: number; /** * 交叉轴元素最大范围 */ "max-cross-axis-extent"?: number; /** * 主轴方向间隔 */ "main-axis-gap"?: number; /** * 交叉轴方向间隔 */ "cross-axis-gap"?: number; }