12345678910111213141516171819202122232425262728 |
- import { NovaCloudService } from "../../nova-cloud/nova-cloud.service";
- import Parse from "parse";
- import { AuthService } from "../login/auth.service";
- import { HttpClient } from "@angular/common/http";
- import * as i0 from "@angular/core";
- export declare class AccountService {
- private ncloud;
- private authServ;
- private http;
- company: string;
- billing: any;
- profile: Parse.Object;
- wxAppId: string;
- wxpayEnabled: boolean;
- appid: string;
- shareInfo: any;
- constructor(ncloud: NovaCloudService, authServ: AuthService, http: HttpClient);
- getProfile(): Promise<void>;
- getBilling(): Promise<any>;
- getUserOpenid(): Promise<void>;
- authWechat(url?: string): void;
- getQueryStringByName(name: string): string;
- getwechat(code: string, url?: string): Promise<boolean>;
- getWXSignPackageInWechat(): void;
- saveAccountLog(info: object, orderid: string, company: string, message: any): Promise<unknown>;
- static ɵfac: i0.ɵɵFactoryDeclaration<AccountService, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<AccountService>;
- }
|