minishouyin/node_modules/rc-rate/es/useRefs.d.ts

5 lines
130 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
export default function useRefs<T>(): [
getRef: (index: number) => T,
setRef: (index: number) => (instance: T) => void
];