UNPKG

geostyler

Version:
12 lines (11 loc) 481 B
import { default as React } from 'react'; import { Style as GsStyle } from 'geostyler-style'; export interface StyleOverviewProps { /** The callback when the style changed. */ onStyleChange?: (style: GsStyle) => void; /** The callback when a view change (request) was triggered. */ onChangeView?: (view: string, indices: number[]) => void; /** A GeoStyler-Style object. */ style: GsStyle; } export declare const StyleOverview: React.FC<StyleOverviewProps>;