ts-toolbelt
Advanced tools
Comparing version 1.0.52 to 1.0.53
@@ -12,2 +12,12 @@ import * as Test from './Test'; | ||
import * as U from './Union/_api'; | ||
export { Test, A, B, C, F, I, N, O, S, T, U, }; | ||
import * as Any from './Any/_api'; | ||
import * as Boolean from './Boolean/_api'; | ||
import * as Class from './Class/_api'; | ||
import * as Function from './Function/_api'; | ||
import * as Iteration from './Iteration/_api'; | ||
import * as Number from './Number/_api'; | ||
import * as Object from './Object/_api'; | ||
import * as String from './String/_api'; | ||
import * as Tuple from './Tuple/_api'; | ||
import * as Union from './Union/_api'; | ||
export { Test, A, Any, B, Boolean, C, Class, F, Function, I, Iteration, N, Number, O, Object, S, String, T, Tuple, U, Union, }; |
{ | ||
"name": "ts-toolbelt", | ||
"version": "1.0.52", | ||
"version": "1.0.53", | ||
"license": "Apache-2.0", | ||
@@ -5,0 +5,0 @@ "author": "Pierre-Antoine Mills", |
@@ -112,2 +112,3 @@ <p align="center"> | ||
import {A, B, C, F, I, N, O, S, T, U} from 'ts-toolbelt' | ||
// Wonder what these letters mean? Check the docs below | ||
@@ -127,2 +128,6 @@ // Merge two `object` together | ||
#### You can either use it like | ||
When you are going to combine types together | ||
```ts | ||
@@ -132,2 +137,18 @@ import {A, B, C, F, I, N, O, S, T, U} from 'ts-toolbelt' | ||
#### Or in its more explicit way | ||
When you are just using simple type operations | ||
```ts | ||
import {Any, Boolean, Class, Function, Iteration, Number, Object, String, Tuple, Union} from 'ts-toolbelt' | ||
``` | ||
#### Or in its most compact way | ||
When you want to keep them in a single namespace | ||
```ts | ||
import tb from 'ts-toolbelt' | ||
``` | ||
#### Internal Docs | ||
@@ -134,0 +155,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
116204
2364
254