/** * 判断是否String对象 * * @param {object} obj 对象 * @return {boolean} */ declare const isString: (obj: any) => boolean; export default isString;