mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
22 lines
363 B
TypeScript
22 lines
363 B
TypeScript
export type CreateTeamProps = {
|
|
ownerId: string;
|
|
name: string;
|
|
avatar?: string;
|
|
};
|
|
export type UpdateTeamProps = {
|
|
id: string;
|
|
name?: string;
|
|
avatar?: string;
|
|
};
|
|
export type updateTeamBalanceProps = {
|
|
id: string;
|
|
balance: number;
|
|
};
|
|
|
|
export type CreateTeamMemberProps = {
|
|
ownerId: string;
|
|
teamId: string;
|
|
userId: string;
|
|
name?: string;
|
|
};
|