proposit-core
    Preparing search index...

    Type Alias TPopulateResult<TDerivationPremise>

    Result returned by a populateFrom* factory. kind === 'populated' means the factory built a new antecedent; kind === 'no-op' means the factory did not act (either zero connections, or the target premise was already populated).

    type TPopulateResult<
        TDerivationPremise extends
            TCoreDerivationPremise = TCoreDerivationPremise,
    > = {
        kind: "populated"
        | "no-op";
        resolved?: readonly TViolation[];
        state: TDerivationPremise;
    }

    Type Parameters

    Index

    Properties

    Properties

    kind: "populated" | "no-op"
    resolved?: readonly TViolation[]