mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
checkVersion() is the module export from source package Updates type definition accordingly and namespaces the config option interface Updates tests to reference new definition Updates version to 1.1
15 lines
448 B
TypeScript
15 lines
448 B
TypeScript
// Type definitions for engine-check 1.1
|
|
// Project: https://github.com/ppvg/node-engine-check
|
|
// Definitions by: jgeth <https://github.com/jgeth>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace engineCheck {
|
|
interface Options {
|
|
searchRoot?: string;
|
|
silent?: boolean;
|
|
debug?: boolean;
|
|
}
|
|
}
|
|
declare function engineCheck(options?: engineCheck.Options): void;
|
|
export = engineCheck;
|