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