Helper to introspect the public available property names.
the instance to introspect.
skip additional object property names that were not part of the original declare().
declare()
property names
const Clazz = declare({ firstName: "", lastName: ""});const instance = new Clazz();const names = propertyNames(instance);//-> names === ["firstName","lastName"] Copy
const Clazz = declare({ firstName: "", lastName: ""});const instance = new Clazz();const names = propertyNames(instance);//-> names === ["firstName","lastName"]
Helper to introspect the public available property names.