UNPKG

synapse-react-client

Version:

[![Build Status](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client.svg?branch=main)](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synaps

15 lines (14 loc) 413 B
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;