Interface IPermissionModelFunc

interface IPermissionModelFunc {
    request(
        endpoint: string,
        quantity: number | "all",
        message: string,
        options?: JSONObject,
        body?: JSONObject,
        readOnly?: boolean,
        create?: boolean,
    ): Promise<JSONObject[]>;
}

Methods

Methods