7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
/**
|
|
* @see https://github.com/streamich/react-use/blob/master/docs/useLatest.md
|
|
*/
|
|
export declare const useLatest: <T>(value: T) => {
|
|
readonly current: T;
|
|
};
|