1
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
import type { DataDrivenOptionProps } from './Mentions';
|
||||
export interface DropdownMenuProps {
|
||||
prefixCls?: string;
|
||||
options: DataDrivenOptionProps[];
|
||||
opened: boolean;
|
||||
}
|
||||
/**
|
||||
* We only use Menu to display the candidate.
|
||||
* The focus is controlled by textarea to make accessibility easy.
|
||||
*/
|
||||
declare function DropdownMenu(props: DropdownMenuProps): React.JSX.Element;
|
||||
export default DropdownMenu;
|
||||
Reference in New Issue
Block a user