Skip to content

Commit

Permalink
feat(Dropdown): export DropdownData type (#2298)
Browse files Browse the repository at this point in the history
  • Loading branch information
langz authored May 8, 2023
1 parent 0e52411 commit 0950a33
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/dnb-eufemia/src/components/dropdown/Dropdown.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ import type {
import type { IconIcon, IconSize } from '../Icon';
import type { SkeletonShow } from '../Skeleton';
import type { SpacingProps } from '../space/types';
import type { DrawerListProps } from '../../fragments/DrawerList';
import type {
DrawerListProps,
DrawerListData
} from '../../fragments/DrawerList';
export type DropdownData = DrawerListData;
type DropdownTitle = string | React.ReactNode;
type DropdownAlignDropdown = 'left' | 'right';
type DropdownTriggerElement = ((...args: any[]) => any) | React.ReactNode;
Expand Down

0 comments on commit 0950a33

Please sign in to comment.