Skip to content

Commit 0767b3d

Browse files
committed
Removed extra space
1 parent 4a1e37d commit 0767b3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Templates/TypeScript/src/entity_types.ts.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ declare module MicrosoftGraph {
1818
var methods = entityType.Methods;
1919
#>
2020

21-
export interface <#= writer.UpperCaseFirstChar(entityType.Name) #> <# if (entityType.Base != null) { #>extends <#= writer.UpperCaseFirstChar(entityType.Base.Name) #><# }#> {
21+
export interface <#= writer.UpperCaseFirstChar(entityType.Name) #><# if (entityType.Base != null) { #> extends <#= writer.UpperCaseFirstChar(entityType.Base.Name) #><# }#> {
2222
<#
2323
foreach(var prop in entityType.Properties.ToList()) {
2424
#>

0 commit comments

Comments
 (0)