Remove @mui, move states into zustand store
This commit is contained in:
@ -1,18 +1,8 @@
|
||||
import { Coordinate } from "ol/coordinate";
|
||||
|
||||
export interface SatelliteMapsProviders {
|
||||
google: 'google';
|
||||
yandex: 'yandex';
|
||||
custom: 'custom';
|
||||
}
|
||||
export type SatelliteMapsProvider = SatelliteMapsProviders[keyof SatelliteMapsProviders]
|
||||
export type SatelliteMapsProvider = 'google' | 'yandex' | 'custom' | 'static'
|
||||
|
||||
export interface IGeometryTypes {
|
||||
LINE: 'LINE'
|
||||
POLYGON: 'POLYGON'
|
||||
}
|
||||
|
||||
export type IGeometryType = IGeometryTypes[keyof IGeometryTypes]
|
||||
export type IGeometryType = 'LINE' | 'POLYGON'
|
||||
|
||||
export interface IRectCoords {
|
||||
bl: Coordinate | undefined,
|
||||
|
Reference in New Issue
Block a user