shape editing
This commit is contained in:
@@ -6,6 +6,7 @@ export interface ChartState {
|
||||
start_time: number | null
|
||||
end_time: number | null
|
||||
interval: string
|
||||
selected_shapes: string[]
|
||||
}
|
||||
|
||||
export const useChartStore = defineStore('ChartStore', () => {
|
||||
@@ -13,7 +14,8 @@ export const useChartStore = defineStore('ChartStore', () => {
|
||||
symbol: 'BINANCE:BTC/USDT',
|
||||
start_time: null,
|
||||
end_time: null,
|
||||
interval: '15'
|
||||
interval: '15',
|
||||
selected_shapes: []
|
||||
})
|
||||
|
||||
return { chart_state }
|
||||
|
||||
Reference in New Issue
Block a user