UNPKG

@daily-co/daily-react

Version:

Daily React makes it easier to integrate [@daily-co/daily-js](https://www.npmjs.com/package/@daily-co/daily-js) in React applications.

9 lines (8 loc) 424 B
/** * Original source: https://github.com/jaredLunde/react-hook/blob/master/packages/merged-ref/src/index.tsx * Original author: Jared Lunde (https://github.com/jaredLunde) * Originally published under the MIT license: https://github.com/jaredLunde/react-hook/blob/master/LICENSE */ import React from 'react'; declare function useMergedRef<T>(...refs: React.Ref<T>[]): React.RefCallback<T>; export default useMergedRef;