@gpa-gemstone/react-interactive
Version:
Interactive UI Components for GPA products
13 lines (12 loc) • 443 B
TypeScript
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>;