Source

constants.ts

/**
 * @description Enum containing metadata keys used for reflection
 * @summary Holds the constant keys used in the reflection system for accessing metadata
 * @enum {string}
 * @readonly
 * @property {string} TYPE - Key for accessing type metadata, value is "design:type"
 * @memberOf module:reflection
 */
export enum ReflectionKeys {
  TYPE = "design:type",
}