/** * Uniface 应用上下文配置接口 * @description 定义应用级别的全局配置选项 */ interface IUnifaceAppContext { /** * 每页行数选项集合 * @description 可选的分页行数选项数组,用于分页组件中切换每页显示行数 * @default [25, 50, 100] * @example * ```typescript * // 自定义每页行数选项 * rowsSet: [10, 20, 50, 100] * ``` */ rowsSet?: Array; } /** * Uniface 应用全局上下文配置 * @description 提供应用级别的默认配置,包括分页选项等 * @constant * @example * ```typescript * import appCtx from './uniAppCtx'; * * // 获取默认的每页行数选项 * const options = appCtx.rowsSet; // [25, 50, 100] * ``` */ declare const appCtx: IUnifaceAppContext; export default appCtx;