Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib/createRef.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

7 lines
232 B
TypeScript

import * as React from 'react';
export type IRefObject<T> = React.MutableRefObject<T | null> | RefObject<T | null> | ((ref: T | null) => void);
export type RefObject<T> = {
(component: T | null): void;
current: T | null;
};