From ba4dcef8fdbd25e2c200db83395bfcbd70565d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Thu, 18 Apr 2024 18:41:21 +0300 Subject: [PATCH] Fixes #15284 --- .../metergroup/metergroup.interface.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/app/components/metergroup/metergroup.interface.ts b/src/app/components/metergroup/metergroup.interface.ts index 47ca9ef7a32..5aa500f7cbd 100644 --- a/src/app/components/metergroup/metergroup.interface.ts +++ b/src/app/components/metergroup/metergroup.interface.ts @@ -99,10 +99,25 @@ export interface MeterGroupTemplates { class?: string; }): TemplateRef; } - +/** + * Represents a meter item configuration. + * @group Interface + */ export interface MeterItem { + /** + * Label of the meter item. + */ label?: string; + /** + * Value of the meter item. + */ value?: number; + /** + * Color of the meter item. + */ color?: string; + /** + * Icon of the meter item. + */ icon?: string; }