import { SelectedScript } from '@/application/Context/State/Selection/Script/SelectedScript'; import { IScript } from '@/domain/IScript'; export class SelectedScriptStub implements SelectedScript { public readonly script: IScript; public readonly id: string; public revert: boolean; constructor( script: IScript, ) { this.id = script.id; this.script = script; } public withRevert(revert: boolean): this { this.revert = revert; return this; } public equals(): boolean { throw new Error('Method not implemented.'); } }