You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
227 B

/**
Check if the process is running in an SSH session.
@example
```
import isInSsh from 'is-in-ssh';
if (isInSsh) {
console.log('Running in an SSH session');
}
```
*/
declare const isInSsh: boolean;
export default isInSsh;