@yoyoboot/l-52abp-ng
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.13.
31 lines (30 loc) • 716 B
TypeScript
export interface IErrorDef {
/** 错误类型 */
error: string;
/** 本地化键值 */
localizationKey: string;
/** 显示用的标签 */
label?: string;
/** 错误属性 */
errorProperty?: string;
}
export interface IYoyoConfig {
/** 分页配置 */
grid: IYoyoConfigGrid;
/** 默认语言 */
lang: IYoyoLang;
/** 校验的标准异常 */
standartErrors: IErrorDef[];
}
export interface IYoyoConfigGrid {
/** 默认每页数据 */
defaultPageSize: number;
/** 默认分页数据量 */
defaultPageSizes: number[];
}
export interface IYoyoLang {
/** 默认源 */
defaultSource: string;
/** 默认语言 */
defaultLang: string;
}