We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a1e37d commit 0767b3dCopy full SHA for 0767b3d
Templates/TypeScript/src/entity_types.ts.tt
@@ -18,7 +18,7 @@ declare module MicrosoftGraph {
18
var methods = entityType.Methods;
19
#>
20
21
- export interface <#= writer.UpperCaseFirstChar(entityType.Name) #> <# if (entityType.Base != null) { #>extends <#= writer.UpperCaseFirstChar(entityType.Base.Name) #><# }#> {
+ export interface <#= writer.UpperCaseFirstChar(entityType.Name) #><# if (entityType.Base != null) { #> extends <#= writer.UpperCaseFirstChar(entityType.Base.Name) #><# }#> {
22
<#
23
foreach(var prop in entityType.Properties.ToList()) {
24
0 commit comments