fix: Typescript check (#21)
* fix: typescript check error * fix: typescript check error * fix: typescript check error * fix: typescript check error * fix: typescript check error
This commit is contained in:
16
frontend/types/chart.ts
Normal file
16
frontend/types/chart.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { ApexOptions } from 'apexcharts';
|
||||
|
||||
export type ChartDataType = {
|
||||
series: ApexOptions['series'];
|
||||
options: ApexOptions;
|
||||
};
|
||||
|
||||
export type CaseTypeCountType = {
|
||||
type: number;
|
||||
count: number;
|
||||
};
|
||||
|
||||
export type CasePriorityCountType = {
|
||||
priority: number;
|
||||
count: number;
|
||||
};
|
||||
Reference in New Issue
Block a user