UNPKG

epn-ui

Version:

Дизайн система кабинета ВМ

14 lines (13 loc) 410 B
import type { InputProps } from 'antd/es/input'; export interface ICopyInputProps { id?: string; className?: string; value?: string; placeholder?: InputProps['placeholder']; readOnly?: InputProps['readOnly']; onCompleted?: (data: string) => void; onFailed?: () => void; onClick?: InputProps['onClick']; onComplete?: (data: string) => void; link?: string; }