mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-21 08:25:43 -05:00
Fix UnparsedPrologue kind
This commit is contained in:
@@ -2793,7 +2793,7 @@ namespace ts {
|
||||
}
|
||||
|
||||
export interface UnparsedPrologue extends Node {
|
||||
kind: SyntaxKind.UnparsedSource;
|
||||
kind: SyntaxKind.UnparsedPrologue;
|
||||
text: string;
|
||||
parent: UnparsedSource;
|
||||
}
|
||||
|
||||
@@ -1751,7 +1751,7 @@ declare namespace ts {
|
||||
sourceMapText?: string;
|
||||
}
|
||||
interface UnparsedPrologue extends Node {
|
||||
kind: SyntaxKind.UnparsedSource;
|
||||
kind: SyntaxKind.UnparsedPrologue;
|
||||
text: string;
|
||||
parent: UnparsedSource;
|
||||
}
|
||||
|
||||
@@ -1751,7 +1751,7 @@ declare namespace ts {
|
||||
sourceMapText?: string;
|
||||
}
|
||||
interface UnparsedPrologue extends Node {
|
||||
kind: SyntaxKind.UnparsedSource;
|
||||
kind: SyntaxKind.UnparsedPrologue;
|
||||
text: string;
|
||||
parent: UnparsedSource;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user