interface ServerApplicationimport { type ServerApplication } from "https://dotland.deno.dev/x/aleph@v0.3.0-alpha.33/types.ts"; An interface that aligns to the parts of the aleph server's Application. Propertiesreadonlymode: "development" | "production"readonlyworkingDir: stringreadonlybuildDir: stringreadonlyconfig: Required<Config>readonlyimportMap: ImportMapMethodsaddModule(url: string, sourceCode?: string): Promise<void>addDist(path: string, content: Uint8Array): Promise<void>fetch(url: string): Promise<{ content: Uint8Array; contentType: string | null; }>injectCode(stage: "compilation" | "hmr" | "ssr", transform: (url: string, code: string) => string): void