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