Preparing search index...

    Interface AccessScopedRouter

    Route registrar returned by PluginRouter.access. Routes registered through it are reachable at the given access level; supports Express-style parameterized paths (e.g. /data/:sensorId).

    interface AccessScopedRouter {
        delete(
            path: string,
            ...handlers: RequestHandler<
                ParamsDictionary,
                any,
                any,
                ParsedQs,
                Record<string, any>,
            >[],
        ): AccessScopedRouter;
        get(
            path: string,
            ...handlers: RequestHandler<
                ParamsDictionary,
                any,
                any,
                ParsedQs,
                Record<string, any>,
            >[],
        ): AccessScopedRouter;
        patch(
            path: string,
            ...handlers: RequestHandler<
                ParamsDictionary,
                any,
                any,
                ParsedQs,
                Record<string, any>,
            >[],
        ): AccessScopedRouter;
        post(
            path: string,
            ...handlers: RequestHandler<
                ParamsDictionary,
                any,
                any,
                ParsedQs,
                Record<string, any>,
            >[],
        ): AccessScopedRouter;
        put(
            path: string,
            ...handlers: RequestHandler<
                ParamsDictionary,
                any,
                any,
                ParsedQs,
                Record<string, any>,
            >[],
        ): AccessScopedRouter;
    }
    Index

    post