JSPM

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

TypeScript definitions for babel-code-frame

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/babel-code-frame) 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/babel-code-frame

    Summary

    This package contains type definitions for babel-code-frame (https://github.com/babel/babel/tree/master/packages).

    Details

    Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel-code-frame.

    index.d.ts

    interface BabelCodeFrameOptions {
        /** Syntax highlight the code as JavaScript for terminals. default: false */
        highlightCode?: boolean | undefined;
        /**  The number of lines to show above the error. default: 2 */
        linesBelow?: number | undefined;
        /**  The number of lines to show below the error. default: 3 */
        linesAbove?: number | undefined;
        /**
         * Forcibly syntax highlight the code as JavaScript (for non-terminals);
         * overrides highlightCode.
         * default: false
         */
        forceColor?: boolean | undefined;
    }
    
    /**
     * Generate errors that contain a code frame that point to source locations.
     *
     * @param rawLines Raw lines to frame
     * @param lineNumber Line number (1 indexed)
     * @param colNumber Column number
     * @param options Additional options
     *
     * @returns Framed code
     */
    declare function codeFrame(
        rawLines: string,
        lineNumber: number,
        colNumber: number,
        options?: BabelCodeFrameOptions,
    ): string;
    
    export = codeFrame;
    

    Additional Details

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

    Credits

    These definitions were written by Mohsen Azimi.