@cafecafe/afip.ts
Version:
Afip typescript SDK
15 lines (14 loc) • 436 B
TypeScript
import { Client } from "soap";
import { SoapClientParams } from "../types";
export declare class SoapClientFacade {
private construct;
/**
* Geth the path for the WSDL file stored on the WSDL folder.
*
* @param wsdlFile
* @param forceFolderPath
* @returns Path of wsdl file
*/
private static getWsdlPath;
static create<T extends Client>({ wsdl, options, }: SoapClientParams): Promise<T>;
}