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