@vuemap/vue-amap
Version:
高德地图vue3版本封装
57 lines (56 loc) • 1.38 kB
TypeScript
import type { PropType } from "vue";
export declare const propsTypes: {
bounds: {
type: ArrayConstructor;
required: true;
};
bubble: {
type: BooleanConstructor;
default: boolean;
};
cursor: {
type: StringConstructor;
};
strokeColor: {
type: StringConstructor;
};
strokeOpacity: {
type: NumberConstructor;
};
strokeWeight: {
type: NumberConstructor;
};
fillColor: {
type: StringConstructor;
};
fillOpacity: {
type: NumberConstructor;
};
draggable: {
type: BooleanConstructor;
default: boolean;
};
extData: {
type: ObjectConstructor;
default: () => null;
};
strokeStyle: {
type: PropType<"solid" | "dashed">;
validator: (value: string) => boolean;
};
strokeDasharray: {
type: ArrayConstructor;
};
editable: {
type: BooleanConstructor;
default: boolean;
};
editOptions: {
type: ObjectConstructor;
};
} & {
visible: import("../../../utils/buildHelper").IPropOptions<boolean>;
zIndex: import("../../../utils/buildHelper").IPropOptions<number>;
reEventWhenUpdate: import("../../../utils/buildHelper").IPropOptions<boolean>;
extraOptions: import("../../../utils/buildHelper").IPropOptions<any>;
};