mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
import { Permission } from './controller';
|
|
import { PermissionValueType } from './type';
|
|
|
|
export type CollaboratorItemType = {
|
|
teamId: string;
|
|
tmbId: string;
|
|
permission: Permission;
|
|
name: string;
|
|
avatar: string;
|
|
};
|
|
|
|
export type UpdateClbPermissionProps = {
|
|
tmbIds: string[];
|
|
permission: PermissionValueType;
|
|
};
|