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
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import * as engineCheck from "engine-check";
|
|
|
|
const options: engineCheck.Options = {
|
|
searchRoot: "/",
|
|
silent: true,
|
|
debug: true
|
|
};
|
|
engineCheck();
|
|
engineCheck({});
|
|
engineCheck(options);
|