anvisa-med
Version:
Biblioteca para acessar medicamentos na ANVISA
13 lines (12 loc) • 481 B
TypeScript
import { HttpModule } from "./http/httpModule";
export declare class SearchBase {
protected readonly http: HttpModule;
protected readonly searchParams: URLSearchParams;
constructor(page?: string, count?: string);
protected append(name: string, value: string): void;
page(value: string | number): void;
limit(value: string | number): void;
requestWithRetry(tentativies: number): Promise<any>;
nextPage(): Promise<any>;
request(): Promise<any>;
}