Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno_nest/mod.ts>Reflect.metadata

Refer to nestjs to realize some common functions for Deno, support hono and oak
Go to Latest
function Reflect.metadata
import { Reflect } from "https://deno.land/x/deno_nest@v3.7.1/mod.ts";
const { metadata } = Reflect;

A default metadata decorator factory that can be used on a class, class member, or parameter.

Examples

// constructor

Parameters

metadataKey: any

The key for the metadata entry.

metadataValue: any

The value for the metadata entry.