UNPKG

woby

Version:

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

5 lines 275 B
import type { Context, ContextWithDefault } from '../types'; declare function createContext<T>(defaultValue: T): ContextWithDefault<T>; declare function createContext<T>(defaultValue?: T): Context<T>; export default createContext; //# sourceMappingURL=create_context.d.ts.map