Document the description prop on NotificationDescription

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Signed-off-by: Fredrik Adelöw <freben@spotify.com>
This commit is contained in:
Fredrik Adelöw
2026-04-21 17:10:29 +02:00
parent 4f7e5219de
commit de9fc68cf1
2 changed files with 3 additions and 1 deletions
-1
View File
@@ -61,7 +61,6 @@ export const NotificationDescription: {
// @public
export interface NotificationDescriptionProps {
// (undocumented)
description: string;
}
@@ -21,6 +21,9 @@ import { createSwappableComponent } from '@backstage/frontend-plugin-api';
* @public
*/
export interface NotificationDescriptionProps {
/**
* The plain-text description of the notification.
*/
description: string;
}