From 39ff89aa0040d8f3b24aa6b338c061cea9d618a9 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Wed, 28 Dec 2022 13:43:41 -0600 Subject: [PATCH] feat: blog2/main (#30) --- .idea/workspace.xml | 80 ++- blog/2022-12-13-mdx-blog-post.md | 150 ++++- docs/api/classes/CommandExecutable.md | 14 +- docs/api/classes/Context.md | 76 ++- docs/api/classes/DefaultErrorHandling.md | 85 +++ docs/api/classes/DefaultLogging.md | 127 ++++ docs/api/classes/DefaultModuleManager.md | 81 +++ docs/api/classes/EventExecutable.md | 10 +- docs/api/classes/ModuleStore.md | 85 +++ docs/api/classes/SernEmitter.md | 30 +- docs/api/enums/CommandType.md | 90 ++- docs/api/enums/EventType.md | 8 +- docs/api/enums/PayloadType.md | 6 +- docs/api/enums/PluginType.md | 6 +- docs/api/interfaces/AutocompleteCommand.md | 93 +++ docs/api/interfaces/AutocompletePlugin.md | 88 +++ docs/api/interfaces/BothCommand.md | 124 ++++ docs/api/interfaces/ButtonCommand.md | 103 ++++ docs/api/interfaces/ChannelSelectCommand.md | 103 ++++ docs/api/interfaces/CommandPlugin.md | 96 +++ docs/api/interfaces/ContextMenuMsg.md | 103 ++++ docs/api/interfaces/ContextMenuUser.md | 103 ++++ docs/api/interfaces/Controller.md | 4 +- docs/api/interfaces/Dependencies.md | 67 ++ docs/api/interfaces/DiscordEmitterPlugin.md | 90 +++ docs/api/interfaces/DiscordEventPlugin.md | 94 +++ docs/api/interfaces/ErrorHandling.md | 67 ++ docs/api/interfaces/EventPlugin.md | 94 +++ docs/api/interfaces/ExternalEmitterPlugin.md | 90 +++ docs/api/interfaces/ExternalEventPlugin.md | 88 +++ docs/api/interfaces/Logging.md | 97 +++ .../interfaces/MentionableSelectCommand.md | 103 ++++ docs/api/interfaces/ModalSubmitCommand.md | 103 ++++ docs/api/interfaces/Module.md | 91 +++ docs/api/interfaces/ModuleManager.md | 57 ++ docs/api/interfaces/Plugin.md | 67 ++ docs/api/interfaces/RoleSelectCommand.md | 103 ++++ docs/api/interfaces/SernAutocompleteData.md | 113 ++++ docs/api/interfaces/SernEmitterPlugin.md | 90 +++ docs/api/interfaces/SernEventPlugin.md | 94 +++ docs/api/interfaces/SernSubCommandData.md | 117 ++++ .../api/interfaces/SernSubCommandGroupData.md | 117 ++++ docs/api/interfaces/SlashCommand.md | 114 ++++ docs/api/interfaces/StringSelectCommand.md | 103 ++++ docs/api/interfaces/TextCommand.md | 114 ++++ docs/api/interfaces/UserSelectCommand.md | 103 ++++ docs/api/interfaces/Wrapper.md | 44 +- docs/api/modules.md | 573 +++++++++--------- docs/api/namespaces/Sern.md | 111 ++-- docs/guide/getting-started/preparing.md | 5 + docs/guide/walkthrough/conclusion.md | 2 +- docs/guide/walkthrough/first-command.md | 4 +- docs/guide/walkthrough/first-event.md | 6 +- docs/guide/walkthrough/plugins.md | 2 +- docs/guide/walkthrough/sern-emitter.md | 3 +- docs/intro.md | 2 +- docusaurus.config.js | 4 +- 57 files changed, 4134 insertions(+), 463 deletions(-) create mode 100644 docs/api/classes/DefaultErrorHandling.md create mode 100644 docs/api/classes/DefaultLogging.md create mode 100644 docs/api/classes/DefaultModuleManager.md create mode 100644 docs/api/classes/ModuleStore.md create mode 100644 docs/api/interfaces/AutocompleteCommand.md create mode 100644 docs/api/interfaces/AutocompletePlugin.md create mode 100644 docs/api/interfaces/BothCommand.md create mode 100644 docs/api/interfaces/ButtonCommand.md create mode 100644 docs/api/interfaces/ChannelSelectCommand.md create mode 100644 docs/api/interfaces/CommandPlugin.md create mode 100644 docs/api/interfaces/ContextMenuMsg.md create mode 100644 docs/api/interfaces/ContextMenuUser.md create mode 100644 docs/api/interfaces/Dependencies.md create mode 100644 docs/api/interfaces/DiscordEmitterPlugin.md create mode 100644 docs/api/interfaces/DiscordEventPlugin.md create mode 100644 docs/api/interfaces/ErrorHandling.md create mode 100644 docs/api/interfaces/EventPlugin.md create mode 100644 docs/api/interfaces/ExternalEmitterPlugin.md create mode 100644 docs/api/interfaces/ExternalEventPlugin.md create mode 100644 docs/api/interfaces/Logging.md create mode 100644 docs/api/interfaces/MentionableSelectCommand.md create mode 100644 docs/api/interfaces/ModalSubmitCommand.md create mode 100644 docs/api/interfaces/Module.md create mode 100644 docs/api/interfaces/ModuleManager.md create mode 100644 docs/api/interfaces/Plugin.md create mode 100644 docs/api/interfaces/RoleSelectCommand.md create mode 100644 docs/api/interfaces/SernAutocompleteData.md create mode 100644 docs/api/interfaces/SernEmitterPlugin.md create mode 100644 docs/api/interfaces/SernEventPlugin.md create mode 100644 docs/api/interfaces/SernSubCommandData.md create mode 100644 docs/api/interfaces/SernSubCommandGroupData.md create mode 100644 docs/api/interfaces/SlashCommand.md create mode 100644 docs/api/interfaces/StringSelectCommand.md create mode 100644 docs/api/interfaces/TextCommand.md create mode 100644 docs/api/interfaces/UserSelectCommand.md diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 580a8fcde..4e060aa7b 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,9 +4,9 @@