Files
goldenChart/frontend/src/chart/chartWorkspaceBridge.ts
T
2026-06-08 16:24:31 +09:00

8 lines
189 B
TypeScript

import type { IndicatorConfig } from '../types';
export interface ChartWorkspaceBridge {
goToMarket(market: string): void;
getSymbol(): string;
getIndicators(): IndicatorConfig[];
}