Skip to content

Commit

Permalink
Fix missing underscore prefix in DefaultsMode Provider (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Jan 20, 2023
1 parent 0242ee9 commit b319b8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ public void addConfigInterfaceFields(
writer.addImport("Provider", "__Provider", TypeScriptDependency.AWS_SDK_TYPES.packageName);
writer.writeDocs("The {@link __DefaultsMode} that will be used to determine how certain default configuration "
+ "options are resolved in the SDK.");
writer.write("defaultsMode?: __DefaultsMode | __Provider<_DefaultsMode>;\n");
writer.write("defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;\n");
}
}

0 comments on commit b319b8a

Please sign in to comment.