synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
15 lines (14 loc) • 413 B
TypeScript
import * as React from 'react';
export declare type UserSearchBoxProps = {
id?: string;
onSelectCallback?: (selected: FormattedUserHeader) => void;
filterUserIds?: string[];
};
export declare type FormattedUserHeader = {
ownerId: string;
firstName: string;
lastName: string;
userName: string;
};
declare const UserSearchBox: React.FC<UserSearchBoxProps>;
export default UserSearchBox;