geostyler
Version:
Framework for styling geodata
12 lines (11 loc) • 377 B
TypeScript
import { default as React } from 'react';
import { ReadParams } from 'geostyler-wfs-parser';
export interface WfsParserInputProps {
/** The callback method that is triggered when the state changes */
onClick: (wfsParams: ReadParams) => void;
}
/**
* WfsParserInput
*/
export declare const WfsParserInput: React.FC<WfsParserInputProps>;
export default WfsParserInput;