DocsclicoreFileActionPlanItem
Package: @hexos/cli
interface FileActionPlanItem {
    relativePath: string;
    strategy: PlannedFile['strategy'];
    desiredContent: string;
    finalContent: string;
    changed: boolean;
    reason: 'create' | 'update' | 'unchanged';
    conflict: boolean;
    conflictMessage?: string;
}

relativePath

string

strategy

PlannedFile['strategy']

desiredContent

string

finalContent

string

changed

boolean

reason

'create' | 'update' | 'unchanged'

conflict

boolean

conflictMessage

string