Skip to content

Commit

Permalink
fix: remove redundant types
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmoura committed Jun 13, 2023
1 parent b000438 commit 3e9cb0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export type DrawerInlineSlots = {
};

// @public
export type DrawerInlineState = ComponentState<DrawerInlineSlots> & DrawerBaseProps & DrawerBaseState & Pick<DrawerInlineProps, 'open' | 'separator'>;
export type DrawerInlineState = ComponentState<DrawerInlineSlots> & DrawerInlineProps & DrawerBaseState;

// @public
export const DrawerOverlay: ForwardRefComponent<DrawerOverlayProps>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,4 @@ export type DrawerInlineProps = ComponentProps<DrawerInlineSlots> &
/**
* State used in rendering DrawerInline
*/
export type DrawerInlineState = ComponentState<DrawerInlineSlots> &
DrawerBaseProps &
DrawerBaseState &
Pick<DrawerInlineProps, 'open' | 'separator'>;
export type DrawerInlineState = ComponentState<DrawerInlineSlots> & DrawerInlineProps & DrawerBaseState;

0 comments on commit 3e9cb0e

Please sign in to comment.