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