Documentation
    Preparing search index...

    Interface NegatedAssertionFunction<AssertedType>

    interface NegatedAssertionFunction<AssertedType> {
        assert<Value>(
            value: Value,
            message?: string,
        ): asserts value is Exclude<Value, AssertedType>;
        <Value>(value: Value): value is Exclude<Value, AssertedType>;
    }

    Type Parameters

    • AssertedType
    Index