import type { Category } from '@/domain/Executables/Category/Category'; import { RecommendationLevel } from '@/domain/Executables/Script/RecommendationLevel'; import type { Script } from '@/domain/Executables/Script/Script'; import type { ExecutableId } from '@/domain/Executables/Identifiable'; import { ScriptStub } from './ScriptStub'; export class CategoryStub implements Category { public name = `[${CategoryStub.name}] name (ID: ${this.executableId})`; public readonly subcategories = new Array(); public readonly scripts = new Array