3.3.0
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@mtlsz/common",
|
"name": "@mtlsz/common",
|
||||||
"version": "3.2.6",
|
"version": "3.3.0",
|
||||||
"description": "MTLSZ frontend packages",
|
"description": "MTLSZ frontend packages",
|
||||||
"main": "dist/index.ts",
|
"main": "dist/index.ts",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
|
|||||||
7
src/interfaces/adult.ts
Normal file
7
src/interfaces/adult.ts
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { GenericUser } from "./generic-user";
|
||||||
|
import { Player } from "./player";
|
||||||
|
|
||||||
|
export interface Adult extends GenericUser {
|
||||||
|
id?: number;
|
||||||
|
kids: Player[];
|
||||||
|
}
|
||||||
7
src/interfaces/team-manager.ts
Normal file
7
src/interfaces/team-manager.ts
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import { Club } from "./club";
|
||||||
|
import { GenericUser } from "./generic-user";
|
||||||
|
|
||||||
|
export interface TeamManager extends GenericUser {
|
||||||
|
id?: number;
|
||||||
|
club: Club;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user