fix(assert): export parameter type alias for assertArrayIncludes() (#3917)

This commit is contained in:
Jesse Jackson 2023-12-08 20:56:09 -06:00 committed by GitHub
parent 7e0c9debb1
commit 5468fb8ece
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ import { format } from "./_format.ts";
import { AssertionError } from "./assertion_error.ts";
/** An array-like object (`Array`, `Uint8Array`, `NodeList`, etc.) that is not a string */
type ArrayLikeArg<T> = ArrayLike<T> & object;
export type ArrayLikeArg<T> = ArrayLike<T> & object;
/**
* Make an assertion that `actual` includes the `expected` values. If not then