common-types
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -16,2 +16,5 @@ | ||
/** A function for sorting JS arrays */ | ||
export type SortingFunction = (a: any, b: any) => number; | ||
/** a string of the format: "YYYY-MM-DD" */ | ||
@@ -27,1 +30,12 @@ export type datestring = string; | ||
export type epoch = number; | ||
export enum STAGE { | ||
prod = 'prod', | ||
stage = 'stage', | ||
test = 'test', | ||
dev = 'dev', | ||
production = prod, | ||
staging = stage, | ||
testing = test, | ||
development = dev | ||
} |
{ | ||
"name": "common-types", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Common types not included in Typescript", | ||
@@ -5,0 +5,0 @@ "main": "common-types.ts", |
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
10464
33