import { LimeWebComponentPlatform as Base } from '../../lime-web-components/src'; /** * @inheritdoc * * @deprecated use {@link Base LimeWebComponentPlatform} from `@limetech/lime-web-components` instead */ export interface LimeWebComponentPlatform extends Base { get(name: string): any; } /** * Core platform service names * * @deprecated use {@link BaseName PlatformServiceName} from `@limetech/lime-web-components` instead */ export declare enum PlatformServiceName { Translate = "translate", Http = "http", Route = "route", Notification = "notifications", Query = "query", CommandBus = "commandBus", Dialog = "dialog", EventDispatcher = "eventDispatcher", /** * @note Work in progress, do not use! * @private */ Navigator = "navigator", /** * @note Work in progress, do not use! * @private */ RouteRegistry = "routeRegistry", /** * @note Work in progress, do not use! * @private */ KeybindingRegistry = "keybindingRegistry", LimetypesState = "state.limetypes", LimeobjectsState = "state.limeobjects", ApplicationState = "state.application", ConfigsState = "state.configs", FiltersState = "state.filters", DeviceState = "state.device", TaskState = "state.tasks", UserData = "state.user-data" }