UNPKG

@zxh19890103/wik

Version:

The world-class JavaScript library for building large-scale digital warehouse both on 2D and 3D.

14 lines (13 loc) 373 B
import { IInjector } from '../interfaces'; import React from 'react'; interface Props { switch?: boolean; defaultKeys?: string[]; children?: JSX.Element | JSX.Element[]; } type ContextValue = { injector: IInjector; }; export declare const __world_context__: React.Context<ContextValue>; declare const World: (props: Props) => JSX.Element; export { World };