Skip to content

Commit

Permalink
Rename _objectLiteralBrandBrand to _objectLiteralBrand. (microsoft#30797
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dsherret authored and RyanCavanaugh committed Apr 23, 2019
1 parent 2707555 commit 8fc6640
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/tsserverlibrary.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion lib/typescript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion lib/typescriptServices.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ namespace ts {
}

export interface ObjectLiteralElement extends NamedDeclaration {
_objectLiteralBrandBrand: any;
_objectLiteralBrand: any;
name?: PropertyName;
}

Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/api/tsserverlibrary.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/api/typescript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 8fc6640

Please sign in to comment.