Interface CheckResult<Inputs>

CheckResult represents the results of a call to ResourceProvider.check.

interface CheckResult<Inputs> {
    failures?: dynamic.CheckFailure[];
    inputs?: Inputs;
}

Type Parameters

  • Inputs = any

Properties

Properties

failures?: dynamic.CheckFailure[]

Any validation failures that occurred.

inputs?: Inputs

The inputs to use, if any.

Generated using TypeDoc