UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

9 lines (8 loc) 406 B
/// <reference types="react" /> import { WrappedComponentProps } from "react-intl"; interface ITreatNullValuesAsZeroCheckboxProps { checked?: boolean; onChange: (checked: boolean) => void; } declare const TreatNullValuesAsZeroCheckbox: ({ checked, onChange, intl, }: ITreatNullValuesAsZeroCheckboxProps & WrappedComponentProps<"intl">) => JSX.Element; export default TreatNullValuesAsZeroCheckbox;