geostyler
Version:
Framework for styling geodata
16 lines (15 loc) • 501 B
TypeScript
import { default as React } from 'react';
import { Style as GsStyle } from 'geostyler-style';
import { Crumb } from '../Breadcrumb/Breadcrumb';
export interface CardStyleProps {
/** The geoStylerStyle object */
style?: GsStyle;
/** The callback function that is triggered when the state changes */
onStyleChange?: (style: GsStyle) => void;
}
export interface CardView {
view: string;
props: any[];
path: Crumb[];
}
export declare const CardStyle: React.FC<CardStyleProps>;