UNPKG

@theventures/caret

Version:

Unofficial Node.js API client for the Caret HTTP API

8 lines 384 B
import type { Mock } from "bun:test"; export type MockFetch = Mock<(input: string | URL, init?: RequestInit) => Promise<Response>>; export type BunMockReturn<T extends (...args: unknown[]) => unknown> = Mock<T>; export type TestFunction = () => void | Promise<void>; export type TestWrapper = (() => void) & { readonly __brand: unique symbol; }; //# sourceMappingURL=test.d.ts.map