geostyler
Version:
Framework for styling geodata
14 lines (13 loc) • 530 B
TypeScript
import { default as React } from 'react';
import { FormItemProps } from 'antd';
import { Expression } from 'geostyler-style';
export interface MinScaleDenominatorProps extends Partial<FormItemProps> {
/** The minScaleDenominator value */
value?: Expression<number>;
/** The callback function that is triggered when the state changes */
onChange?: (newMinScale: number) => void;
}
/**
* Input field for the minimum scale of a rule.
*/
export declare const MinScaleDenominator: React.FC<MinScaleDenominatorProps>;