File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
cubejs-server-core/src/core Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,13 @@ class ApiGateway {
177177
178178 public constructor (
179179 protected readonly apiSecret : string ,
180+ /**
181+ * It actually returns a Promise<CompilerApi>
182+ */
180183 protected readonly compilerApi : ( ctx : RequestContext ) => Promise < any > ,
184+ /**
185+ * It actually returns a Promise<OrchestratorApi>
186+ */
181187 protected readonly adapterApi : ( ctx : RequestContext ) => Promise < any > ,
182188 protected readonly logger : any ,
183189 protected readonly options : ApiGatewayOptions ,
Original file line number Diff line number Diff line change @@ -504,7 +504,7 @@ export class CompilerApi {
504504
505505 /**
506506 *
507- * @param {unknown } filter
507+ * @param {unknown|undefined } filter
508508 * @returns {Promise<Array<PreAggregationInfo>> }
509509 */
510510 async preAggregations ( filter ) {
You can’t perform that action at this time.
0 commit comments