import { FileSystemRouter } from "bun"; import { expectType } from "tsd"; const router = new FileSystemRouter({ dir: import.meta.dir + "/pages", style: "nextjs", }); const match = router.match("/"); expectType(match?.name!); expectType(match?.pathname!); expectType>(match?.query!); expectType>(match?.params!);