fix(node-swc/types): Change StringLiteral.has_escape to StringLiteral.hasEscape (#3581)

This commit is contained in:
Menci 2022-02-16 13:39:30 +08:00 committed by GitHub
parent 2d9735b9a9
commit bf68155e56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1424,7 +1424,7 @@ export interface StringLiteral extends Node, HasSpan {
type: "StringLiteral"; type: "StringLiteral";
value: string; value: string;
has_escape: boolean; hasEscape: boolean;
} }
export interface BooleanLiteral extends Node, HasSpan { export interface BooleanLiteral extends Node, HasSpan {