/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import type { ICircleState, IMarkerState, IPolygonState, IPolylineState, ITextState, IUIMapBaseState } from './interface'; declare module 'jodit/config' { interface Config { googleMaps: { saveStateInStorage: boolean; useStaticImage: boolean; apiUrl: string; API_KEY: string; inlineEditorOptions: Partial; dialog: { size: [number, number]; }; map: { center: 'auto' | [number, number]; type: IUIMapBaseState['type']; layer: IUIMapBaseState['layer']; defaultCenter: IUIMapBaseState['center']; defaultZoom: number; zoom: number; size: [number, number]; defaultStates: { circle: Partial; polygon: Partial; polyline: Partial; marker: Partial; text: Partial; }; }; }; } }