mirror of
https://github.com/labring/FastGPT.git
synced 2026-04-27 02:08:10 +08:00
bd966d479f
* fix: login secret * lock * env template * fix: ts * fix: ts * fix: ts
10 lines
363 B
TypeScript
10 lines
363 B
TypeScript
import type { MemberGroupSchemaType } from '../permission/memberGroup/type';
|
|
import type { OrgType } from './team/org/type';
|
|
import type { TeamMemberItemType } from './team/type';
|
|
|
|
export type SearchResult = {
|
|
members: Omit<TeamMemberItemType, 'teamId' | 'permission'>[];
|
|
orgs: Omit<OrgType, 'permission' | 'members'>[];
|
|
groups: MemberGroupSchemaType[];
|
|
};
|