Complete Email Sortierer implementation with Appwrite and Stripe integration
This commit is contained in:
24
server/node_modules/node-fetch-native-with-agent/lib/agent.d.ts
generated
vendored
Normal file
24
server/node_modules/node-fetch-native-with-agent/lib/agent.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import type * as http from "node:http";
|
||||
import type * as https from "node:https";
|
||||
import type * as undici from "undici";
|
||||
|
||||
export type AgentOptions = {
|
||||
/**
|
||||
* Reject unauthorized TLS certificates, default is `true`
|
||||
*/
|
||||
rejectUnauthorized?: boolean;
|
||||
};
|
||||
|
||||
export declare const createAgent: (
|
||||
uri?: string,
|
||||
opts?: AgentOptions,
|
||||
) => {
|
||||
agent: http.Agent | https.Agent | undefined;
|
||||
dispatcher: undici.Dispatcher | undefined;
|
||||
};
|
||||
|
||||
export declare const createFetch: (
|
||||
agentOptions?: AgentOptions,
|
||||
) => typeof globalThis.fetch;
|
||||
|
||||
export declare const fetch: typeof globalThis.fetch;
|
||||
Reference in New Issue
Block a user