Vollständiges Redesign mit Gold-Formularen, BMP-Logo, multi-step Forms (Bewerbung, Kontakt, Sponsoring), Netlify-Deployment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
376 B
TypeScript
12 lines
376 B
TypeScript
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>;
|