Initial commit
This commit is contained in:
11
node_modules/use-callback-ref/dist/es5/transformRef.d.ts
generated
vendored
Normal file
11
node_modules/use-callback-ref/dist/es5/transformRef.d.ts
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import { ReactRef, RefObject } from './types';
|
||||
/**
|
||||
* Transforms one ref to another
|
||||
* @example
|
||||
* ```tsx
|
||||
* const ResizableWithRef = forwardRef((props, ref) =>
|
||||
* <Resizable {...props} ref={transformRef(ref, i => i ? i.resizable : null)}/>
|
||||
* );
|
||||
* ```
|
||||
*/
|
||||
export declare function transformRef<T, K>(ref: ReactRef<K>, transformer: (original: T | null) => K): RefObject<T>;
|
||||
Reference in New Issue
Block a user