/** * 类似 `_.get`,根据 `path` 获取安全值 * jsperf: https://jsperf.com/es-deep-getttps://jsperf.com/es-deep-get * * @param obj 数据源,无效时直接返回 `defaultValue` 值 * @param path 若 `null`、`[]`、未定义及未找到时返回 `defaultValue` 值 * @param defaultValue 默认值 */ export declare function deepGet(obj: any, path: string | string[], defaultValue?: any): any; export declare function deepCopy(obj: any): any; /** 复制内容至剪贴板 */ export declare function copy(value: string): Promise;