@types/babel__code-frame 7.0.3 → 7.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
babel__code-frame/LICENSE
CHANGED
|
File without changes
|
babel__code-frame/README.md
CHANGED
|
@@ -21,7 +21,7 @@ export interface SourceLocation {
|
|
|
21
21
|
export function codeFrameColumns(
|
|
22
22
|
rawLines: string,
|
|
23
23
|
location: SourceLocation,
|
|
24
|
-
options?: BabelCodeFrameOptions
|
|
24
|
+
options?: BabelCodeFrameOptions,
|
|
25
25
|
): string;
|
|
26
26
|
|
|
27
27
|
export interface BabelCodeFrameOptions {
|
|
@@ -60,13 +60,13 @@ export default function codeFrame(
|
|
|
60
60
|
rawLines: string,
|
|
61
61
|
lineNumber: number,
|
|
62
62
|
colNumber: number,
|
|
63
|
-
options?: BabelCodeFrameOptions
|
|
63
|
+
options?: BabelCodeFrameOptions,
|
|
64
64
|
): string;
|
|
65
65
|
|
|
66
66
|
````
|
|
67
67
|
|
|
68
68
|
### Additional Details
|
|
69
|
-
* Last updated:
|
|
69
|
+
* Last updated: Fri, 15 Sep 2023 19:06:48 GMT
|
|
70
70
|
* Dependencies: none
|
|
71
71
|
* Global values: none
|
|
72
72
|
|
babel__code-frame/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export interface SourceLocation {
|
|
|
11
11
|
export function codeFrameColumns(
|
|
12
12
|
rawLines: string,
|
|
13
13
|
location: SourceLocation,
|
|
14
|
-
options?: BabelCodeFrameOptions
|
|
14
|
+
options?: BabelCodeFrameOptions,
|
|
15
15
|
): string;
|
|
16
16
|
|
|
17
17
|
export interface BabelCodeFrameOptions {
|
|
@@ -50,5 +50,5 @@ export default function codeFrame(
|
|
|
50
50
|
rawLines: string,
|
|
51
51
|
lineNumber: number,
|
|
52
52
|
colNumber: number,
|
|
53
|
-
options?: BabelCodeFrameOptions
|
|
53
|
+
options?: BabelCodeFrameOptions,
|
|
54
54
|
): string;
|
babel__code-frame/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/babel__code-frame",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.4",
|
|
4
4
|
"description": "TypeScript definitions for @babel/code-frame",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__code-frame",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
},
|
|
26
26
|
"scripts": {},
|
|
27
27
|
"dependencies": {},
|
|
28
|
-
"typesPublisherContentHash": "
|
|
29
|
-
"typeScriptVersion": "
|
|
28
|
+
"typesPublisherContentHash": "d34b16c8b272ca1fa401cb111581efd10e48a3b8a64c4de5daa985b314b2f4bc",
|
|
29
|
+
"typeScriptVersion": "4.5"
|
|
30
30
|
}
|