Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ jobs:
- name: Lint
run: npx eslint $(cat ~/tmp/changed_files)

- name: Build generated types
run: npm run build:lib

- name: Check types
run: npm run checktype

Expand Down
1 change: 1 addition & 0 deletions src/core/echarts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ export interface SetOptionOpts {
export interface ResizeOpts {
width?: number | 'auto', // Can be 'auto' (the same as null/undefined)
height?: number | 'auto', // Can be 'auto' (the same as null/undefined)
devicePixelRatio?: number,
animation?: AnimationOption
silent?: boolean // by default false.
};
Expand Down