🏷️ Message component interface file updated

This commit is contained in:
Paul Valerie GOMA 2025-07-24 00:41:30 +02:00
parent 1aa7a142c6
commit 8a43684027

View File

@ -19,10 +19,9 @@ export default interface IVMessage {
* - `warning`: Warning message * - `warning`: Warning message
* - `alert`: Error or critical alert * - `alert`: Error or critical alert
* - `success`: Confirmation or success message * - `success`: Confirmation or success message
* - `active`: Ongoing or active status
* - undefined: No specific type * - undefined: No specific type
*/ */
type?: 'info' | 'warning' | 'alert' | 'success' | 'active' | undefined; type?: 'info' | 'warning' | 'alert' | 'success' | undefined;
/** /**
* If true, the notice can be closed by the user. * If true, the notice can be closed by the user.