Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(param): add some missing parameters. #46

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
11 changes: 10 additions & 1 deletion packages/my/types/lib.my.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1074,9 +1074,13 @@ declare namespace my {
| Array<`${EChooseImageSourceType}`>
| `${EChooseImageSourceType}`;
/**
* 选图过程中拍摄的照片是否落相册(默认不落相册
* 是否默认使用前置摄像头(默认`false`
*/
storeToAlbum?: boolean;
/**
* 选图过程中拍摄的照片是否落相册(默认不落相册)
*/
useFrontCamera?: boolean;
/**
* 接口调用成功的回调函数
*/
Expand Down Expand Up @@ -10256,6 +10260,11 @@ declare namespace my {
* 提示中的文字内容
*/
content?: string;
/**
* 是否显示透明蒙层,防止触摸穿透
* @default true
*/
mask?: Boolean;
/**
* 延迟显示,单位为毫秒(ms)
* @description 如果在此时间之前调用了 [my.hideLoading]() 则不会显示。
Expand Down