@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
11 lines (10 loc) • 331 B
TypeScript
export interface RefObject extends Function {
current?: any;
}
declare function createRef(): any;
export declare function fillRef<T>(ref: any, node: T): void;
/**
* Merge refs into one ref function to support ref passing.
*/
export declare function composeRef<T>(...refs: any[]): (node: T) => void;
export default createRef;