UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

4 lines (3 loc) β€’ 170 B
declare type UseSyncStateProps<T> = readonly [() => T, (newValue: T) => void]; export default function useSyncState<T>(initialValue: T): UseSyncStateProps<T>; export {};