Skip to main content
Module

x/oak_nest/mod.ts>SetMetadata

Refer to nestjs to realize some common functions for Deno
Go to Latest
function SetMetadata
import { SetMetadata } from "https://deno.land/x/oak_nest@v1.15.1/mod.ts";

Decorator that assigns metadata to the class/function using the specified key.

Requires two parameters:

  • key - a value defining the key under which the metadata is stored
  • value - metadata to be associated with key

This metadata can be reflected using the Reflector class.

Example: @SetMetadata('roles', ['admin'])

Type Parameters

optional
K = string
optional
V = any

Parameters

metadataKey: K
metadataValue: V