-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { CanvasProps } from './CanvasProps'; | ||
|
||
/** | ||
* 进度条参数。 | ||
*/ | ||
export interface ScrollBarParams { | ||
/** | ||
* 用于确定进度条的渲染方向。 | ||
*/ | ||
mode?: 'x' | 'y' | 'xy'; | ||
|
||
/** | ||
* 用于设置 x 轴方向进度条的样式。 | ||
*/ | ||
xStyle?: CanvasProps; | ||
|
||
/** | ||
* 用于设置 y 轴方向进度条的样式。 | ||
*/ | ||
yStyle?: CanvasProps; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters