UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

14 lines (13 loc) 427 B
import { ColumnProps } from 'antd/lib/table'; import * as React from 'react'; export declare type TalkListBasicProps = { columns: ColumnProps<{}>[]; onConversationClick: (record: {}) => void; permissions: { canCreateNewConversation: boolean; }; }; export declare type TalkListProps = TalkListBasicProps & { conversations: any; }; export declare const TalkList: React.FC<TalkListProps>;