/** * 获取指定对象的所有包含原型链上的所有属性列表 * * @param obj * @param includePrototype 是否包含原型链上的属性,默认为true * @returns */ declare function getPropertyNames(obj: any, includePrototype?: boolean): string[]; export { getPropertyNames };