@fedify/fedify
Version:
An ActivityPub server framework
11 lines (10 loc) • 566 B
TypeScript
import { Temporal } from "@js-temporal/polyfill";
import { URLPattern } from "urlpattern-polyfill";
globalThis.addEventListener = () => {};
//#region testing/mod.d.ts
declare const testDefinitions: Deno.TestDefinition[];
declare function test(options: Deno.TestDefinition): void;
declare function test(name: string, fn: (t: Deno.TestContext) => void | Promise<void>): void;
declare function test(name: string, options: Omit<Deno.TestDefinition, "fn" | "name">, fn: (t: Deno.TestContext) => void | Promise<void>): void;
//#endregion
export { test, testDefinitions };