mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
import http from "@std/http";
|
|
|
|
export function foobar(): { fileServer(): void } {
|
|
return {
|
|
fileServer: http.fileServer,
|
|
};
|
|
}
|