interface RouterOptionsimport { type RouterOptions } from "https://dotland.deno.dev/x/oak@v12.0.1/router.ts"; 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.