5 lines
227 B
TypeScript
5 lines
227 B
TypeScript
import type { BaseInputProps } from '@rc-component/input/lib/interface';
|
|
export type AllowClear = BaseInputProps['allowClear'];
|
|
declare const getAllowClear: (allowClear: AllowClear) => AllowClear;
|
|
export default getAllowClear;
|