UNPKG

woby

Version:

A high-performance framework with fine-grained observable/signal-based reactivity for building rich applications.

5 lines 264 B
import type { Context, ContextWithDefault } from '../types'; declare function useContext<T>(Context: ContextWithDefault<T>): T; declare function useContext<T>(Context: Context<T>): T | undefined; export default useContext; //# sourceMappingURL=use_context.d.ts.map