import { IEntity } from '../infrastructure/Entity/IEntity'; import { IDocumentable } from './IDocumentable'; export interface IScript extends IEntity, IDocumentable { readonly name: string; readonly isRecommended: boolean; readonly documentationUrls: ReadonlyArray; readonly code: string; readonly revertCode: string; canRevert(): boolean; }