nova-cloud.service.d.ts 726 B

123456789101112131415161718
  1. import { HttpClient } from "@angular/common/http";
  2. import * as i0 from "@angular/core";
  3. export declare class NovaCloudService {
  4. private http;
  5. serverURL: string;
  6. constructor(http: HttpClient);
  7. novaql(sql: string, params: Array<any>): Promise<any>;
  8. apig(url: string, body: any, method?: string): Promise<any>;
  9. apigTest(url: string, body: any, method?: string): Promise<any>;
  10. api(url: string, body: any, method?: string): Promise<{
  11. code: number | string;
  12. data?: any;
  13. mess?: string;
  14. }>;
  15. searchParse(url?: string): URLSearchParams;
  16. static ɵfac: i0.ɵɵFactoryDeclaration<NovaCloudService, never>;
  17. static ɵprov: i0.ɵɵInjectableDeclaration<NovaCloudService>;
  18. }