deno/tests/specs/publish/jsr_jsonc/mod.ts

7 lines
133 B
TypeScript

import http from "@std/http";
export function foobar(): { fileServer(): void } {
return {
fileServer: http.fileServer,
};
}