UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

9 lines (8 loc) 349 B
import { Geography } from "../types/index.js"; import React, { ChangeEventHandler } from "react"; export interface GeographySwitcherProps { curGeographyId: string; geographies: Geography[]; changeGeography: ChangeEventHandler<HTMLSelectElement>; } export declare const GeographySwitcher: React.FunctionComponent<GeographySwitcherProps>;