interface RouterOptionsimport { type RouterOptions } from "https://dotland.deno.dev/x/oak@v17.1.2/router.ts"; Options which can be specified when creating a new instance of a Router. Propertiesoptionalmethods: HTTPMethods[]Override the default set of methods supported by the router. optionalprefix: stringOnly handle routes where the requested path starts with the prefix. optionalrouterPath: stringOverride the request.url.pathname when matching middleware to run. optionalsensitive: booleanDetermines if routes are matched in a case sensitive way. Defaults to false. optionalstrict: booleanDetermines if routes are matched strictly, where the trailing / is not optional. Defaults to false.