UNPKG

@rero/ng-core

Version:

RERO angular core library.

34 lines (33 loc) 927 B
import * as i0 from "@angular/core"; /** * Interface for configuration. */ export interface Config { production?: boolean; projectTitle?: string; apiBaseUrl?: string; apiEndpointPrefix?: string; $refPrefix: string; schemaFormEndpoint: string; languages?: string[]; defaultLanguage?: string; secretPassphrase: string; translationsURLs?: Array<any>; } /** * Service for managing configuration of the application. */ export declare class CoreConfigService implements Config { production: boolean; projectTitle: any; apiBaseUrl: string; apiEndpointPrefix: string; schemaFormEndpoint: string; $refPrefix: any; languages: string[]; defaultLanguage: string; secretPassphrase: string; translationsURLs: any[]; static ɵfac: i0.ɵɵFactoryDeclaration<CoreConfigService, never>; static ɵprov: i0.ɵɵInjectableDeclaration<CoreConfigService>; }