import type { Action } from './action' // Команда export type Team = { // Название name: string // Совершенные действия actions: Action[] }