@c10t/nice-component-library
Version:
nice-component-library
15 lines (14 loc) • 498 B
TypeScript
import { InjectionToken } from '@angular/core';
export interface NiceComponentLibraryConfig {
BASE_URL: string;
BASE_AUTHORIZATION_URL: string;
PAGE_SIZE: number;
PAGE_SIZE_OPTIONS: number[];
API_DATE_FORMAT: string;
DIS_DATE_FORMAT: string;
DIS_DATE_TIME_FORMAT?: string;
DIALOG_LOGO?: string;
NO_IMAGE_AVAILABLE?: string;
STYLE_DISABLE: 'TEXT' | 'CONTROL';
}
export declare const InjectTokenNextSolutionsConfig: InjectionToken<NiceComponentLibraryConfig>;