-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a8c5c9
commit 5f40621
Showing
4 changed files
with
46 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Package is parsed using apiview-stub-generator(version:0.3.7), Python version: 3.10.12\n\nclass azure.contoso.ContosoAsyncManager:\n\n async def __init__(\n self,\n endpoint,\n credential,\n options: dict\n )\n\n async def get_widget_async(self, options: dict) -> WidgetResult\n\nclass azure.contoso.ContosoManager:\n\n def __init__(\n self,\n endpoint,\n credential,\n options: dict\n )\n\n def get_widget(self, options: dict) -> WidgetResult\n\nclass azure.contoso.WidgetColor(Enum):\n\n blue = "blue"\n green = "green"\n red = "red"\n\nclass azure.contoso.WidgetResult:\n\n def __init__(\n self,\n name: str,\n color: WidgetColor\n )\n\n |