Skip to content

Commit

Permalink
Remove number type
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdaley committed Oct 27, 2023
1 parent 4c93e39 commit 08ae24d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/types/hds/badge-count.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { HdsBadgeCountSize } from "hermes/types/HdsBadgeCountSize";
interface HdsBadgeCountComponentSignature {
Element: HTMLDivElement;
Args: {
text: string | number;
text: string;
size?: HdsBadgeCountSize;
type?: HdsBadgeType;
color?: HdsBadgeCountColor;
Expand Down
2 changes: 1 addition & 1 deletion web/types/hds/badge.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { HdsBadgeColor, HdsBadgeType, HdsComponentSize } from "hds/_shared";
interface HdsBadgeComponentSignature {
Element: HTMLDivElement;
Args: {
text: string | number;
text: string;
color?: HdsBadgeColor;
type?: HdsBadgeType;
size?: HdsComponentSize;
Expand Down

0 comments on commit 08ae24d

Please sign in to comment.