- export interface GetAppInstallStatusParams {
- packageName: string;
- scheme: string;
- }
- export interface GetAppInstallStatusResult {
- installStatus: 0 | 1;
- }
- declare function getAppInstallStatus(params: GetAppInstallStatusParams): Promise<GetAppInstallStatusResult>;
- declare namespace getAppInstallStatus {
- var version: {
- android: string;
- ios: string;
- };
- }
- export default getAppInstallStatus;
|