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 | 14x 4x 4x 4x 14x 457x | /* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import { Pack } from "./pack";
export interface ModularSetInterface {
id: number;
name: string;
pack: Pack;
}
export class ModularSet implements ModularSetInterface {
public id: number;
public name: string;
public pack: Pack;
public constructor(data: ModularSetInterface) {
this.id = data.id;
this.name = data.name;
this.pack = data.pack;
}
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export const isModularSet = (value: any): value is ModularSet =>
value !== undefined && value.id !== undefined && value.name !== undefined && value.pack !== undefined;
/* eslint-enable @typescript-eslint/explicit-module-boundary-types */
|