You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to collect the decorated property names from a prototype without knowing the property names in advance?
It is a useful feature for an orm, ioc and other stuff.
Right know Reflect.getMetadataKeys(fn.prototype) returns an empty array. It would be useful to return the annotated property names if the second argument is undefined.
Maybe Reflect.getMetadataPropertyNames(fn.prototype)
Is there a way to collect the decorated property names from a prototype without knowing the property names in advance?
It is a useful feature for an orm, ioc and other stuff.
Right know
Reflect.getMetadataKeys(fn.prototype)
returns an empty array. It would be useful to return the annotated property names if the second argument is undefined.Maybe
Reflect.getMetadataPropertyNames(fn.prototype)
Example:
The text was updated successfully, but these errors were encountered: