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

CompileOptions

import type { CompileOptions } from "https://raw.githubusercontent.com/pillarjs/path-to-regexp/master/src/index.ts";
interface CompileOptions {
delimiter?: string;
encode?: Encode | false;
}

§Properties

§
delimiter?: string
[src]

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

§
encode?: Encode | false
[src]

Function for encoding input strings for output into the path, or false to disable entirely. (default: encodeURIComponent)