# 快速上手

# 安装

npm install -S typescript-lodash

# 使用

按模块批量导入

import { string } from "typescript-lodash"

type IString = "今天很高兴"

type TypeExample = string.Split<IString, "">

// 得到
type TypeResult = ["今", "天", "很", "高", "兴"]

整体导入

import * as t from 'typescript-lodash'

type TypeExample = t.string.Split<"今天很高兴", "">

分模块导入

import { Split } from 'typescript-lodash/lib'

type TypeExample = Split<"今天很高兴", "">

详细使用请参考:文档

注意

使用 Typescript-Lodash 版本 <=0.1.0 时请确保你项目的 TypeScript 版本 >= 4.5.0。

使用 Typescript-Lodash 版本 >=0.2.0 时请确保你项目的 TypeScript 版本 >= 4.8.0。

最后更新时间: 12/6/2022, 4:26:59 AM