@hylid/types 4.0.0-alpha.13 → 4.0.0-alpha.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/mp.d.ts +3 -0
- package/package.json +1 -1
package/lib/mp.d.ts
CHANGED
|
@@ -207,6 +207,9 @@ export interface MPApi extends Omit<MiniprogramApi, 'request'> {
|
|
|
207
207
|
authType: string;
|
|
208
208
|
bizType?: string;
|
|
209
209
|
}) => void;
|
|
210
|
+
setCanPullDown: (args: {
|
|
211
|
+
canPullDown: boolean;
|
|
212
|
+
} & AsyncCallback<void>) => void;
|
|
210
213
|
}
|
|
211
214
|
export declare type HeadModel = {
|
|
212
215
|
/**
|