import { Reflect } from "https://deno.land/x/alosaur@v0.30.0/src/injection/reflect.ts";
const { getOwnMetadata } = Reflect;
Gets the metadata value for the provided metadata key on the target object.
Examples
class Example {
}
class Example { }
// constructor result = Reflect.getOwnMetadata("custom:annotation", Example);
Gets the metadata value for the provided metadata key on the target object.
Examples
class Example {
// property declarations are not part of ES6, though they are valid in TypeScript:
// static staticProperty;
// property;
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.getOwnMetadata("custom:annotation", Example, "staticProperty");
// property (on prototype)
result = Reflect.getOwnMetadata("custom:annotation", Example.prototype, "property");
// method (on constructor)
result = Reflect.getOwnMetadata("custom:annotation", Example, "staticMethod");
// method (on prototype)
result = Reflect.getOwnMetadata("custom:annotation", Example.prototype, "method");