correios-brasil2
Version:
Módulo completo consultar informações sobre o CEP, calcular o preço e os prazos das entregas das encomendas e também realizar o seu rastreio
16 lines (15 loc) • 414 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
import http from 'http';
import https from 'https';
interface RequestOptions {
method: 'GET' | 'POST';
mode?: string;
data?: any;
headers: any;
timeout?: number | 0;
agent?: http.Agent | https.Agent;
responseType?: any;
}
declare function request(url: string, options: RequestOptions): Promise<unknown>;
export { request };