0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-09 21:57:40 -04:00
deno/tests/specs/publish/set_version/success/mod.ts
2024-11-20 00:00:47 +00:00

7 lines
133 B
TypeScript

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