UNPKG

@yandex/ymaps3-types

Version:

Types for ymaps3 maps library

12 lines (11 loc) 294 B
interface ZoomRange { min: number; max: number; } /** * Set rounding for zoom. * If `auto` is selected, zoom will be `snap` for `raster` and `smooth` for `vector` `MapMode`. * Default is `auto`. */ type ZoomRounding = 'snap' | 'smooth' | 'auto'; export { ZoomRange, ZoomRounding };