UNPKG

@inkline/paper

Version:

Paper is a unified interface for defining components for Vue and React using a single code base.

9 lines (8 loc) 302 B
import { Dispatch, SetStateAction } from 'react'; interface PaperContextState { provides: Record<string, any>; setProvides: Dispatch<SetStateAction<Record<string, any>>>; parent: PaperContextState; } export declare const PaperContext: import("react").Context<PaperContextState>; export {};