import type { IEntity } from '@/infrastructure/Entity/IEntity'; import type { IScript } from '@/domain/IScript'; type ScriptId = IScript['id']; export interface SelectedScript extends IEntity { readonly script: IScript; readonly revert: boolean; }