Files
DefinitelyTyped/babel-code-frame/index.d.ts
Mohsen Azimi 97af45fd65 Add babel-code-frame (#13102)
* Add babel-code-frame

* Add babel-code-frame

* index

* Follow naming convention

* tests

* ref fix

* Address issues raised in code review

* CR fixes

* make options... optional

* Update test to not assert
2016-12-08 06:37:46 -08:00

37 lines
1.1 KiB
TypeScript

// Type definitions for babel-code-frame 6.16
// Project: https://github.com/babel/babel/tree/master/packages
// Definitions by: Mohsen Azimi <https://github.com/mohsen1>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface BabelCodeFrameOptions {
/** Syntax highlight the code as JavaScript for terminals. default: false*/
highlightCode?: boolean;
/** The number of lines to show above the error. default: 2 */
linesBelow?: number;
/** The number of lines to show below the error. default: 3 */
linesAbove?: number;
/**
* Forcibly syntax highlight the code as JavaScript (for non-terminals);
* overrides highlightCode.
* default: false
*/
forceColor?: boolean;
}
/**
* 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 babelCodeFrame(
rawLines: string,
lineNumber: number,
colNumber: number,
options?: BabelCodeFrameOptions
): string;