• Parameters

    Returns {
        config: {
            api: {
                bodyParser: boolean;
            };
        };
        default: ((req, res) => Promise<void>);
    }

    • config: {
          api: {
              bodyParser: boolean;
          };
      }
      • api: {
            bodyParser: boolean;
        }
        • bodyParser: boolean
    • default: ((req, res) => Promise<void>)
        • (req, res): Promise<void>
        • Parameters

          • req: any
          • res: any

          Returns Promise<void>

Generated using TypeDoc