common-types
Advanced tools
Comparing version 1.3.3 to 1.3.4
@@ -50,2 +50,8 @@ /** | ||
export declare type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void; | ||
export interface ReflectionProperty<T> { | ||
get: () => T; | ||
set: (value: any) => void; | ||
enumerable: boolean; | ||
configurable: boolean; | ||
} | ||
export interface IVerboseError { | ||
@@ -52,0 +58,0 @@ /** A short and unique identifier for the error; typically would not have any spaces in it */ |
{ | ||
"name": "common-types", | ||
"version": "1.3.3", | ||
"version": "1.3.4", | ||
"description": "Common types not included in Typescript", | ||
@@ -5,0 +5,0 @@ "main": "lib/common-types.js", |
@@ -60,3 +60,10 @@ import chalk = require('chalk'); | ||
export type ClassDecorator = <TFunction extends Function>(target: TFunction) => TFunction | void; | ||
export interface ReflectionProperty<T> { | ||
get: () => T; | ||
set: (value: any) => void; | ||
enumerable: boolean; | ||
configurable: boolean; | ||
} | ||
// ERRORS | ||
@@ -63,0 +70,0 @@ export interface IVerboseError { |
Sorry, the diff of this file is not supported yet
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
16476
345