mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 02:04:33 +08:00
8 lines
125 B
JavaScript
8 lines
125 B
JavaScript
// @flow
|
|
|
|
export type Team$TeamMemeber = {
|
|
userName: string,
|
|
teamUserId: number,
|
|
teamName: string,
|
|
teamId: number
|
|
};
|