Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

PathToRegexpOptions

import type { PathToRegexpOptions } from "https://raw.githubusercontent.com/pillarjs/path-to-regexp/master/src/index.ts";
interface PathToRegexpOptions {
delimiter?: string;
end?: boolean;
sensitive?: boolean;
trailing?: boolean;
}

§Properties

§
delimiter?: string
[src]

The default delimiter for segments. (default: '/')

§
end?: boolean
[src]

Matches the path completely without trailing characters. (default: true)

§
sensitive?: boolean
[src]

Match will be case sensitive. (default: false)

§
trailing?: boolean
[src]

Allows optional trailing delimiter to match. (default: true)