JSPM

@types/clear

0.1.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 19959
  • Score
    100M100P100Q130539F
  • License MIT

TypeScript definitions for clear

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/clear) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Installation

    npm install --save @types/clear

    Summary

    This package contains type definitions for clear (https://github.com/bahamas10/node-clear#readme).

    Details

    Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/clear.

    index.d.ts

    interface ClearOptions {
        /**
         * Setting this to false will prevent this module from clearing the screen.
         * This will not remove anything from the screen, but instead move your cursor
         * to position 0,0. Much like printing a \r instead of a \n to reset the current line of output.
         *
         * @default true
         */
        fullClear?: boolean | undefined;
    }
    
    /**
     * Clear the terminal screen if possible.
     */
    declare function clear(opts?: ClearOptions): void;
    declare function clear(clear: boolean): void;
    
    export = clear;
    

    Additional Details

    • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
    • Dependencies: none

    Credits

    These definitions were written by Connor Fitzgerald.