UNPKG

200 BTypeScriptView Raw
1import { Score } from "./score.entity";
2export declare class ScoreType {
3 id: number;
4 name: string;
5 type: string;
6 default: boolean;
7 description: string;
8 scores: Array<Score>;
9}