Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 14x 4x 4x 4x 4x 14x 457x | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { ModularSet } from "./modular-set";
import { Pack } from "./pack";
export interface ScenarioInterface {
id: number;
name: string;
pack: Pack;
modularSets?: ModularSet[];
}
export class Scenario implements ScenarioInterface {
public id: number;
public name: string;
public pack: Pack;
public modularSets?: ModularSet[];
public constructor(data: ScenarioInterface) {
this.id = data.id;
this.name = data.name;
this.pack = data.pack;
this.modularSets = data.modularSets;
}
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const isScenario = (value: any): value is Scenario =>
value !== undefined && value.id !== undefined && value.name !== undefined && value.pack !== undefined;
/* eslint-enable @typescript-eslint/explicit-module-boundary-types */
|