@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
9 lines (8 loc) • 361 B
TypeScript
/**
* If the provided argument is a ref object, returns its `current` value.
* Otherwise, returns the argument itself.
*
* Non-generic to safely handle refs whose `.current` may be `null`.
*/
declare function resolveRef(maybeRef: HTMLElement | React.RefObject<HTMLElement | null | undefined> | null): HTMLElement | null | undefined;
export { resolveRef };