@wessberg/type
Advanced tools
Comparing version 0.0.34 to 0.0.35
@@ -0,1 +1,10 @@ | ||
<a name="0.0.35"></a> | ||
## 0.0.35 (2017-08-27) | ||
* 0.0.35 ([b375d06](https://github.com/wessberg/Type/commit/b375d06)) | ||
* Added an ObjectLiteral type ([de1a3ae](https://github.com/wessberg/Type/commit/de1a3ae)) | ||
* Bumped version ([df82afc](https://github.com/wessberg/Type/commit/df82afc)) | ||
<a name="0.0.34"></a> | ||
@@ -2,0 +11,0 @@ ## 0.0.34 (2017-08-27) |
@@ -12,2 +12,3 @@ export declare enum FormattedExpressionKind { | ||
BOOLEAN_LITERAL = "BOOLEAN_LITERAL", | ||
OBJECT_LITERAL = "OBJECT_LITERAL", | ||
REGEX_LITERAL = "REGEX_LITERAL", | ||
@@ -14,0 +15,0 @@ NOT_IMPLEMENTED = "NOT_IMPLEMENTED", |
@@ -13,2 +13,3 @@ export var FormattedExpressionKind; | ||
FormattedExpressionKind["BOOLEAN_LITERAL"] = "BOOLEAN_LITERAL"; | ||
FormattedExpressionKind["OBJECT_LITERAL"] = "OBJECT_LITERAL"; | ||
FormattedExpressionKind["REGEX_LITERAL"] = "REGEX_LITERAL"; | ||
@@ -15,0 +16,0 @@ FormattedExpressionKind["NOT_IMPLEMENTED"] = "NOT_IMPLEMENTED"; |
@@ -14,2 +14,3 @@ import { FormattedExpressionKind } from "../formatted-expression-kind/formatted-expression-kind"; | ||
import { IFormattedDecorator } from "../decorator/i-formatted-decorator"; | ||
import { IFormattedObjectLiteral } from "../literal/object-literal/i-formatted-object-literal"; | ||
export interface IFormattedExpression { | ||
@@ -20,2 +21,2 @@ expressionKind: FormattedExpressionKind; | ||
} | ||
export declare type FormattedExpression = IFormattedDecorator | IFormattedClass | FormattedHeritage | IFormattedCallExpression | IFormattedArguments | IFormattedStringLiteral | IFormattedNumberLiteral | IFormattedBooleanLiteral | IFormattedRegexLiteral | IFormattedPropertyAccessExpression | IFormattedIdentifier | IFormattedNotImplemented; | ||
export declare type FormattedExpression = IFormattedDecorator | IFormattedClass | FormattedHeritage | IFormattedCallExpression | IFormattedArguments | IFormattedObjectLiteral | IFormattedStringLiteral | IFormattedNumberLiteral | IFormattedBooleanLiteral | IFormattedRegexLiteral | IFormattedPropertyAccessExpression | IFormattedIdentifier | IFormattedNotImplemented; |
@@ -9,2 +9,3 @@ export * from "./expression/arguments/i-formatted-arguments"; | ||
export * from "./expression/identifier/i-formatted-identifier"; | ||
export * from "./expression/literal/object-literal/i-formatted-object-literal"; | ||
export * from "./expression/literal/boolean-literal/i-formatted-boolean-literal"; | ||
@@ -11,0 +12,0 @@ export * from "./expression/literal/number-literal/i-formatted-number-literal"; |
@@ -12,2 +12,3 @@ export declare enum FormattedExpressionKind { | ||
BOOLEAN_LITERAL = "BOOLEAN_LITERAL", | ||
OBJECT_LITERAL = "OBJECT_LITERAL", | ||
REGEX_LITERAL = "REGEX_LITERAL", | ||
@@ -14,0 +15,0 @@ NOT_IMPLEMENTED = "NOT_IMPLEMENTED", |
@@ -24,2 +24,3 @@ (function (factory) { | ||
FormattedExpressionKind["BOOLEAN_LITERAL"] = "BOOLEAN_LITERAL"; | ||
FormattedExpressionKind["OBJECT_LITERAL"] = "OBJECT_LITERAL"; | ||
FormattedExpressionKind["REGEX_LITERAL"] = "REGEX_LITERAL"; | ||
@@ -26,0 +27,0 @@ FormattedExpressionKind["NOT_IMPLEMENTED"] = "NOT_IMPLEMENTED"; |
@@ -14,2 +14,3 @@ import { FormattedExpressionKind } from "../formatted-expression-kind/formatted-expression-kind"; | ||
import { IFormattedDecorator } from "../decorator/i-formatted-decorator"; | ||
import { IFormattedObjectLiteral } from "../literal/object-literal/i-formatted-object-literal"; | ||
export interface IFormattedExpression { | ||
@@ -20,2 +21,2 @@ expressionKind: FormattedExpressionKind; | ||
} | ||
export declare type FormattedExpression = IFormattedDecorator | IFormattedClass | FormattedHeritage | IFormattedCallExpression | IFormattedArguments | IFormattedStringLiteral | IFormattedNumberLiteral | IFormattedBooleanLiteral | IFormattedRegexLiteral | IFormattedPropertyAccessExpression | IFormattedIdentifier | IFormattedNotImplemented; | ||
export declare type FormattedExpression = IFormattedDecorator | IFormattedClass | FormattedHeritage | IFormattedCallExpression | IFormattedArguments | IFormattedObjectLiteral | IFormattedStringLiteral | IFormattedNumberLiteral | IFormattedBooleanLiteral | IFormattedRegexLiteral | IFormattedPropertyAccessExpression | IFormattedIdentifier | IFormattedNotImplemented; |
@@ -9,2 +9,3 @@ export * from "./expression/arguments/i-formatted-arguments"; | ||
export * from "./expression/identifier/i-formatted-identifier"; | ||
export * from "./expression/literal/object-literal/i-formatted-object-literal"; | ||
export * from "./expression/literal/boolean-literal/i-formatted-boolean-literal"; | ||
@@ -11,0 +12,0 @@ export * from "./expression/literal/number-literal/i-formatted-number-literal"; |
{ | ||
"name": "@wessberg/type", | ||
"version": "0.0.34", | ||
"version": "0.0.35", | ||
"description": "Type signatures and enums for model types.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
109055
166
1753