devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
62 lines (60 loc) • 2.15 kB
TypeScript
/*!
* devextreme-vue
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file in the root of the project for details.
*
* https://github.com/DevExpress/devextreme-vue
*/
import * as VueType from "vue";
import Map, { IOptions } from "devextreme/ui/map";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "autoAdjust" | "center" | "controls" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "markerIconSrc" | "markers" | "onClick" | "onDisposing" | "onInitialized" | "onMarkerAdded" | "onMarkerRemoved" | "onOptionChanged" | "onReady" | "onRouteAdded" | "onRouteRemoved" | "provider" | "routes" | "rtlEnabled" | "tabIndex" | "type" | "visible" | "width" | "zoom">;
interface DxMap extends AccessibleOptions {
readonly instance?: Map;
}
declare const DxMap: VueType.VueConstructor<{
instance: Map;
} & {
accessKey: string;
activeStateEnabled: boolean;
autoAdjust: boolean;
center: any;
controls: boolean;
disabled: boolean;
elementAttr: any;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
markerIconSrc: string;
markers: unknown[];
onClick: TimerHandler;
onDisposing: Function;
onInitialized: Function;
onMarkerAdded: Function;
onMarkerRemoved: Function;
onOptionChanged: Function;
onReady: Function;
onRouteAdded: Function;
onRouteRemoved: Function;
provider: string;
routes: unknown[];
rtlEnabled: boolean;
tabIndex: number;
type: string;
visible: boolean;
width: string | number | Function;
zoom: number;
} & VueType.default>;
declare const DxCenter: any;
declare const DxKey: any;
declare const DxLocation: any;
declare const DxMarker: any;
declare const DxRoute: any;
declare const DxTooltip: any;
export default DxMap;
export { DxMap, DxCenter, DxKey, DxLocation, DxMarker, DxRoute, DxTooltip };