Skip to main content

Type Alias: DryRunEffect

type DryRunEffect = {
mutatedReferences: DryRunMutation[];
returnValues: DryRunReturn[];
};

Effects of a single command in the dry run, including mutated references and return values.

Properties

mutatedReferences

mutatedReferences: DryRunMutation[];

Changes made to arguments that were mutably borrowed by this command.


returnValues

returnValues: DryRunReturn[];

Return results of this command.