phx-node-test-1
Version:
PHX NODE
11 lines (10 loc) • 435 B
TypeScript
import { ConfigService } from "@nestjs/config";
import { HttpService } from "@nestjs/axios";
export declare class ApiService {
private readonly configService;
private readonly httpService;
private readonly logger;
constructor(configService: ConfigService, httpService: HttpService);
postData(req: any, end_point: string): Promise<any>;
postDataV3(req: any, end_point: string, hostname: string): Promise<any>;
}