BUPKIS
    Preparing search index...

    Type Alias AssertionImplFnAsync<Parts>

    AssertionImplFnAsync: (
        ...values: ParsedValues<Parts>,
    ) =>
        | AssertionImplFnReturnType<Parts>
        | Promise<AssertionImplFnReturnType<Parts>>

    The implementation of an assertion as an async function.

    An asynchronous implementation function that validates assertion arguments and returns a Promise resolving to validation results. The function receives parsed values from the assertion parts and can return various types indicating validation success or failure.

    Type Parameters

    • Parts extends AssertionParts

      The assertion parts defining the structure

    Type Declaration