import { InjectionToken } from '@angular/core'; export declare const API_PLATFORM_CONFIG: InjectionToken; export interface ApiPlatformConfig { /** * The base URL of the API. */ apiBaseUrl: string; /** * The list of resources class to use. */ resources: Array; /** * The resource mapping validation is used for development purposes only. * It will help you to check if the resources are correctly mapped. * Disable it on production. */ resourceMappingValidation?: 'enabled' | 'disabled'; }