account.service.d.ts 1.1 KB

12345678910111213141516171819202122232425262728
  1. import { NovaCloudService } from "../../nova-cloud/nova-cloud.service";
  2. import Parse from "parse";
  3. import { AuthService } from "../login/auth.service";
  4. import { HttpClient } from "@angular/common/http";
  5. import * as i0 from "@angular/core";
  6. export declare class AccountService {
  7. private ncloud;
  8. private authServ;
  9. private http;
  10. company: string;
  11. billing: any;
  12. profile: Parse.Object;
  13. wxAppId: string;
  14. wxpayEnabled: boolean;
  15. appid: string;
  16. shareInfo: any;
  17. constructor(ncloud: NovaCloudService, authServ: AuthService, http: HttpClient);
  18. getProfile(): Promise<void>;
  19. getBilling(): Promise<any>;
  20. getUserOpenid(): Promise<void>;
  21. authWechat(url?: string): void;
  22. getQueryStringByName(name: string): string;
  23. getwechat(code: string, url?: string): Promise<boolean>;
  24. getWXSignPackageInWechat(): void;
  25. saveAccountLog(info: object, orderid: string, company: string, message: any): Promise<unknown>;
  26. static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
  27. static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
  28. }