UNPKG

@gpa-gemstone/react-graph

Version:
16 lines (15 loc) 425 B
import * as React from 'react'; export interface ILegendContext { SmWidth: number; LgWidth: number; SmHeight: number; LgHeight: number; SmallestFontSize: number; UseMultiLine: boolean; SendMassEnable?: React.MutableRefObject<(id: string) => void>; } export interface ILegendRequiredProps { enabled: boolean; id: string; } export declare const LegendContext: React.Context<ILegendContext>;