import { QueryParams } from '../types/fetchResponse.type'; export interface GetTeamsParams extends QueryParams { team?: string; } export interface UpdateTeamRequestBody { figma: boolean; github: boolean; testing: boolean; } export interface AssignUnassignMemberDto { team: string; user: string | string[]; }