geostyler
Version:
Framework for styling geodata
12 lines (11 loc) • 481 B
TypeScript
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>;