/** * 获取 hooks 上一个状态 * * 使用可参考: https://ahooks.js.org/zh-CN/hooks/state/use-previous */ export declare type compareFunction = (prev: T | undefined, next: T) => boolean; declare function usePrevious(state: T, compare?: compareFunction): T | undefined; export default usePrevious;