@gpa-gemstone/react-graph
Version:
Interactive UI Components for GPA products
10 lines (9 loc) • 350 B
TypeScript
import * as React from 'react';
export interface IPlotGroupContext {
LegendWidth: number;
RegisterLegendWidth: (requesterID: string, width: number) => void;
UnRegisterLegendWidth: (requesterID: string) => void;
HasConsumer: boolean;
}
declare const PlotGroupContext: React.Context<IPlotGroupContext>;
export default PlotGroupContext;