Skip to content

Commit

Permalink
chore: DataItem not find
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaohuoni committed Dec 13, 2023
1 parent fa61aaf commit fb82de5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
uses: actions/checkout@master

- name: install
run: yarn
run: pnpm i

- name: lint
run: yarn run lint
run: pnpm run lint

test-js:
runs-on: ubuntu-latest
Expand Down
7 changes: 4 additions & 3 deletions DashboardAnalysis/src/data.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { DataItem } from '@antv/g2plot/esm/interface/config';

export { DataItem };
export interface DataItem {
x: string;
y: number;
}

export interface VisitDataType {
x: string;
Expand Down
7 changes: 4 additions & 3 deletions DashboardWorkplace/src/data.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { DataItem } from '@antv/g2plot/esm/interface/config';

export { DataItem };
export interface DataItem {
x: string;
y: number;
}

export interface TagType {
key: string;
Expand Down

0 comments on commit fb82de5

Please sign in to comment.