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