Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Inject

import { Inject } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts";

Decorator

Defines the context for injection to a property. This is used for manual injections, although, all injections should be done through the constructor of a class.

@Inject(injectableObject?: any) Target: property/method parameter

const Inject: () => Function;