WXL
4 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
node_modules/@types/node/assert.d.ts
@@ -1,8 +1,3 @@
/**
 * The `node:assert` module provides a set of assertion functions for verifying
 * invariants.
 * @see [source](https://github.com/nodejs/node/blob/v25.x/lib/assert.js)
 */
declare module "node:assert" {
    import strict = require("node:assert/strict");
    /**
@@ -253,10 +248,10 @@
         * import assert from 'node:assert/strict';
         *
         * // Using `assert()` works the same:
         * assert(0);
         * assert(2 + 2 > 5);;
         * // AssertionError: The expression evaluated to a falsy value:
         * //
         * //   assert(0)
         * //   assert(2 + 2 > 5)
         * ```
         * @since v0.1.21
         */