2.1.5 • Published 5 months ago

@types/node-cleanup v2.1.5

Weekly downloads
5,259
License
MIT
Repository
github
Last release
5 months ago

Installation

npm install --save @types/node-cleanup

Summary

This package contains type definitions for node-cleanup (https://github.com/jtlapp/node-cleanup).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-cleanup.

index.d.ts

// Type definitions for node-cleanup 2.1
// Project: https://github.com/jtlapp/node-cleanup
// Definitions by: Agadar <https://github.com/agadar>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

// Note that ES6 modules cannot directly export callable functions.
// This file should be imported using the CommonJS-style:
//    import nodeCleanup = require('node-cleanup');

export = install;

interface StderrMessages {
    ctrl_C?: string;
    uncaughtException?: string;
}

type Handler = (exitCode: number | null, signal: string | null) => boolean | undefined | void;

declare function install(cleanupHandler?: Handler, stderrMessages?: StderrMessages): void;

declare namespace install {
    function uninstall(): void;
}

Additional Details

  • Last updated: Tue, 17 Aug 2021 19:01:24 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Agadar.