123456789101112131415161718 |
- import { HttpClient } from "@angular/common/http";
- import * as i0 from "@angular/core";
- export declare class NovaCloudService {
- private http;
- serverURL: string;
- constructor(http: HttpClient);
- novaql(sql: string, params: Array<any>): Promise<any>;
- apig(url: string, body: any, method?: string): Promise<any>;
- apigTest(url: string, body: any, method?: string): Promise<any>;
- api(url: string, body: any, method?: string): Promise<{
- code: number | string;
- data?: any;
- mess?: string;
- }>;
- searchParse(url?: string): URLSearchParams;
- static ɵfac: i0.ɵɵFactoryDeclaration<NovaCloudService, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<NovaCloudService>;
- }
|