8 lines
295 B
TypeScript
8 lines
295 B
TypeScript
import React from 'react';
|
|
/**
|
|
* Create a React ref object that is friendly for snapshots.
|
|
* It will be represented as `[React.ref]` in snapshots.
|
|
* @returns a React ref object.
|
|
*/
|
|
export declare function createSnapshotFriendlyRef<T>(): React.RefObject<T>;
|
|
//# sourceMappingURL=Refs.d.ts.map
|