/** * 返回对象所有的 key 数组 * * @category Utils * @param obj : 需要获取 key 的对象 * @returns : 返回所有 key 组成的数组 */ export declare const getObjectKeys: (obj: any) => string[];