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

Param

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

Decorator

Defines a injection for a parameter in a HTTP handler, manually. This is not recommended since you have to manually specify what type of injection you are looking for. Instead, use decorators for each injection type.

@Param(paramType, name) Target: Method parameter

const Param: (paramType: DI.InjectionTypes) => Function;