UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

12 lines (10 loc) 299 B
/// <reference types="react" /> import { Moment } from 'moment'; export interface IFilteringClearButtonProps { onChange(value: (string | Moment)[]): void; visible: boolean; } export declare function ClearButton({ onChange, visible }: { onChange: any; visible: any; }): JSX.Element;