smartnginx/dist/smartnginx.command.d.ts

15 lines
349 B
TypeScript
Raw Normal View History

2016-07-06 04:33:31 +00:00
import { NginxConfig } from "./smartnginx.classes.nginxconfig";
/**
* starts nginx
*/
export declare let start: (configArg: NginxConfig) => void;
export declare let restart: (configArg: NginxConfig) => void;
/**
* stops nginx
*/
export declare let stop: () => void;
/**
* checks if nginx is in path
*/
export declare let check: () => boolean;