ng-yunzai-mobile
Version:
1. 修改wechat.micro.ts
14 lines (13 loc) • 480 B
TypeScript
import { Observable } from 'rxjs';
import { SystemInfo } from './info.interface';
import { HttpClient } from "@angular/common/http";
import { BaseClient } from "../client";
export declare class InfoService {
private http;
private baseclient;
private systemInfoOB;
constructor(http: HttpClient, baseclient: BaseClient);
getSystemInfo(): Observable<SystemInfo>;
setSystemInfo(systemInfo: SystemInfo): void;
initSystemInfo(): Promise<any>;
}