/** * 安全的数组方法,避免null */ export declare const getArray: (array: T[]) => T[]; /** * 安全的Object.keys方法,避免null */ export declare const getKeys: (obj: any) => string[];