Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/types/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ export interface NavigationItem {
/** Navigation item type */
type: NavigationItemType;

/** Display label (plain string or I18nLabel object for internationalization) */
label: string | { key: string; defaultValue?: string; params?: Record<string, any> };
/** Display label (plain string per @objectstack/spec v4 protocol) */
label: string;

/** Icon name (Lucide) */
icon?: string;
Expand Down Expand Up @@ -129,8 +129,8 @@ export interface NavigationArea {
/** Unique identifier */
id: string;

/** Display label (plain string or I18nLabel object for internationalization) */
label: string | { key: string; defaultValue?: string; params?: Record<string, any> };
/** Display label (plain string per @objectstack/spec v4 protocol) */
label: string;

/** Icon name (Lucide) */
icon?: string;
Expand Down
Loading
Loading