@types/env-ci
Advanced tools
Comparing version 3.1.0 to 3.1.1
@@ -13,4 +13,4 @@ // Type definitions for env-ci 3.1 | ||
interface Options { | ||
env?: { [envVar: string]: any }; | ||
cwd?: string; | ||
env?: { [envVar: string]: any } | undefined; | ||
cwd?: string | undefined; | ||
} | ||
@@ -44,4 +44,4 @@ | ||
isCi: false; | ||
branch?: string; | ||
commit?: string; | ||
branch?: string | undefined; | ||
commit?: string | undefined; | ||
} | ||
@@ -57,3 +57,3 @@ | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
@@ -64,5 +64,5 @@ buildUrl: string; | ||
jobUrl: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
slug: string; | ||
@@ -87,3 +87,3 @@ root: string; | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
@@ -100,9 +100,9 @@ buildUrl: string; | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
buildUrl: string; | ||
branch: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
slug: string; | ||
@@ -115,7 +115,7 @@ } | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
buildUrl: string; | ||
branch?: string; | ||
pr?: string; | ||
branch?: string | undefined; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
@@ -131,7 +131,7 @@ slug: string; | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
branch: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
slug: string; | ||
@@ -148,7 +148,7 @@ root: string; | ||
commit: string; | ||
tag?: string; | ||
branch?: string; | ||
pr?: string; | ||
tag?: string | undefined; | ||
branch?: string | undefined; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
slug: string; | ||
@@ -161,3 +161,3 @@ } | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
@@ -168,3 +168,3 @@ buildUrl: string; | ||
branch: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
@@ -192,5 +192,5 @@ slug: string; | ||
branch: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
slug: string; | ||
@@ -214,9 +214,9 @@ root: string; | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
branch: string; | ||
job: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
slug: string; | ||
@@ -229,3 +229,3 @@ } | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
@@ -247,5 +247,5 @@ buildUrl: string; | ||
buildUrl: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
root: string; | ||
@@ -258,4 +258,4 @@ } | ||
commit: string; | ||
branch?: string; | ||
pr?: string; | ||
branch?: string | undefined; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
@@ -271,6 +271,6 @@ slug: string; | ||
build: string; | ||
branch?: string; | ||
pr?: string; | ||
branch?: string | undefined; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
slug: string; | ||
@@ -284,3 +284,3 @@ root: string; | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
@@ -290,5 +290,5 @@ buildUrl: string; | ||
job: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
slug: string; | ||
@@ -301,7 +301,7 @@ root: string; | ||
service: 'teamcity'; | ||
branch?: string; | ||
branch?: string | undefined; | ||
commit: string; | ||
build: string; | ||
slug: string; | ||
root?: string; | ||
root?: string | undefined; | ||
} | ||
@@ -313,9 +313,9 @@ | ||
commit: string; | ||
tag?: string; | ||
tag?: string | undefined; | ||
build: string; | ||
buildUrl: string; | ||
branch?: string; | ||
branch?: string | undefined; | ||
job: string; | ||
jobUrl: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
@@ -333,5 +333,5 @@ prBranch: string; | ||
branch: string; | ||
pr?: string; | ||
pr?: string | undefined; | ||
isPr: boolean; | ||
prBranch?: string; | ||
prBranch?: string | undefined; | ||
root: string; | ||
@@ -338,0 +338,0 @@ } |
{ | ||
"name": "@types/env-ci", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "TypeScript definitions for env-ci", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/env-ci", | ||
"license": "MIT", | ||
@@ -14,11 +15,12 @@ "contributors": [ | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/env-ci" | ||
}, | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "be974eb32375168bfb1d98a513217a882b85d69139fb7fa238a22f5c512d38d2", | ||
"typeScriptVersion": "2.1" | ||
"typesPublisherContentHash": "4bc369d8f59bddb96a6ed00c6235550356c56f0f22291d71f08469d2d8f642b5", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -8,6 +8,6 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/env-ci | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/env-ci. | ||
Additional Details | ||
* Last updated: Mon, 17 Dec 2018 23:22:40 GMT | ||
### Additional Details | ||
* Last updated: Thu, 08 Jul 2021 12:01:09 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by BendingBender <https://github.com/BendingBender>. | ||
These definitions were written by [BendingBender](https://github.com/BendingBender). |
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
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
10393
0