geostyler
Version:
Framework for styling geodata
14 lines (13 loc) • 583 B
TypeScript
import { default as React } from 'react';
import { ScaleDenominator as GsScaleDenominator } from 'geostyler-style';
export interface ScaleDenominatorProps {
/** The scaleDenominator */
scaleDenominator?: GsScaleDenominator;
/** The callback method that is triggered when the state changes */
onChange?: (scaleDenominator: GsScaleDenominator) => void;
}
export declare const COMPONENTNAME = "ScaleDenominator";
/**
* Combined UI for input fields for the minimum and maximum scale of a rule.
*/
export declare const ScaleDenominator: React.FC<ScaleDenominatorProps>;