fix: corrects checked output description

This commit is contained in:
2025-08-22 23:38:36 -03:00
parent acc19898e0
commit 868dd0a9e4

View File

@@ -9,7 +9,7 @@ import { Component, output } from '@angular/core';
}) })
export class CheckboxComponent { export class CheckboxComponent {
/** /**
* @description Emits true if checked, false otherwise * @description Emitted when the checkbox is clicked
*/ */
checked = output<boolean>(); checked = output<boolean>();
} }