Skip to content

Commit

Permalink
refactor: fix flow syntax highlighting in vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
superskip committed Oct 17, 2023
1 parent a6d3138 commit 5507bd0
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type { Icon } from '../../../metaData';

type Props = {|
isUserInteractionInProgress?: boolean,
options: Array<{| label: string, value: any, icon?: Icon |}>,
options: Array<Option>,
onClear?: () => void,
onSelect?: (value: string) => void,
title: string,
Expand All @@ -23,6 +23,12 @@ type Props = {|
...CssClasses,
|};

type Option = {|
label: string,
value: any,
icon?: Icon,
|};

type ReadyProp = {|
ready: boolean,
|};
Expand Down

0 comments on commit 5507bd0

Please sign in to comment.