UNPKG

192 BTypeScriptView Raw
1import { IRefObject } from './createRef';
2/**
3 * BaseProps interface.
4 *
5 * @public
6 * {@docCategory IBaseProps}
7 */
8export interface IBaseProps<T = any> {
9 componentRef?: IRefObject<T>;
10}