UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

14 lines (13 loc) 463 B
import React from "react"; export interface SketchAttributesCardProps { title?: string; autoHide?: boolean; /** Map from value IDs to human readable for one or more exportIds */ mappings?: { [exportId: string]: { [value: string]: string; }; }; } export declare const SketchAttributesCard: ({ title, autoHide, mappings, }: SketchAttributesCardProps) => React.JSX.Element | null; export default SketchAttributesCard;