Drop @mui, addded ems api
This commit is contained in:
@ -11,7 +11,9 @@ export interface IFigure {
|
||||
label_top: number | null,
|
||||
label_angle: number | null,
|
||||
label_size: number | null,
|
||||
year: number
|
||||
year: number,
|
||||
type: number,
|
||||
planning: boolean
|
||||
}
|
||||
|
||||
export interface ILine {
|
||||
@ -28,5 +30,7 @@ export interface ILine {
|
||||
label_sizes: string | null,
|
||||
label_angels: string | null,
|
||||
label_positions: string | null,
|
||||
year: number
|
||||
year: number,
|
||||
type: number,
|
||||
planning: boolean
|
||||
}
|
||||
@ -3,4 +3,11 @@ export interface SatelliteMapsProviders {
|
||||
yandex: 'yandex';
|
||||
custom: 'custom';
|
||||
}
|
||||
export type SatelliteMapsProvider = SatelliteMapsProviders[keyof SatelliteMapsProviders]
|
||||
export type SatelliteMapsProvider = SatelliteMapsProviders[keyof SatelliteMapsProviders]
|
||||
|
||||
export interface IGeometryTypes {
|
||||
LINE: 'LINE'
|
||||
POLYGON: 'POLYGON'
|
||||
}
|
||||
|
||||
export type IGeometryType = IGeometryTypes[keyof IGeometryTypes]
|
||||
|
||||
@ -1,3 +1,9 @@
|
||||
export interface IObjectList {
|
||||
id: number,
|
||||
name: string,
|
||||
count: number
|
||||
}
|
||||
|
||||
export interface IObjectData {
|
||||
object_id: string,
|
||||
id_city: number,
|
||||
|
||||
Reference in New Issue
Block a user