@wessberg/type
Advanced tools
Comparing version 0.0.52 to 0.0.53
@@ -0,1 +1,10 @@ | ||
<a name="0.0.53"></a> | ||
## 0.0.53 (2017-08-27) | ||
* 0.0.53 ([067919c](https://github.com/wessberg/Type/commit/067919c)) | ||
* Bumped version ([608ab82](https://github.com/wessberg/Type/commit/608ab82)) | ||
* Updated a type ([e75788d](https://github.com/wessberg/Type/commit/e75788d)) | ||
<a name="0.0.52"></a> | ||
@@ -2,0 +11,0 @@ ## 0.0.52 (2017-08-27) |
export declare enum FormattedObjectLiteralPropertyKind { | ||
SHORTHAND_ASSIGNMENT = "SHORTHAND_ASSIGNMENT", | ||
PROPERTY_ASSIGNMENT = "PROPERTY_ASSIGNMENT", | ||
SPREAD_ASSIGNMENT = "SPREAD_ASSIGNMENT", | ||
} |
@@ -5,3 +5,4 @@ export var FormattedObjectLiteralPropertyKind; | ||
FormattedObjectLiteralPropertyKind["PROPERTY_ASSIGNMENT"] = "PROPERTY_ASSIGNMENT"; | ||
FormattedObjectLiteralPropertyKind["SPREAD_ASSIGNMENT"] = "SPREAD_ASSIGNMENT"; | ||
})(FormattedObjectLiteralPropertyKind || (FormattedObjectLiteralPropertyKind = {})); | ||
//# sourceMappingURL=formatted-object-literal-property-kind.js.map |
@@ -11,3 +11,2 @@ import { FormattedExpression, IFormattedExpression } from "../../formatted-expression/i-formatted-expression"; | ||
name: FormattedPropertyName; | ||
isRestSpread: boolean; | ||
} | ||
@@ -21,2 +20,6 @@ export interface IFormattedObjectLiteralShortHandAssignmentProperty extends IFormattedObjectLiteralProperty { | ||
} | ||
export declare type FormattedObjectLiteralProperty = IFormattedObjectLiteralShortHandAssignmentProperty | IFormattedObjectLiteralPropertyAssignmentProperty | IFormattedMethod | IFormattedAccessor; | ||
export interface IFormattedObjectLiteralSpreadAssignmentProperty extends IFormattedObjectLiteralProperty { | ||
kind: FormattedObjectLiteralPropertyKind.SPREAD_ASSIGNMENT; | ||
expression: FormattedExpression; | ||
} | ||
export declare type FormattedObjectLiteralProperty = IFormattedObjectLiteralShortHandAssignmentProperty | IFormattedObjectLiteralPropertyAssignmentProperty | IFormattedObjectLiteralSpreadAssignmentProperty | IFormattedMethod | IFormattedAccessor; |
export declare enum FormattedObjectLiteralPropertyKind { | ||
SHORTHAND_ASSIGNMENT = "SHORTHAND_ASSIGNMENT", | ||
PROPERTY_ASSIGNMENT = "PROPERTY_ASSIGNMENT", | ||
SPREAD_ASSIGNMENT = "SPREAD_ASSIGNMENT", | ||
} |
@@ -16,4 +16,5 @@ (function (factory) { | ||
FormattedObjectLiteralPropertyKind["PROPERTY_ASSIGNMENT"] = "PROPERTY_ASSIGNMENT"; | ||
FormattedObjectLiteralPropertyKind["SPREAD_ASSIGNMENT"] = "SPREAD_ASSIGNMENT"; | ||
})(FormattedObjectLiteralPropertyKind = exports.FormattedObjectLiteralPropertyKind || (exports.FormattedObjectLiteralPropertyKind = {})); | ||
}); | ||
//# sourceMappingURL=formatted-object-literal-property-kind.js.map |
@@ -11,3 +11,2 @@ import { FormattedExpression, IFormattedExpression } from "../../formatted-expression/i-formatted-expression"; | ||
name: FormattedPropertyName; | ||
isRestSpread: boolean; | ||
} | ||
@@ -21,2 +20,6 @@ export interface IFormattedObjectLiteralShortHandAssignmentProperty extends IFormattedObjectLiteralProperty { | ||
} | ||
export declare type FormattedObjectLiteralProperty = IFormattedObjectLiteralShortHandAssignmentProperty | IFormattedObjectLiteralPropertyAssignmentProperty | IFormattedMethod | IFormattedAccessor; | ||
export interface IFormattedObjectLiteralSpreadAssignmentProperty extends IFormattedObjectLiteralProperty { | ||
kind: FormattedObjectLiteralPropertyKind.SPREAD_ASSIGNMENT; | ||
expression: FormattedExpression; | ||
} | ||
export declare type FormattedObjectLiteralProperty = IFormattedObjectLiteralShortHandAssignmentProperty | IFormattedObjectLiteralPropertyAssignmentProperty | IFormattedObjectLiteralSpreadAssignmentProperty | IFormattedMethod | IFormattedAccessor; |
{ | ||
"name": "@wessberg/type", | ||
"version": "0.0.52", | ||
"version": "0.0.53", | ||
"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
163270
2510