UNPKG

@gpa-gemstone/react-interactive

Version:
13 lines (12 loc) 443 B
import { Application } from '@gpa-gemstone/application-typings'; import * as React from 'react'; export interface IContext { homePath: string; userRoles: Application.Types.SecurityRoleName[]; collapsed: boolean; useSearchMatch: boolean; activeSection: string; setActiveSection: (guid: string) => void; } export declare const Context: React.Context<IContext>; export declare const SectionContext: React.Context<string>;