Skip to content

Instantly share code, notes, and snippets.

@forivall
Created October 12, 2019 22:38
Show Gist options
  • Save forivall/0e4bd04ae2b9994767d97e2e01169b59 to your computer and use it in GitHub Desktop.
Save forivall/0e4bd04ae2b9994767d97e2e01169b59 to your computer and use it in GitHub Desktop.
namespace config {
const run: boolean
const system: {
cwd: string;
};
const required: boolean
const dirs: string[];
const timeout: number;
const options: {[key: string]: any};
const command: {
raw: { executable: string, args: string[] };
string: string;
} | undefined;
function load(settings: Settings, ready: (config: typeof nodemon.config) => void): void;
function reset(): void;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment