Skip to main content
Module

x/momentum/di/shims/reflect.ts>Reflect.getMetadataKeys

Momentum is an open-source framework for building server-side Deno applications in TypeScript. It provides the paradigms and design patterns to guide developers to create robust, scalable, and enterprise-grade applications.
Latest
function Reflect.getMetadataKeys
import { Reflect } from "https://deno.land/x/momentum@v0.8.2/di/shims/reflect.ts";
const { getMetadataKeys } = Reflect;

Gets the metadata keys defined on the target object or its prototype chain.

Examples

class Example { }

// constructor result = Reflect.getMetadataKeys(Example);

Parameters

target: any

The target object on which the metadata is defined.

Returns

any[]

An array of unique metadata keys.

Gets the metadata keys defined on the target object or its prototype chain.

Examples

class Example { // property declarations are not part of ES6, though they are valid in TypeScript: // static staticProperty; // property;

static staticMethod(p) { } method(p) { } }

// property (on constructor)
result = Reflect.getMetadataKeys(Example, "staticProperty");

// property (on prototype)
result = Reflect.getMetadataKeys(Example.prototype, "property");

// method (on constructor)
result = Reflect.getMetadataKeys(Example, "staticMethod");

// method (on prototype)
result = Reflect.getMetadataKeys(Example.prototype, "method");

Parameters

target: any

The target object on which the metadata is defined.

propertyKey: string | symbol

The property key for the target.

Returns

any[]

An array of unique metadata keys.