Function: isExpressionPair()
function isExpressionPair(
terms: readonly Readonly<Expression>[]
): terms is readonly [Expression, Expression];
Defined in: _internal/nullish-comparison.ts:78
Narrow a list of expressions to an exact two-term tuple.
Parametersโ
termsโ
readonly Readonly<Expression>[]
Returnsโ
terms is readonly [Expression, Expression]