Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
376 B
Text
11 lines
376 B
Text
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>;
|