// 类型声明// 很多第三方 模块有单独的声明模块 npm i --save-dev @types/lodashimport { camelCase } from 'lodash'// 单独为普通 js 添加声明// declare function camelCase(s: string): stringconst res = camelCase("hello typed")export {}