platform-registry.d.ts 325B

12345678910
  1. import { InjectionToken } from '@angular/core';
  2. import { PlatformConfig } from './platform';
  3. export declare const PLATFORM_CONFIGS: {
  4. [key: string]: PlatformConfig;
  5. };
  6. export declare const PlatformConfigToken: InjectionToken<any>;
  7. export declare function providePlatformConfigs(): {
  8. [key: string]: PlatformConfig;
  9. };