Skip to content

Commit

Permalink
fix: Remove reference to inexistent interface (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
tassoevan authored Apr 14, 2021
1 parent 5f3eb96 commit dcf43c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/fuselage/fuselage.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ declare module '@rocket.chat/fuselage' {
variant?: 'neutral' | 'info' | 'success' | 'warning' | 'danger';
onAction?: () => void;
onClose?: () => void;
} & AllHTMLAttributes<HTMLSectionElement>;
} & AllHTMLAttributes<HTMLElement>;
export const Banner: FC<BannerProps>;

type ButtonProps = BoxProps & {
Expand Down Expand Up @@ -470,6 +470,6 @@ declare module '@rocket.chat/fuselage' {
type StatusBulletProps = {
status?: 'loading' | 'online' | 'busy' | 'away' | 'offline';
size?: 'small' | 'large';
} & Omit<AllHTMLAttributes<HTMLSpanElement>, 'size'>;
} & Omit<AllHTMLAttributes<HTMLElement>, 'size'>;
export const StatusBullet: FC<StatusBulletProps>;
}

0 comments on commit dcf43c2

Please sign in to comment.