@yoyoboot/l-52abp-ng
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.13.
26 lines (25 loc) • 803 B
TypeScript
import { InjectionToken } from '@angular/core';
import { IYoyoConfig, IYoyoConfigGrid, IYoyoLang } from './interfaces';
export declare const YOYO_CONFIG: InjectionToken<IYoyoConfig>;
export declare function YOYO_CONFIG_FACTORY(): YoyoConfig;
export declare class YoyoConfig implements IYoyoConfig {
grid: YoyoConfigGrid;
lang: YoyoLang;
standartErrors: ({
error: string;
localizationKey: string;
errorProperty?: undefined;
} | {
error: string;
localizationKey: string;
errorProperty: string;
})[];
}
export declare class YoyoConfigGrid implements IYoyoConfigGrid {
defaultPageSize: number;
defaultPageSizes: number[];
}
export declare class YoyoLang implements IYoyoLang {
defaultSource: string;
defaultLang: string;
}