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