UNPKG

react95-native

Version:

Refreshed Windows 95 style UI components for your React Native app

8 lines (7 loc) 266 B
import React from 'react'; import type { AnyValue } from '../types'; interface UpdateStateFunction extends Function { (n: AnyValue): void; } export default function useAsyncReference(value: AnyValue): [React.RefObject<AnyValue>, UpdateStateFunction]; export {};