synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
12 lines (11 loc) • 354 B
TypeScript
import { VerificationSubmission } from './VerificationSubmission';
import { UserProfile } from './UserProfile';
export declare type UserBundle = {
userId: string;
userProfile?: UserProfile;
ORCID?: string;
verificationSubmission?: VerificationSubmission;
isCertified?: boolean;
isVerified?: boolean;
isACTMember?: boolean;
};