UNPKG

antd

Version:

An enterprise-class UI design language and React-based implementation

13 lines (12 loc) 375 B
/// <reference types="react" /> import * as React from 'react'; export interface InputElementProps { children: React.ReactElement<any>; } export default class InputElement extends React.Component<InputElementProps, any> { private ele; focus: () => void; blur: () => void; saveRef: (ele: HTMLInputElement) => void; render(): React.ReactElement<any>; }