scichart-react
Version:
React wrapper for SciChart JS
15 lines • 609 B
TypeScript
/// <reference types="react" />
import { IInitResult } from "./types";
type TSciChartGroupContext = {
groupInitialized: boolean;
charts: Map<any, {
isInitialized: boolean;
initResult: IInitResult | null;
}>;
addChartToGroup: (chart: any, isInitialized: boolean, initResult: IInitResult | null) => void;
removeChartFromGroup: (chart: any) => void;
};
/** The context provided within a {@link SciChartGroup} */
export declare const SciChartGroupContext: import("react").Context<TSciChartGroupContext | undefined>;
export {};
//# sourceMappingURL=SciChartGroupContext.d.ts.map