Trilium Backend API
    Preparing search index...

    Interface ILayer

    interface ILayer {
        handle: (req: Request, res: Response, next: NextFunction) => any;
        keys: string[];
        method: string;
        name: string;
        params?: Record<string, any>;
        path?: string;
        regexp: RegExp;
        route?: IRoute;
    }
    Index

    Properties

    handle: (req: Request, res: Response, next: NextFunction) => any
    keys: string[]
    method: string
    name: string
    params?: Record<string, any>
    path?: string
    regexp: RegExp
    route?: IRoute