From e3e16d80f428fcaa05d3d326f58cdbe7660e5bdd Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 16 Sep 2024 00:28:21 +0000 Subject: [PATCH] chore: self mutation Signed-off-by: github-actions --- API.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/API.md b/API.md index 5e209d9d..fc3ce7d5 100644 --- a/API.md +++ b/API.md @@ -100,7 +100,7 @@ Add a variable to the dashboard. ##### `addWidgets` ```typescript -public addWidgets(widgets: IWidget): void +public addWidgets(widgets: ...IWidget[]): void ``` Add a widget to the dashboard. @@ -113,7 +113,7 @@ to each other. ###### `widgets`Required -- *Type:* aws-cdk-lib.aws_cloudwatch.IWidget +- *Type:* ...aws-cdk-lib.aws_cloudwatch.IWidget[] --- @@ -477,7 +477,7 @@ Add a variable to the dashboard. ##### `addWidgets` ```typescript -public addWidgets(widgets: IWidget): void +public addWidgets(widgets: ...IWidget[]): void ``` Add a widget to the dashboard. @@ -490,7 +490,7 @@ to each other. ###### `widgets`Required -- *Type:* aws-cdk-lib.aws_cloudwatch.IWidget +- *Type:* ...aws-cdk-lib.aws_cloudwatch.IWidget[] --- @@ -56357,12 +56357,12 @@ Adjusts a metric. ```typescript import { CompositeMetricAdjuster } from 'cdk-monitoring-constructs' -CompositeMetricAdjuster.of(adjusters: IMetricAdjuster) +CompositeMetricAdjuster.of(adjusters: ...IMetricAdjuster[]) ``` ###### `adjusters`Required -- *Type:* IMetricAdjuster +- *Type:* ...IMetricAdjuster[] ---