UNPKG

agora-classroom-sdk

Version:

For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io

7 lines (6 loc) 328 B
import { InputProps } from 'antd/lib/input'; import { FC } from 'react'; import './ainput.css'; declare type AInputProps = Pick<InputProps, 'value' | 'className' | 'onChange' | 'placeholder' | 'allowClear' | 'maxLength' | 'showCount' | 'suffix' | 'prefix' | 'disabled'>; export declare const AInput: FC<AInputProps>; export {};