15 lines
349 B
TypeScript
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;
|