import type { Metadata } from '@devvit/protos/lib/Types.js'; import type { FetchRequest, FetchResponse } from '@devvit/protos/types/devvit/plugin/http/http.js'; import type { HTTP } from '@devvit/protos/types/devvit/plugin/http/http.js'; import type { PluginMock } from '@devvit/shared-types/test/index.js'; export declare class HTTPPluginMock implements HTTP { Fetch(_request: FetchRequest, _metadata?: Metadata): Promise; } /** * Mock implementation of the HTTP plugin that throws an error when requests are made. * * Use this in tests to ensure that HTTP requests are not accidentally made. */ export declare class HTTPMock implements PluginMock { readonly plugin: HTTPPluginMock; constructor(); } //# sourceMappingURL=httpMock.d.ts.map