aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-types/assert.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/bun-types/assert.d.ts')
-rw-r--r--packages/bun-types/assert.d.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/bun-types/assert.d.ts b/packages/bun-types/assert.d.ts
index ae3b54ff2..658e7df5b 100644
--- a/packages/bun-types/assert.d.ts
+++ b/packages/bun-types/assert.d.ts
@@ -931,7 +931,11 @@ declare module "assert" {
* instance of an `Error` then it will be thrown instead of the `AssertionError`.
*/
// FIXME: assert.doesNotMatch is typed, but not in the browserify polyfill?
- // function doesNotMatch(value: string, regExp: RegExp, message?: string | Error): void;
+ function doesNotMatch(
+ value: string,
+ regExp: RegExp,
+ message?: string | Error,
+ ): void;
const strict: Omit<
typeof assert,