UNPKG

@teambit/workspace

Version:
17 lines (16 loc) 442 B
import type { ReactNode } from 'react'; import type { Workspace } from './workspace-model'; export type WorkspaceProviderProps = { /** * workspace model. */ workspace: Workspace; /** * react children. */ children: ReactNode; }; /** * context provider of the workspace */ export declare function WorkspaceProvider({ workspace, children }: WorkspaceProviderProps): import("react/jsx-runtime").JSX.Element;