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