UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

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