UNPKG

@sethub/sdk

Version:

<div align="center"> <h1> SetHub SDK </h1>

23 lines (22 loc) 548 B
export type ApplicationDetailsCreatedByMemberUser = { id: string; name: string; email: string; }; export type ApplicationDetailsCreatedByMember = { id: string; user: ApplicationDetailsCreatedByMemberUser; }; export type ApplicationDetails = { id: string; name: string; createdAt: Date; createdByMember: ApplicationDetailsCreatedByMember; }; export type Application = { id: string; name: string; createdAt: Date; updateSetsCount: number; createdByMember: ApplicationDetailsCreatedByMember; };