sveltekit-service-manager - v1.1.2
    Preparing search index...

    Interface Route<Path>

    Internal route definition used by ServiceRouter.

    interface Route<Path extends string> {
        handler: RouteHandler<Path>;
        isAction: boolean;
        isCatchAll: boolean;
        isOptional: boolean;
        method: RequestMethods;
        paramNames: readonly string[];
        path: Path;
        priority: number;
        regex: RegExp;
    }

    Type Parameters

    • Path extends string
    Index

    Properties

    handler: RouteHandler<Path>
    isAction: boolean
    isCatchAll: boolean
    isOptional: boolean
    paramNames: readonly string[]
    path: Path
    priority: number
    regex: RegExp