init 3
This commit is contained in:
+11
@@ -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>;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
Reference in New Issue
Block a user