import { PageProps } from "../../page/@types"; /** * 分页头部传值 */ export interface PagingHeaderProps extends PageProps { /** * 页面架构信息 */ schema: any[]; /** * 数据表信息 */ table: any; /** * 跳转页面信息 */ next: any; /** * 数据集信息 */ set: any; /** * 布局信息 */ layout: any; /** * 选中数据行信息 */ selection: any[]; }