@types/liftoff
Advanced tools
Comparing version 2.5.0 to 2.5.1
@@ -87,3 +87,3 @@ // Type definitions for liftoff 2.5 | ||
*/ | ||
name?: string; | ||
name?: string | undefined; | ||
/** | ||
@@ -93,3 +93,3 @@ * Sets which module your application expects to find locally when being run. | ||
*/ | ||
moduleName?: string; | ||
moduleName?: string | undefined; | ||
/** | ||
@@ -99,3 +99,3 @@ * Sets the name of the configuration file Liftoff will attempt to find. Case-insensitive. | ||
*/ | ||
configName?: string; | ||
configName?: string | undefined; | ||
/** | ||
@@ -107,3 +107,3 @@ * Set extensions to include when searching for a configuration file. | ||
*/ | ||
extensions?: Extensions; | ||
extensions?: Extensions | undefined; | ||
/** | ||
@@ -117,3 +117,3 @@ * Any flag specified here will be applied to node, not your program. | ||
*/ | ||
v8flags?: string[] | ((cb: (err: any, flags: string[]) => void) => void); | ||
v8flags?: string[] | ((cb: (err: any, flags: string[]) => void) => void) | undefined; | ||
/** | ||
@@ -123,3 +123,3 @@ * Sets what the process title will be. | ||
*/ | ||
processTitle?: string; | ||
processTitle?: string | undefined; | ||
/** | ||
@@ -129,3 +129,3 @@ * A method to handle bash/zsh/whatever completions. | ||
*/ | ||
completions?: (completion: string) => any; | ||
completions?: ((completion: string) => any) | undefined; | ||
/** | ||
@@ -139,3 +139,3 @@ * An object of configuration files to find. Each property is keyed by the | ||
[extension: string]: { [locationName: string]: string | PathSpec }; | ||
}; | ||
} | undefined; | ||
} | ||
@@ -148,3 +148,3 @@ | ||
*/ | ||
cwd?: string; | ||
cwd?: string | undefined; | ||
@@ -157,3 +157,3 @@ /** | ||
*/ | ||
configPath?: string; | ||
configPath?: string | undefined; | ||
@@ -165,3 +165,3 @@ /** | ||
*/ | ||
require?: string | any[]; | ||
require?: string | any[] | undefined; | ||
@@ -175,5 +175,5 @@ /** | ||
*/ | ||
forcedFlags?: string | string[] | ((env: LiftoffEnv) => string | string[]); | ||
forcedFlags?: string | string[] | ((env: LiftoffEnv) => string | string[]) | undefined; | ||
completion?: string; | ||
completion?: string | undefined; | ||
} | ||
@@ -180,0 +180,0 @@ |
{ | ||
"name": "@types/liftoff", | ||
"version": "2.5.0", | ||
"version": "2.5.1", | ||
"description": "TypeScript definitions for liftoff", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/liftoff", | ||
"license": "MIT", | ||
@@ -14,6 +15,7 @@ "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/liftoff" | ||
}, | ||
@@ -26,4 +28,4 @@ "scripts": {}, | ||
}, | ||
"typesPublisherContentHash": "7331538bd8560a6399b4f91afc43346c0b1896e25344da1528d05bafb45b882b", | ||
"typeScriptVersion": "2.0" | ||
"typesPublisherContentHash": "6063fe973abd4884216bff015e79f65ad39bcec98d572960180d806e292e8ec5", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -8,10 +8,10 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/liftoff | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/liftoff. | ||
Additional Details | ||
* Last updated: Thu, 06 Dec 2018 21:52:30 GMT | ||
* Dependencies: @types/interpret, @types/fined, @types/node | ||
### Additional Details | ||
* Last updated: Tue, 06 Jul 2021 22:02:41 GMT | ||
* Dependencies: [@types/interpret](https://npmjs.com/package/@types/interpret), [@types/fined](https://npmjs.com/package/@types/fined), [@types/node](https://npmjs.com/package/@types/node) | ||
* 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
11015
0