Got rid of the last brace-typed and hyphen-less params etc

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-01-09 15:56:07 +01:00
parent c8ff2df05a
commit 5333451def
72 changed files with 247 additions and 423 deletions
@@ -45,12 +45,12 @@ export class ApacheAirflowClient implements ApacheAirflowApi {
* List all DAGs in the Airflow instance
*
* @remarks
*
* All DAGs with a limit of 100 results per request are returned; this may be
* bogged-down for instances with many DAGs, in which case table pagination
* should be implemented
*
* @param {number} objectsPerRequest records returned per request in pagination
* @returns {Promise<Dag[]>}
* @param objectsPerRequest - records returned per request in pagination
*/
async listDags(options = { objectsPerRequest: 100 }): Promise<Dag[]> {
const dags: Dag[] = [];