Cypress_TS/CY_Auta_TS/automaty/node_modules/is-installed-globally/index.d.ts
Lukáš Kaňka ea3e372146 údržba
2023-08-15 18:35:50 +02:00

20 lines
379 B
TypeScript

/**
Check if your package was installed globally.
@example
```
import isInstalledGlobally = require('is-installed-globally');
// With `npm install your-package`
console.log(isInstalledGlobally);
//=> false
// With `npm install --global your-package`
console.log(isInstalledGlobally);
//=> true
```
*/
declare const isInstalledGlobally: boolean;
export = isInstalledGlobally;