geostyler
Version:
Framework for styling geodata
10 lines (9 loc) • 376 B
TypeScript
import { default as React } from 'react';
import { Style, StyleParser } from 'geostyler-style';
export interface StyleLoaderProps {
/** The callback method that is triggered when the state changes */
onStyleRead: (style: Style) => void;
/** List of data parsers to use */
parsers: StyleParser[];
}
export declare const StyleLoader: React.FC<StyleLoaderProps>;