Interface Args<TChangeSummary>

interface Args<TChangeSummary> {
    changeSummary: undefined | TChangeSummary;
}

Type Parameters

  • TChangeSummary

Properties

Properties

changeSummary: undefined | TChangeSummary

The change summary with the changes collected from the start of the previous run of the compute function until the start of this run.

The change summary is created by Options.createChangeSummary and the changes are collected by Options.willHandleChange.