@types/babel__code-frame

TypeScript definitions for @babel/code-frame

  • Types
  • ESM
  • CJS
License
MIT
Deps
0
Install Size
6.4 kB
Vulns
0
Published

Get started

$npm install @types/babel__code-frame
$pnpm add @types/babel__code-frame
$yarn add @types/babel__code-frame
$bun add @types/babel__code-frame
$deno add npm:@types/babel__code-frame
$vlt install @types/babel__code-frame
$vp add @types/babel__code-frame
# Usually installed as a dev dependency
$npm install -D @types/babel__code-frame
$pnpm add -D @types/babel__code-frame
$yarn add -D @types/babel__code-frame
$bun add -d @types/babel__code-frame
$deno add -D npm:@types/babel__code-frame
$vlt install -D @types/babel__code-frame
$vp add -D @types/babel__code-frame

Weekly DownloadsAcross all versions

Versions

View all versions
7.27.0
latestts5.2ts5.3ts5.4ts5.5ts5.6ts5.7ts5.8ts5.9ts6.0
7.0.6
ts4.5ts4.6ts4.7ts4.8ts4.9ts5.0ts5.1
7.0.3
ts3.6ts3.7ts3.8ts3.9ts4.0ts4.1ts4.2ts4.3ts4.4
7.0.2
ts3.2ts3.3ts3.4ts3.5
7.0.1
ts2.0ts2.1ts2.2ts2.3ts2.4ts2.5ts2.6ts2.7ts2.8ts2.9ts3.0ts3.1

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

Details

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

index.d.ts

export interface SourceLocation {
    start: { line: number; column?: number | undefined };
    end?: { line: number; column?: number | undefined } | undefined;
}
export function codeFrameColumns(
    rawLines: string,
    location: SourceLocation,
    options?: BabelCodeFrameOptions,
): string;

export 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 */
    linesAbove?: number | undefined;
    /**  The number of lines to show below the error. default: 3 */
    linesBelow?: number | undefined;
    /**
     * Forcibly syntax highlight the code as JavaScript (for non-terminals);
     * overrides highlightCode.
     * default: false
     */
    forceColor?: boolean | undefined;
    /**
     * Pass in a string to be displayed inline (if possible) next to the
     * highlighted location in the code. If it can't be positioned inline,
     * it will be placed above the code frame.
     * default: nothing
     */
    message?: string | 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
 */
export default function codeFrame(
    rawLines: string,
    lineNumber: number,
    colNumber: number,
    options?: BabelCodeFrameOptions,
): string;

/**
 * Add syntax highlighting to a code snippet, to be displayed in a terminal.
 *
 * @param code Raw code to be highlighted
 *
 * @returns Highlighted code
 */
export function highlight(code: string): string;
Additional Details
  • Last updated: Sat, 10 Jan 2026 08:39:14 GMT
  • Dependencies: none

Credits

These definitions were written by Mohsen Azimi, and Forbes Lindesay.