1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-13 02:52:54 -05:00
denoland-deno/cli/tests/testdata/publish/deno_jsonc/mod.ts

6 lines
110 B
TypeScript
Raw Normal View History

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