diff --git a/lib/tsserverlibrary.d.ts b/lib/tsserverlibrary.d.ts index e99261be3f3..cb035b63293 100644 --- a/lib/tsserverlibrary.d.ts +++ b/lib/tsserverlibrary.d.ts @@ -626,7 +626,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */ diff --git a/lib/typescript.d.ts b/lib/typescript.d.ts index d7b49496053..907cdf39144 100644 --- a/lib/typescript.d.ts +++ b/lib/typescript.d.ts @@ -626,7 +626,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */ diff --git a/lib/typescriptServices.d.ts b/lib/typescriptServices.d.ts index 6b5bd1778e6..64211e8254d 100644 --- a/lib/typescriptServices.d.ts +++ b/lib/typescriptServices.d.ts @@ -626,7 +626,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */ diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 0b952a4d009..b421efa19e0 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -946,7 +946,7 @@ namespace ts { } export interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } diff --git a/tests/baselines/reference/api/tsserverlibrary.d.ts b/tests/baselines/reference/api/tsserverlibrary.d.ts index 96849689328..5d5472e8405 100644 --- a/tests/baselines/reference/api/tsserverlibrary.d.ts +++ b/tests/baselines/reference/api/tsserverlibrary.d.ts @@ -628,7 +628,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */ diff --git a/tests/baselines/reference/api/typescript.d.ts b/tests/baselines/reference/api/typescript.d.ts index b27d270a3ba..e8e2bed3bb8 100644 --- a/tests/baselines/reference/api/typescript.d.ts +++ b/tests/baselines/reference/api/typescript.d.ts @@ -628,7 +628,7 @@ declare namespace ts { initializer?: Expression; } interface ObjectLiteralElement extends NamedDeclaration { - _objectLiteralBrandBrand: any; + _objectLiteralBrand: any; name?: PropertyName; } /** Unlike ObjectLiteralElement, excludes JSXAttribute and JSXSpreadAttribute. */