mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
fix(assert): export parameter type alias for assertArrayIncludes()
(#3917)
This commit is contained in:
parent
7e0c9debb1
commit
5468fb8ece
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user