ts-helpers:各种打字稿助手功能和实用程序类型

时间:2024-03-01 19:43:55
【文件属性】:

文件名称:ts-helpers:各种打字稿助手功能和实用程序类型

文件大小:147KB

文件格式:ZIP

更新时间:2024-03-01 19:43:55

TypeScript

ts-helpers 各种打字稿助手功能和实用程序类型 产品特点 noUncheckedIndexedAccess支持 noUncheckedIndexedAccess编译器标志是史诗般的,但仍有改进的空间。 例如,以下问题: if ( foo . length > 2 ) { const bar : string = foo [ 1 ] //error: string | undefined not assignable to string } 可以用lengthGreaterThan解决 import { lengthGreaterThan } from '@detachhead/ts-helpers' if ( lengthGreaterThan ( foo , 2 ) ) { const bar : string = foo [ 1 ] //no error, foo i


【文件预览】:
ts-helpers-master
----.gitignore(46B)
----package.json(1KB)
----package-lock.json(512KB)
----src()
--------misc.ts(711B)
--------utilityTypes.ts(3KB)
--------types()
--------__tests__()
--------main.ts(146B)
----jest.config.js(253B)
----tsconfig.json(6KB)
----.github()
--------workflows()
----.prettierrc.json(109B)
----.eslintrc.js(708B)
----.idea()
--------codeStyles()
--------inspectionProfiles()
--------prettier.xml(281B)
--------jsLinters()
----readme.md(941B)
----tsconfig.build.json(96B)

网友评论