@wessberg/type
Advanced tools
Comparing version 0.0.32 to 0.0.33
@@ -0,1 +1,10 @@ | ||
<a name="0.0.33"></a> | ||
## 0.0.33 (2017-08-27) | ||
* 0.0.33 ([3fabb16](https://github.com/wessberg/Type/commit/3fabb16)) | ||
* Added a decorator expression ([3837463](https://github.com/wessberg/Type/commit/3837463)) | ||
* Bumped version ([f357d81](https://github.com/wessberg/Type/commit/f357d81)) | ||
<a name="0.0.32"></a> | ||
@@ -2,0 +11,0 @@ ## 0.0.32 (2017-08-27) |
export declare enum FormattedExpressionKind { | ||
EXPRESSION = "EXPRESSION", | ||
DECORATOR = "DECORATOR", | ||
IMPLEMENTS = "IMPLEMENTS", | ||
@@ -4,0 +5,0 @@ EXTENDS = "EXTENDS", |
export var FormattedExpressionKind; | ||
(function (FormattedExpressionKind) { | ||
FormattedExpressionKind["EXPRESSION"] = "EXPRESSION"; | ||
FormattedExpressionKind["DECORATOR"] = "DECORATOR"; | ||
FormattedExpressionKind["IMPLEMENTS"] = "IMPLEMENTS"; | ||
@@ -5,0 +6,0 @@ FormattedExpressionKind["EXTENDS"] = "EXTENDS"; |
@@ -13,2 +13,3 @@ import { FormattedExpressionKind } from "../formatted-expression-kind/formatted-expression-kind"; | ||
import { FormattedHeritage } from "../heritage/i-formatted-heritage"; | ||
import { IFormattedDecorator } from "../decorator/i-formatted-decorator"; | ||
export interface IFormattedExpression { | ||
@@ -19,2 +20,2 @@ expressionKind: FormattedExpressionKind; | ||
} | ||
export declare type FormattedExpression = IFormattedClass | FormattedHeritage | IFormattedCallExpression | IFormattedArguments | IFormattedStringLiteral | IFormattedNumberLiteral | IFormattedBooleanLiteral | IFormattedRegexLiteral | IFormattedPropertyAccessExpression | IFormattedIdentifier | IFormattedNotImplemented; | ||
export declare type FormattedExpression = IFormattedDecorator | IFormattedClass | FormattedHeritage | IFormattedCallExpression | IFormattedArguments | IFormattedStringLiteral | IFormattedNumberLiteral | IFormattedBooleanLiteral | IFormattedRegexLiteral | IFormattedPropertyAccessExpression | IFormattedIdentifier | IFormattedNotImplemented; |
export * from "./expression/arguments/i-formatted-arguments"; | ||
export * from "./expression/decorator/i-formatted-decorator"; | ||
export * from "./expression/call-expression/i-formatted-call-expression"; | ||
@@ -3,0 +4,0 @@ export * from "./expression/class/i-formatted-class"; |
export declare enum FormattedExpressionKind { | ||
EXPRESSION = "EXPRESSION", | ||
DECORATOR = "DECORATOR", | ||
IMPLEMENTS = "IMPLEMENTS", | ||
@@ -4,0 +5,0 @@ EXTENDS = "EXTENDS", |
@@ -15,2 +15,3 @@ (function (factory) { | ||
FormattedExpressionKind["EXPRESSION"] = "EXPRESSION"; | ||
FormattedExpressionKind["DECORATOR"] = "DECORATOR"; | ||
FormattedExpressionKind["IMPLEMENTS"] = "IMPLEMENTS"; | ||
@@ -17,0 +18,0 @@ FormattedExpressionKind["EXTENDS"] = "EXTENDS"; |
@@ -13,2 +13,3 @@ import { FormattedExpressionKind } from "../formatted-expression-kind/formatted-expression-kind"; | ||
import { FormattedHeritage } from "../heritage/i-formatted-heritage"; | ||
import { IFormattedDecorator } from "../decorator/i-formatted-decorator"; | ||
export interface IFormattedExpression { | ||
@@ -19,2 +20,2 @@ expressionKind: FormattedExpressionKind; | ||
} | ||
export declare type FormattedExpression = IFormattedClass | FormattedHeritage | IFormattedCallExpression | IFormattedArguments | IFormattedStringLiteral | IFormattedNumberLiteral | IFormattedBooleanLiteral | IFormattedRegexLiteral | IFormattedPropertyAccessExpression | IFormattedIdentifier | IFormattedNotImplemented; | ||
export declare type FormattedExpression = IFormattedDecorator | IFormattedClass | FormattedHeritage | IFormattedCallExpression | IFormattedArguments | IFormattedStringLiteral | IFormattedNumberLiteral | IFormattedBooleanLiteral | IFormattedRegexLiteral | IFormattedPropertyAccessExpression | IFormattedIdentifier | IFormattedNotImplemented; |
export * from "./expression/arguments/i-formatted-arguments"; | ||
export * from "./expression/decorator/i-formatted-decorator"; | ||
export * from "./expression/call-expression/i-formatted-call-expression"; | ||
@@ -3,0 +4,0 @@ export * from "./expression/class/i-formatted-class"; |
{ | ||
"name": "@wessberg/type", | ||
"version": "0.0.32", | ||
"version": "0.0.33", | ||
"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
105962
160
1717