Blame view

天文台pc/tianwentai-ui/node_modules/use-callback-ref/dist/es2019/transformRef.d.ts 376 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
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>;