(
metadataKey: string,
metadataValue: any,
)
| 179 | } |
| 180 | |
| 181 | metadata( |
| 182 | metadataKey: string, |
| 183 | metadataValue: any, |
| 184 | ): { |
| 185 | (target: Function): void; |
| 186 | (target: Object, targetKey: string | symbol): void; |
| 187 | } { |
| 188 | metadataKey = this.getMetadataKey(metadataKey); |
| 189 | return Reflect.metadata(metadataKey, metadataValue); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | export const Reflector = new NamespacedReflect('loopback'); |
no test coverage detected