interface ServeDirOptionsimport { type ServeDirOptions } from "https://deno.land/std@0.201.0/http/file_server.ts"; Interface for serveDir options. PropertiesoptionalfsRoot: string = "."Serves the files under the given directory root. Defaults to your current directory. optionalurlRoot: string = undefinedSpecified that part is stripped from the beginning of the requested pathname. optionalshowDirListing: boolean = falseEnable directory listing. optionalshowDotfiles: boolean = falseServes dotfiles. optionalshowIndex: boolean = trueServes index.html as the index file of the directory. optionalenableCors: boolean = falseEnable CORS via the "Access-Control-Allow-Origin" header. optionalquiet: boolean = falseDo not print request level logs. Defaults to false. optionaletagAlgorithm: AlgorithmIdentifier = "SHA-256"The algorithm to use for generating the ETag. optionalheaders: string[] = []Headers to add to each response