You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
676 B
22 lines
676 B
import * as React from 'react';
|
|
import { OptionProps } from './Option';
|
|
import { Placement, Direction } from './Mentions';
|
|
interface KeywordTriggerProps {
|
|
loading?: boolean;
|
|
options: OptionProps[];
|
|
prefixCls?: string;
|
|
placement?: Placement;
|
|
direction?: Direction;
|
|
visible?: boolean;
|
|
transitionName?: string;
|
|
children?: React.ReactElement;
|
|
getPopupContainer?: () => HTMLElement;
|
|
}
|
|
declare class KeywordTrigger extends React.Component<KeywordTriggerProps, {}> {
|
|
getDropdownPrefix: () => string;
|
|
getDropdownElement: () => JSX.Element;
|
|
getDropDownPlacement: () => string;
|
|
render(): JSX.Element;
|
|
}
|
|
export default KeywordTrigger;
|