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; }