Interface Args<TChangeSummary>

interface Args<TChangeSummary> {
    autorun: Disposable;
    changeSummary: undefined | TChangeSummary;
    isFirstRun: boolean;
}

Type Parameters

  • TChangeSummary

Properties

autorun: Disposable
changeSummary: undefined | TChangeSummary

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

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

isFirstRun: boolean