import { HttpClient } from './http'; declare const SERVICE_NAME = "http"; declare module '../core/platform' { interface PlatformServiceNameType { /** * @see {@link HttpClient} */ Http: typeof SERVICE_NAME; } interface LimeWebComponentPlatform { get(name: PlatformServiceNameType['Http']): HttpClient; } } export {};