bupkis
    Preparing search index...

    Interface BaseParsedResult<Parts>

    The base structure for parsed assertion results.

    interface BaseParsedResult<Parts extends AssertionParts> {
        exactMatch?: boolean;
        parsedValues?: ParsedValues<Parts>;
        success: boolean;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    exactMatch?: boolean

    If success is true, then this will be true if all args matched the slots and none of those args infer as unknown or any.

    parsedValues?: ParsedValues<Parts>

    Present only if success is true. The parsed values mapped to the slots of an Assertion.

    success: boolean

    Whether the args were successfully parsed against the slots of an Assertion.