9 lines
285 B
TypeScript
9 lines
285 B
TypeScript
import { SelectedScript } from '@/application/Context/State/Selection/SelectedScript';
|
|
import { ScriptStub } from './ScriptStub';
|
|
|
|
export class SelectedScriptStub extends SelectedScript {
|
|
constructor(id: string, revert = false) {
|
|
super(new ScriptStub(id), revert);
|
|
}
|
|
}
|