fingerprint-me-not
Version:
A powerful Node.js HTTP client with advanced TLS fingerprinting capabilities
18 lines • 974 B
TypeScript
import { FingerPrintMeNotException } from './exceptions.js';
import { Response } from './response.js';
import { Session } from './sessions.js';
import { ExecuteRequestOptions } from './types.js';
export declare const FingerPrintMeNotClient: {
Session: typeof Session;
Response: typeof Response;
FingerPrintMeNotException: typeof FingerPrintMeNotException;
get(url: string, options?: ExecuteRequestOptions): Promise<Response>;
post(url: string, options?: ExecuteRequestOptions): Promise<Response>;
put(url: string, options?: ExecuteRequestOptions): Promise<Response>;
patch(url: string, options?: ExecuteRequestOptions): Promise<Response>;
delete(url: string, options?: ExecuteRequestOptions): Promise<Response>;
head(url: string, options?: ExecuteRequestOptions): Promise<Response>;
options(url: string, options?: ExecuteRequestOptions): Promise<Response>;
};
export default FingerPrintMeNotClient;
//# sourceMappingURL=index.d.ts.map