deno_graph 0.108.1

Module graph analysis for deno
Documentation
std/testing/0.201.0
-- deno.lock --
{
  "version": "3",
  "packages": {
    "specifiers": {
      "jsr:@std/assert@^0.201.0": "jsr:@std/assert@0.201.0",
      "jsr:@std/async@^0.201.0": "jsr:@std/async@0.201.0",
      "jsr:@std/fmt@^0.201.0": "jsr:@std/fmt@0.201.0"
    },
    "jsr": {
      "@std/assert@0.201.0": {
        "integrity": "74c03f73d0d364fece334b8d83a1629678e78e6231d7f06a07f4d7f0fe902366",
        "dependencies": [
          "jsr:@std/fmt@^0.201.0"
        ]
      },
      "@std/async@0.201.0": {
        "integrity": "64235c393ea046a872aafabbc5370d202e79bf69116fe3542cf1e229832c944e"
      },
      "@std/fmt@0.201.0": {
        "integrity": "9b211aeaae597e8b9e6bc87f4000c9b9cc8f44b43773e52c1aaa096540f1d780"
      }
    }
  },
  "remote": {}
}

===

== FAST CHECK EMIT FAILED ==
error[missing-explicit-return-type]: missing explicit return type in the public API
   --> /bdd.ts:497:11
    | 
497 | it.only = function itOnly<T>(...args: ItArgs<T>) {
    |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    | 
498 |   const options = itDefinition(...args);
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    | 
499 |   return it({
    | ^^^^^^^^^^^^^
    | 
500 |     ...options,
    | ^^^^^^^^^^^^^^^
    | 
501 |     only: true,
    | ^^^^^^^^^^^^^^^
    | 
502 |   });
    | ^^^^^
    | 
503 | };
    | ^ this function is missing an explicit return type
    | 
    = hint: add an explicit return type to the function

  info: all functions in the public API must have an explicit return type
  docs: https://jsr.io/go/slow-type-missing-explicit-return-type


error[missing-explicit-return-type]: missing explicit return type in the public API
   --> /bdd.ts:505:13
    | 
505 | it.ignore = function itIgnore<T>(...args: ItArgs<T>) {
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    | 
506 |   const options = itDefinition(...args);
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    | 
507 |   return it({
    | ^^^^^^^^^^^^^
    | 
508 |     ...options,
    | ^^^^^^^^^^^^^^^
    | 
509 |     ignore: true,
    | ^^^^^^^^^^^^^^^^^
    | 
510 |   });
    | ^^^^^
    | 
511 | };
    | ^ this function is missing an explicit return type
    | 
    = hint: add an explicit return type to the function

  info: all functions in the public API must have an explicit return type
  docs: https://jsr.io/go/slow-type-missing-explicit-return-type