deno_graph 0.108.1

Module graph analysis for deno
Documentation
make/make-example/0.0.1
-- deno.lock --
{
  "version": "3",
  "remote": {}
}

===

== FAST CHECK EMIT FAILED ==
error[missing-explicit-return-type]: missing explicit return type in the public API
 --> /mod.ts:3:13
  | 
3 |     action: (make: { error: (arg0: string) => void }, args: unknown) => {
  |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  | 
4 |         make.error("WRONG.");
  | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  | 
5 |         console.log(args)
  | ^^^^^^^^^^^^^^^^^^^^^^^^^
  | 
6 |     }
  | ^^^^^ this function is missing an explicit return type
  | 
  = hint: add an explicit return type of 'void' or 'never' to the function

  info: all functions in the public API must have an explicit return type
  info: function expressions without a return statement can have a return type of either 'void' or 'never'
  info: this function has no return statements, so a return type could not be inferred automatically
  docs: https://jsr.io/go/slow-type-missing-explicit-return-type