mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00

Co-authored-by: Archer <545436317@qq.com> Co-authored-by: Finley Ge <32237950+FinleyGe@users.noreply.github.com>
10 lines
191 B
TypeScript
10 lines
191 B
TypeScript
import { PermissionValueType } from './type';
|
|
|
|
export type CollaboratorItemType = {
|
|
teamId: string;
|
|
tmbId: string;
|
|
permission: PermissionValueType;
|
|
name: string;
|
|
avatar: string;
|
|
};
|