UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

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