From 5468fb8ece5758f514c8d8d74615323bd0fab3c6 Mon Sep 17 00:00:00 2001 From: Jesse Jackson Date: Fri, 8 Dec 2023 20:56:09 -0600 Subject: [PATCH] fix(assert): export parameter type alias for `assertArrayIncludes()` (#3917) --- assert/assert_array_includes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assert/assert_array_includes.ts b/assert/assert_array_includes.ts index 06bcab06d..48670702c 100644 --- a/assert/assert_array_includes.ts +++ b/assert/assert_array_includes.ts @@ -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 = ArrayLike & object; +export type ArrayLikeArg = ArrayLike & object; /** * Make an assertion that `actual` includes the `expected` values. If not then