Innovenergy_trunk/frontend/node_modules/is-podman/index.d.ts

16 lines
251 B
TypeScript
Executable File

/**
Check if the process is running inside a Podman container.
@example
```
import isPodman = require('is-podman)
if (isPodman()) {
console.log('Running inside a Podman container')
}
```
*/
declare function isPodman(): boolean;
export = isPodman;