Skip to content

Commit

Permalink
fix: enhance types
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Dec 23, 2024
1 parent 0415268 commit 031c75e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/charts/TimePeriodChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
import { registerTransform } from 'echarts';
import type { TimeSummaryCols, TimeSummaryReturnValue } from '@/types';
import type { EChartsOption } from 'echarts';
import type { EChartsOption, LinearGradientObject } from 'echarts';
use([
BarChart,
Expand Down Expand Up @@ -90,7 +90,7 @@ const units = {
registerTransform(units.multiple);
const colorStops = {
const colorStops: LinearGradientObject = {
type: 'linear',
x: 0,
y: 0,
Expand Down

0 comments on commit 031c75e

Please sign in to comment.