smartnginx/dist/smartnginx.command.d.ts
2016-07-06 06:33:31 +02:00

15 lines
349 B
TypeScript

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;