@wessberg/type
Advanced tools
Comparing version 0.0.23 to 0.0.24
@@ -0,1 +1,10 @@ | ||
<a name="0.0.24"></a> | ||
## 0.0.24 (2017-08-19) | ||
* 0.0.24 ([c758670](https://github.com/wessberg/Type/commit/c758670)) | ||
* Added an 'any' type ([f23870a](https://github.com/wessberg/Type/commit/f23870a)) | ||
* Bumped version ([5cd93d0](https://github.com/wessberg/Type/commit/5cd93d0)) | ||
<a name="0.0.23"></a> | ||
@@ -2,0 +11,0 @@ ## 0.0.23 (2017-08-19) |
@@ -96,3 +96,3 @@ import { TypeKind } from "../type-kind/type-kind"; | ||
} | ||
export declare type Type = IStringType | IIndexType | INumberType | IArrayType | IReferenceType | IFunctionType | IIntersectionType | IUnionType | IParenthesizedType | IThisType | ITupleType | IStringEnumerationType | INumberEnumerationType | IBooleanType | IBooleanEnumerationType | IUndefinedType | INullType | INeverType | IObjectType | ISymbolType | IKeyofType | IVoidType | IPojoType; | ||
export declare type Type = IAnyType | IStringType | IIndexType | INumberType | IArrayType | IReferenceType | IFunctionType | IIntersectionType | IUnionType | IParenthesizedType | IThisType | ITupleType | IStringEnumerationType | INumberEnumerationType | IBooleanType | IBooleanEnumerationType | IUndefinedType | INullType | INeverType | IObjectType | ISymbolType | IKeyofType | IVoidType | IPojoType; | ||
export declare const typeStringified: string; |
@@ -118,4 +118,4 @@ export const typeStringified = ` | ||
export declare type Type = IStringType|IIndexType|INumberType|IArrayType|IReferenceType|IFunctionType|IIntersectionType|IUnionType|IParenthesizedType|IThisType|ITupleType|IStringEnumerationType|INumberEnumerationType|IBooleanType|IBooleanEnumerationType|IUndefinedType|INullType|INeverType|IObjectType|ISymbolType|IKeyofType|IVoidType|IPojoType; | ||
export declare type Type = IAnyType|IStringType|IIndexType|INumberType|IArrayType|IReferenceType|IFunctionType|IIntersectionType|IUnionType|IParenthesizedType|IThisType|ITupleType|IStringEnumerationType|INumberEnumerationType|IBooleanType|IBooleanEnumerationType|IUndefinedType|INullType|INeverType|IObjectType|ISymbolType|IKeyofType|IVoidType|IPojoType; | ||
`; | ||
//# sourceMappingURL=type.js.map |
@@ -96,3 +96,3 @@ import { TypeKind } from "../type-kind/type-kind"; | ||
} | ||
export declare type Type = IStringType | IIndexType | INumberType | IArrayType | IReferenceType | IFunctionType | IIntersectionType | IUnionType | IParenthesizedType | IThisType | ITupleType | IStringEnumerationType | INumberEnumerationType | IBooleanType | IBooleanEnumerationType | IUndefinedType | INullType | INeverType | IObjectType | ISymbolType | IKeyofType | IVoidType | IPojoType; | ||
export declare type Type = IAnyType | IStringType | IIndexType | INumberType | IArrayType | IReferenceType | IFunctionType | IIntersectionType | IUnionType | IParenthesizedType | IThisType | ITupleType | IStringEnumerationType | INumberEnumerationType | IBooleanType | IBooleanEnumerationType | IUndefinedType | INullType | INeverType | IObjectType | ISymbolType | IKeyofType | IVoidType | IPojoType; | ||
export declare const typeStringified: string; |
@@ -129,5 +129,5 @@ (function (factory) { | ||
export declare type Type = IStringType|IIndexType|INumberType|IArrayType|IReferenceType|IFunctionType|IIntersectionType|IUnionType|IParenthesizedType|IThisType|ITupleType|IStringEnumerationType|INumberEnumerationType|IBooleanType|IBooleanEnumerationType|IUndefinedType|INullType|INeverType|IObjectType|ISymbolType|IKeyofType|IVoidType|IPojoType; | ||
export declare type Type = IAnyType|IStringType|IIndexType|INumberType|IArrayType|IReferenceType|IFunctionType|IIntersectionType|IUnionType|IParenthesizedType|IThisType|ITupleType|IStringEnumerationType|INumberEnumerationType|IBooleanType|IBooleanEnumerationType|IUndefinedType|INullType|INeverType|IObjectType|ISymbolType|IKeyofType|IVoidType|IPojoType; | ||
`; | ||
}); | ||
//# sourceMappingURL=type.js.map |
{ | ||
"name": "@wessberg/type", | ||
"version": "0.0.23", | ||
"version": "0.0.24", | ||
"description": "Type signatures and enums for model types.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
57737