This commit is contained in:
2026-03-21 01:03:18 +07:00
parent 80d581e3b6
commit b56a4570de
5 changed files with 3 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
import type { Action } from './action'
// Команда
export type Team = {
// Название
name: string
// Совершенные действия
actions: Action[]
}