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;
|
|
};
|