/** * 类型检测库,弥补typeof的问题 * * @param {Any} x * @param {Boolean} strict 是否严格模式 * @return {String} number / array / function / ... * * 参考:https://github.com/jsmini/type */ declare const type: (x: any, strict?: boolean | undefined) => any; export default type;