Skip to content

Commit

Permalink
feat(Autocomplete): export AutocompleteData type (#2299)
Browse files Browse the repository at this point in the history
  • Loading branch information
langz authored and tujoworker committed May 31, 2023
1 parent 0cc65be commit 0315b14
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import * as React from 'react';
import type { DrawerListProps } from '../../fragments/DrawerList';
import type {
DrawerListProps,
DrawerListData
} from '../../fragments/DrawerList';
import type { ButtonIconPosition } from '../button';
import type { FormLabelLabelDirection, FormLabelText } from '../FormLabel';
import type {
Expand All @@ -10,6 +13,7 @@ import type {
import type { IconIcon, IconSize } from '../Icon';
import type { SkeletonShow } from '../Skeleton';
import type { SpacingProps } from '../space/types';
export type AutocompleteData = DrawerListData;
type AutocompleteMode = 'sync' | 'async';
type AutocompleteTitle = string | React.ReactNode;
type AutocompletePlaceholder = string | React.ReactNode;
Expand Down

0 comments on commit 0315b14

Please sign in to comment.