From 51bbdea73e48a59051b2923b04380fe88a817f6e Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Sun, 26 Dec 2021 15:05:58 -0600 Subject: [PATCH] some docs --- README.md | 3 + docs/.nojekyll | 1 + docs/assets/highlight.css | 22 + docs/assets/icons.css | 1043 +++++++++++++++++++ docs/assets/icons.png | Bin 0 -> 9615 bytes docs/assets/icons@2x.png | Bin 0 -> 28144 bytes docs/assets/main.js | 52 + docs/assets/search.js | 1 + docs/assets/style.css | 1388 +++++++++++++++++++++++++ docs/assets/widgets.png | Bin 0 -> 480 bytes docs/assets/widgets@2x.png | Bin 0 -> 855 bytes docs/classes/DiscordJsAdapter.html | 1 + docs/classes/Reacord.html | 1 + docs/index.html | 6 + docs/modules.html | 4 + library/adapter/adapter.ts | 6 + library/adapter/discord-js-adapter.ts | 6 + library/button.tsx | 6 +- library/embed/embed-options.ts | 25 +- library/embed/embed.tsx | 16 +- library/main.ts | 3 - library/testing.ts | 1 + package.json | 4 +- pnpm-lock.yaml | 43 + test/assert-messages.ts | 2 +- test/embed.test.tsx | 3 +- test/link.test.tsx | 8 +- test/reacord.test.tsx | 11 +- tsconfig.json | 7 +- typedoc.json | 8 + 30 files changed, 2623 insertions(+), 48 deletions(-) create mode 100644 README.md create mode 100644 docs/.nojekyll create mode 100644 docs/assets/highlight.css create mode 100644 docs/assets/icons.css create mode 100644 docs/assets/icons.png create mode 100644 docs/assets/icons@2x.png create mode 100644 docs/assets/main.js create mode 100644 docs/assets/search.js create mode 100644 docs/assets/style.css create mode 100644 docs/assets/widgets.png create mode 100644 docs/assets/widgets@2x.png create mode 100644 docs/classes/DiscordJsAdapter.html create mode 100644 docs/classes/Reacord.html create mode 100644 docs/index.html create mode 100644 docs/modules.html create mode 100644 library/testing.ts create mode 100644 typedoc.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..caffcf8 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# reacord + +coming soon™ diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 0000000..e2ac661 --- /dev/null +++ b/docs/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css new file mode 100644 index 0000000..a13094d --- /dev/null +++ b/docs/assets/highlight.css @@ -0,0 +1,22 @@ +:root { + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --code-background: var(--dark-code-background); +} } + +body.light { + --code-background: var(--light-code-background); +} + +body.dark { + --code-background: var(--dark-code-background); +} + +pre, code { background: var(--code-background); } diff --git a/docs/assets/icons.css b/docs/assets/icons.css new file mode 100644 index 0000000..776a356 --- /dev/null +++ b/docs/assets/icons.css @@ -0,0 +1,1043 @@ +.tsd-kind-icon { + display: block; + position: relative; + padding-left: 20px; + text-indent: -20px; +} +.tsd-kind-icon:before { + content: ""; + display: inline-block; + vertical-align: middle; + width: 17px; + height: 17px; + margin: 0 3px 2px 0; + background-image: url(./icons.png); +} +@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { + .tsd-kind-icon:before { + background-image: url(./icons@2x.png); + background-size: 238px 204px; + } +} + +.tsd-signature.tsd-kind-icon:before { + background-position: 0 -153px; +} + +.tsd-kind-object-literal > .tsd-kind-icon:before { + background-position: 0px -17px; +} +.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -17px; +} +.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -17px; +} + +.tsd-kind-class > .tsd-kind-icon:before { + background-position: 0px -34px; +} +.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -34px; +} +.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -34px; +} + +.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -51px; +} +.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -51px; +} +.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -51px; +} + +.tsd-kind-interface > .tsd-kind-icon:before { + background-position: 0px -68px; +} +.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -68px; +} +.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -68px; +} + +.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -85px; +} +.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -85px; +} +.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -34px -85px; +} + +.tsd-kind-namespace > .tsd-kind-icon:before { + background-position: 0px -102px; +} +.tsd-kind-namespace.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -102px; +} +.tsd-kind-namespace.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -102px; +} + +.tsd-kind-module > .tsd-kind-icon:before { + background-position: 0px -102px; +} +.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -102px; +} +.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -102px; +} + +.tsd-kind-enum > .tsd-kind-icon:before { + background-position: 0px -119px; +} +.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -119px; +} +.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -119px; +} + +.tsd-kind-enum-member > .tsd-kind-icon:before { + background-position: 0px -136px; +} +.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -136px; +} +.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -136px; +} + +.tsd-kind-signature > .tsd-kind-icon:before { + background-position: 0px -153px; +} +.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -153px; +} +.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -153px; +} + +.tsd-kind-type-alias > .tsd-kind-icon:before { + background-position: 0px -170px; +} +.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -170px; +} +.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -170px; +} + +.tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -187px; +} +.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -187px; +} +.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -34px -187px; +} + +.tsd-kind-variable > .tsd-kind-icon:before { + background-position: -136px -0px; +} +.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -0px; +} +.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -0px; +} +.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -0px; +} + +.tsd-kind-property > .tsd-kind-icon:before { + background-position: -136px -0px; +} +.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -0px; +} +.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -0px; +} +.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -0px; +} + +.tsd-kind-get-signature > .tsd-kind-icon:before { + background-position: -136px -17px; +} +.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -17px; +} +.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -17px; +} + +.tsd-kind-set-signature > .tsd-kind-icon:before { + background-position: -136px -34px; +} +.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -34px; +} +.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -34px; +} + +.tsd-kind-accessor > .tsd-kind-icon:before { + background-position: -136px -51px; +} +.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -51px; +} +.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -51px; +} + +.tsd-kind-function > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-method > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-call-signature > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: -136px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -85px; +} + +.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: -136px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -85px; +} + +.tsd-kind-constructor > .tsd-kind-icon:before { + background-position: -136px -102px; +} +.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -102px; +} +.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -102px; +} + +.tsd-kind-constructor-signature > .tsd-kind-icon:before { + background-position: -136px -102px; +} +.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -102px; +} +.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -102px; +} + +.tsd-kind-index-signature > .tsd-kind-icon:before { + background-position: -136px -119px; +} +.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -119px; +} +.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -119px; +} + +.tsd-kind-event > .tsd-kind-icon:before { + background-position: -136px -136px; +} +.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -136px; +} +.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { + background-position: -68px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -85px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -136px; +} +.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -136px; +} + +.tsd-is-static > .tsd-kind-icon:before { + background-position: -136px -153px; +} +.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -153px; +} +.tsd-is-static.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { + background-position: -68px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -85px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -153px; +} +.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -153px; +} +.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -153px; +} +.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -153px; +} + +.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { + background-position: -136px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -187px; +} diff --git a/docs/assets/icons.png b/docs/assets/icons.png new file mode 100644 index 0000000000000000000000000000000000000000..3836d5fe46e48bbe186116855aae879c23935327 GIT binary patch literal 9615 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 literal 0 HcmV?d00001 diff --git a/docs/assets/icons@2x.png b/docs/assets/icons@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..5a209e2f6d7f915cc9cb6fe7a4264c8be4db87b0 GIT binary patch literal 28144 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 literal 0 HcmV?d00001 diff --git a/docs/assets/main.js b/docs/assets/main.js new file mode 100644 index 0000000..61009a4 --- /dev/null +++ b/docs/assets/main.js @@ -0,0 +1,52 @@ +(()=>{var Ce=Object.create;var J=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var Me=t=>J(t,"__esModule",{value:!0});var Fe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Oe(e))!_e.call(t,n)&&n!=="default"&&J(t,n,{get:()=>e[n],enumerable:!(r=Pe(e,n))||r.enumerable});return t},Ae=t=>De(Me(J(t!=null?Ce(Re(t)):{},"default",t&&t.__esModule&&"default"in t?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var de=Fe((ue,he)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var h=t.utils.clone(r)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(n.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(oc?h+=2:a==c&&(r+=n[l+1]*i[h+1],l+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var c=s.node.edges["*"];else{var c=new t.TokenSet;s.node.edges["*"]=c}if(s.str.length==0&&(c.final=!0),i.push({node:c,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),f=s.str.charAt(1),v;f in s.node.edges?v=s.node.edges[f]:(v=new t.TokenSet,s.node.edges[f]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),c=0;c1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof ue=="object"?he.exports=r():e.lunr=r()}(this,function(){return t})})()});var le=[];function N(t,e){le.push({selector:e,constructor:t})}var X=class{constructor(){this.createComponents(document.body)}createComponents(e){le.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var Q=class{constructor(e){this.el=e.el}};var Z=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ee=class extends Z{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",K(()=>this.onScroll(),10)),window.addEventListener("resize",K(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onScroll(){this.scrollTop=window.scrollY||0;let e=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(e),this.hideShowToolbar()}hideShowToolbar(){var r;let e=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,e!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),(r=this.secondaryNav)==null||r.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},I=ee;I.instance=new ee;var te=class extends Q{constructor(e){super(e);this.anchors=[];this.index=-1;I.instance.addEventListener("resize",()=>this.onResize()),I.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let e=window.location.href;e.indexOf("#")!=-1&&(e=e.substr(0,e.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let n=r.href;if(n.indexOf("#")==-1||n.substr(0,e.length)!=e)return;let i=n.substr(n.indexOf("#")+1),s=document.querySelector("a.tsd-anchor[name="+i+"]"),o=r.parentNode;!s||!o||this.anchors.push({link:o,anchor:s,position:0})}),this.onResize()}onResize(){let e;for(let n=0,i=this.anchors.length;nn.position-i.position);let r=new CustomEvent("scroll",{detail:{scrollTop:I.instance.scrollTop}});this.onScroll(r)}onScroll(e){let r=e.detail.scrollTop+5,n=this.anchors,i=n.length-1,s=this.index;for(;s>-1&&n[s].position>r;)s-=1;for(;s-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=s,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ce=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var pe=Ae(de());function fe(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ve(t,n,r,s)}function Ve(t,e,r,n){r.addEventListener("input",ce(()=>{ze(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ne(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?me(e,-1):s.key==="ArrowDown"?me(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function He(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=pe.Index.load(window.searchData.index))}function ze(t,e,r,n){if(He(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=n.index.search(`*${i}*`);for(let o=0,a=Math.min(10,s.length);o${ve(c.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=c.classes;let f=document.createElement("a");f.href=n.base+c.url,f.classList.add("tsd-kind-icon"),f.innerHTML=l,h.append(f),e.appendChild(h)}}function me(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Ne(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function ve(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(re(t.substring(s,o)),`${re(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(re(t.substring(s))),i.join("")}var je={"&":"&","<":"<",">":">","'":"'",'"':"""};function re(t){return t.replace(/[&<>"'"]/g,e=>je[e])}var ge=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},ne=class extends Q{constructor(e){super(e);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(r=>{r.addEventListener("touchstart",n=>this.onClick(n)),r.addEventListener("click",n=>this.onClick(n))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(e){if(e<0&&(e=0),e>this.groups.length-1&&(e=this.groups.length-1),this.index==e)return;let r=this.groups[e];if(this.index>-1){let n=this.groups[this.index];n.removeClass("current").addClass("fade-out"),r.addClass("current"),r.addClass("fade-in"),I.instance.triggerResize(),setTimeout(()=>{n.removeClass("fade-out"),r.removeClass("fade-in")},300)}else r.addClass("current"),I.instance.triggerResize();this.index=e}createGroups(){let e=this.el.children;if(e.length<2)return;this.container=this.el.nextElementSibling;let r=this.container.children;this.groups=[];for(let n=0;n{r.signature===e.currentTarget&&this.setIndex(n)})}};var C="mousedown",ye="mousemove",_="mouseup",G={x:0,y:0},xe=!1,ie=!1,Be=!1,A=!1,Le=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Le?"is-mobile":"not-mobile");Le&&"ontouchstart"in document.documentElement&&(Be=!0,C="touchstart",ye="touchmove",_="touchend");document.addEventListener(C,t=>{ie=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;G.y=e.pageY||0,G.x=e.pageX||0});document.addEventListener(ye,t=>{if(!!ie&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=G.x-(e.pageX||0),n=G.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ie=!1});document.addEventListener("click",t=>{xe&&(t.preventDefault(),t.stopImmediatePropagation(),xe=!1)});var se=class extends Q{constructor(e){super(e);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(C,r=>this.onDocumentPointerDown(r)),document.addEventListener(_,r=>this.onDocumentPointerUp(r))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(e){A||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!A&&this.active&&e.target.closest(".col-menu")){let r=e.target.closest("a");if(r){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substr(0,n.indexOf("#"))),r.href.substr(0,n.length)==n&&setTimeout(()=>this.setActive(!1),250)}}}};var oe=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},ae=class extends oe{initialize(){let e=document.querySelector("#tsd-filter-"+this.key);!e||(this.checkbox=e,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(e,r){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(e){return e=="true"}toLocalStorage(e){return e?"true":"false"}},Ee=class extends oe{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let e=document.querySelector("#tsd-filter-"+this.key);if(!e)return;this.select=e;let r=()=>{this.select.classList.add("active")},n=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,r),this.select.addEventListener("mouseover",r),this.select.addEventListener("mouseleave",n),this.select.querySelectorAll("li").forEach(i=>{i.addEventListener(_,s=>{e.classList.remove("active"),this.setValue(s.target.dataset.value||"")})}),document.addEventListener(C,i=>{this.select.contains(i.target)||this.select.classList.remove("active")})}handleValueChange(e,r){this.select.querySelectorAll("li.selected").forEach(s=>{s.classList.remove("selected")});let n=this.select.querySelector('li[data-value="'+r+'"]'),i=this.select.querySelector(".tsd-select-label");n&&i&&(n.classList.add("selected"),i.textContent=n.textContent),document.documentElement.classList.remove("toggle-"+e),document.documentElement.classList.add("toggle-"+r)}fromLocalStorage(e){return e}toLocalStorage(e){return e}},Y=class extends Q{constructor(e){super(e);this.optionVisibility=new Ee("visibility","private"),this.optionInherited=new ae("inherited",!0),this.optionExternals=new ae("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch{return!1}}};function be(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,we(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),we(t.value)})}function we(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}fe();N(te,".menu-highlight");N(ne,".tsd-signatures");N(se,"a[data-toggle]");Y.isSupported()?N(Y,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&be(Te);var qe=new X;Object.defineProperty(window,"app",{value:qe});})(); +/*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + */ +/*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + */ +/** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + */ diff --git a/docs/assets/search.js b/docs/assets/search.js new file mode 100644 index 0000000..bb1e6b4 --- /dev/null +++ b/docs/assets/search.js @@ -0,0 +1 @@ +window.searchData = {"kinds":{"64":"Function","128":"Class","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","4194304":"Type alias"},"rows":[{"id":0,"kind":4194304,"name":"Adapter","url":"modules.html#Adapter","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":1,"kind":65536,"name":"__type","url":"modules.html#Adapter.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Adapter"},{"id":2,"kind":128,"name":"DiscordJsAdapter","url":"classes/DiscordJsAdapter.html","classes":"tsd-kind-class"},{"id":3,"kind":512,"name":"constructor","url":"classes/DiscordJsAdapter.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DiscordJsAdapter"},{"id":4,"kind":64,"name":"Button","url":"modules.html#Button","classes":"tsd-kind-function"},{"id":5,"kind":4194304,"name":"ButtonProps","url":"modules.html#ButtonProps","classes":"tsd-kind-type-alias"},{"id":6,"kind":65536,"name":"__type","url":"modules.html#ButtonProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ButtonProps"},{"id":7,"kind":1024,"name":"label","url":"modules.html#ButtonProps.__type.label","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ButtonProps.__type"},{"id":8,"kind":1024,"name":"style","url":"modules.html#ButtonProps.__type.style","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ButtonProps.__type"},{"id":9,"kind":1024,"name":"disabled","url":"modules.html#ButtonProps.__type.disabled","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ButtonProps.__type"},{"id":10,"kind":1024,"name":"emoji","url":"modules.html#ButtonProps.__type.emoji","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ButtonProps.__type"},{"id":11,"kind":2048,"name":"onClick","url":"modules.html#ButtonProps.__type.onClick","classes":"tsd-kind-method tsd-parent-kind-type-literal","parent":"ButtonProps.__type"},{"id":12,"kind":4194304,"name":"ButtonClickEvent","url":"modules.html#ButtonClickEvent","classes":"tsd-kind-type-alias"},{"id":13,"kind":65536,"name":"__type","url":"modules.html#ButtonClickEvent.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ButtonClickEvent"},{"id":14,"kind":64,"name":"Embed","url":"modules.html#Embed","classes":"tsd-kind-function"},{"id":15,"kind":4194304,"name":"EmbedProps","url":"modules.html#EmbedProps","classes":"tsd-kind-type-alias"},{"id":16,"kind":65536,"name":"__type","url":"modules.html#EmbedProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"EmbedProps"},{"id":17,"kind":1024,"name":"title","url":"modules.html#EmbedProps.__type.title","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":18,"kind":1024,"name":"description","url":"modules.html#EmbedProps.__type.description","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":19,"kind":1024,"name":"url","url":"modules.html#EmbedProps.__type.url-3","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":20,"kind":1024,"name":"color","url":"modules.html#EmbedProps.__type.color","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":21,"kind":1024,"name":"fields","url":"modules.html#EmbedProps.__type.fields","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":22,"kind":1024,"name":"author","url":"modules.html#EmbedProps.__type.author","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":23,"kind":65536,"name":"__type","url":"modules.html#EmbedProps.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":24,"kind":1024,"name":"name","url":"modules.html#EmbedProps.__type.__type-1.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type.__type"},{"id":25,"kind":1024,"name":"url","url":"modules.html#EmbedProps.__type.__type-1.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type.__type"},{"id":26,"kind":1024,"name":"iconUrl","url":"modules.html#EmbedProps.__type.__type-1.iconUrl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type.__type"},{"id":27,"kind":1024,"name":"thumbnail","url":"modules.html#EmbedProps.__type.thumbnail","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":28,"kind":65536,"name":"__type","url":"modules.html#EmbedProps.__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":29,"kind":1024,"name":"url","url":"modules.html#EmbedProps.__type.__type-4.url-2","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type.__type"},{"id":30,"kind":1024,"name":"image","url":"modules.html#EmbedProps.__type.image","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":31,"kind":65536,"name":"__type","url":"modules.html#EmbedProps.__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":32,"kind":1024,"name":"url","url":"modules.html#EmbedProps.__type.__type-3.url-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type.__type"},{"id":33,"kind":1024,"name":"video","url":"modules.html#EmbedProps.__type.video","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":34,"kind":65536,"name":"__type","url":"modules.html#EmbedProps.__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":35,"kind":1024,"name":"url","url":"modules.html#EmbedProps.__type.__type-5.url-4","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type.__type"},{"id":36,"kind":1024,"name":"footer","url":"modules.html#EmbedProps.__type.footer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":37,"kind":65536,"name":"__type","url":"modules.html#EmbedProps.__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":38,"kind":1024,"name":"text","url":"modules.html#EmbedProps.__type.__type-2.text","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type.__type"},{"id":39,"kind":1024,"name":"iconUrl","url":"modules.html#EmbedProps.__type.__type-2.iconUrl-1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type.__type"},{"id":40,"kind":1024,"name":"timestamp","url":"modules.html#EmbedProps.__type.timestamp","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":41,"kind":1024,"name":"children","url":"modules.html#EmbedProps.__type.children","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedProps.__type"},{"id":42,"kind":64,"name":"EmbedAuthor","url":"modules.html#EmbedAuthor","classes":"tsd-kind-function"},{"id":43,"kind":4194304,"name":"EmbedAuthorProps","url":"modules.html#EmbedAuthorProps","classes":"tsd-kind-type-alias"},{"id":44,"kind":65536,"name":"__type","url":"modules.html#EmbedAuthorProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"EmbedAuthorProps"},{"id":45,"kind":1024,"name":"name","url":"modules.html#EmbedAuthorProps.__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedAuthorProps.__type"},{"id":46,"kind":1024,"name":"children","url":"modules.html#EmbedAuthorProps.__type.children","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedAuthorProps.__type"},{"id":47,"kind":1024,"name":"url","url":"modules.html#EmbedAuthorProps.__type.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedAuthorProps.__type"},{"id":48,"kind":1024,"name":"iconUrl","url":"modules.html#EmbedAuthorProps.__type.iconUrl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedAuthorProps.__type"},{"id":49,"kind":64,"name":"EmbedField","url":"modules.html#EmbedField","classes":"tsd-kind-function"},{"id":50,"kind":4194304,"name":"EmbedFieldProps","url":"modules.html#EmbedFieldProps","classes":"tsd-kind-type-alias"},{"id":51,"kind":65536,"name":"__type","url":"modules.html#EmbedFieldProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"EmbedFieldProps"},{"id":52,"kind":1024,"name":"name","url":"modules.html#EmbedFieldProps.__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedFieldProps.__type"},{"id":53,"kind":1024,"name":"value","url":"modules.html#EmbedFieldProps.__type.value","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedFieldProps.__type"},{"id":54,"kind":1024,"name":"inline","url":"modules.html#EmbedFieldProps.__type.inline","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedFieldProps.__type"},{"id":55,"kind":1024,"name":"children","url":"modules.html#EmbedFieldProps.__type.children","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedFieldProps.__type"},{"id":56,"kind":64,"name":"EmbedFooter","url":"modules.html#EmbedFooter","classes":"tsd-kind-function"},{"id":57,"kind":4194304,"name":"EmbedFooterProps","url":"modules.html#EmbedFooterProps","classes":"tsd-kind-type-alias"},{"id":58,"kind":65536,"name":"__type","url":"modules.html#EmbedFooterProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"EmbedFooterProps"},{"id":59,"kind":1024,"name":"text","url":"modules.html#EmbedFooterProps.__type.text","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedFooterProps.__type"},{"id":60,"kind":1024,"name":"children","url":"modules.html#EmbedFooterProps.__type.children","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedFooterProps.__type"},{"id":61,"kind":1024,"name":"iconUrl","url":"modules.html#EmbedFooterProps.__type.iconUrl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedFooterProps.__type"},{"id":62,"kind":1024,"name":"timestamp","url":"modules.html#EmbedFooterProps.__type.timestamp","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedFooterProps.__type"},{"id":63,"kind":64,"name":"EmbedImage","url":"modules.html#EmbedImage","classes":"tsd-kind-function"},{"id":64,"kind":4194304,"name":"EmbedImageProps","url":"modules.html#EmbedImageProps","classes":"tsd-kind-type-alias"},{"id":65,"kind":65536,"name":"__type","url":"modules.html#EmbedImageProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"EmbedImageProps"},{"id":66,"kind":1024,"name":"url","url":"modules.html#EmbedImageProps.__type.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedImageProps.__type"},{"id":67,"kind":64,"name":"EmbedThumbnail","url":"modules.html#EmbedThumbnail","classes":"tsd-kind-function"},{"id":68,"kind":4194304,"name":"EmbedThumbnailProps","url":"modules.html#EmbedThumbnailProps","classes":"tsd-kind-type-alias"},{"id":69,"kind":65536,"name":"__type","url":"modules.html#EmbedThumbnailProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"EmbedThumbnailProps"},{"id":70,"kind":1024,"name":"url","url":"modules.html#EmbedThumbnailProps.__type.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedThumbnailProps.__type"},{"id":71,"kind":64,"name":"EmbedTitle","url":"modules.html#EmbedTitle","classes":"tsd-kind-function"},{"id":72,"kind":4194304,"name":"EmbedTitleProps","url":"modules.html#EmbedTitleProps","classes":"tsd-kind-type-alias"},{"id":73,"kind":65536,"name":"__type","url":"modules.html#EmbedTitleProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"EmbedTitleProps"},{"id":74,"kind":1024,"name":"children","url":"modules.html#EmbedTitleProps.__type.children","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedTitleProps.__type"},{"id":75,"kind":1024,"name":"url","url":"modules.html#EmbedTitleProps.__type.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"EmbedTitleProps.__type"},{"id":76,"kind":64,"name":"Link","url":"modules.html#Link","classes":"tsd-kind-function"},{"id":77,"kind":4194304,"name":"LinkProps","url":"modules.html#LinkProps","classes":"tsd-kind-type-alias"},{"id":78,"kind":65536,"name":"__type","url":"modules.html#LinkProps.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"LinkProps"},{"id":79,"kind":1024,"name":"label","url":"modules.html#LinkProps.__type.label","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LinkProps.__type"},{"id":80,"kind":1024,"name":"children","url":"modules.html#LinkProps.__type.children","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LinkProps.__type"},{"id":81,"kind":1024,"name":"emoji","url":"modules.html#LinkProps.__type.emoji","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LinkProps.__type"},{"id":82,"kind":1024,"name":"disabled","url":"modules.html#LinkProps.__type.disabled","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LinkProps.__type"},{"id":83,"kind":1024,"name":"url","url":"modules.html#LinkProps.__type.url","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"LinkProps.__type"},{"id":84,"kind":4194304,"name":"ReacordConfig","url":"modules.html#ReacordConfig","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":85,"kind":65536,"name":"__type","url":"modules.html#ReacordConfig.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ReacordConfig"},{"id":86,"kind":1024,"name":"adapter","url":"modules.html#ReacordConfig.__type.adapter","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ReacordConfig.__type"},{"id":87,"kind":1024,"name":"maxInstances","url":"modules.html#ReacordConfig.__type.maxInstances","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ReacordConfig.__type"},{"id":88,"kind":4194304,"name":"ReacordInstance","url":"modules.html#ReacordInstance","classes":"tsd-kind-type-alias"},{"id":89,"kind":65536,"name":"__type","url":"modules.html#ReacordInstance.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ReacordInstance"},{"id":90,"kind":2048,"name":"render","url":"modules.html#ReacordInstance.__type.render","classes":"tsd-kind-method tsd-parent-kind-type-literal","parent":"ReacordInstance.__type"},{"id":91,"kind":2048,"name":"deactivate","url":"modules.html#ReacordInstance.__type.deactivate","classes":"tsd-kind-method tsd-parent-kind-type-literal","parent":"ReacordInstance.__type"},{"id":92,"kind":128,"name":"Reacord","url":"classes/Reacord.html","classes":"tsd-kind-class tsd-has-type-parameter"},{"id":93,"kind":512,"name":"constructor","url":"classes/Reacord.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"Reacord"},{"id":94,"kind":2048,"name":"createCommandReply","url":"classes/Reacord.html#createCommandReply","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Reacord"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,33.116]],["parent/0",[]],["name/1",[1,16.466]],["parent/1",[0,2.909]],["name/2",[2,36.481]],["parent/2",[]],["name/3",[3,36.481]],["parent/3",[2,3.205]],["name/4",[4,41.589]],["parent/4",[]],["name/5",[5,36.481]],["parent/5",[]],["name/6",[1,16.466]],["parent/6",[5,3.205]],["name/7",[6,36.481]],["parent/7",[7,2.512]],["name/8",[8,41.589]],["parent/8",[7,2.512]],["name/9",[9,36.481]],["parent/9",[7,2.512]],["name/10",[10,36.481]],["parent/10",[7,2.512]],["name/11",[11,41.589]],["parent/11",[7,2.512]],["name/12",[12,36.481]],["parent/12",[]],["name/13",[1,16.466]],["parent/13",[12,3.205]],["name/14",[13,41.589]],["parent/14",[]],["name/15",[14,36.481]],["parent/15",[]],["name/16",[1,16.466]],["parent/16",[14,3.205]],["name/17",[15,41.589]],["parent/17",[16,1.495]],["name/18",[17,41.589]],["parent/18",[16,1.495]],["name/19",[18,22.13]],["parent/19",[16,1.495]],["name/20",[19,41.589]],["parent/20",[16,1.495]],["name/21",[20,41.589]],["parent/21",[16,1.495]],["name/22",[21,41.589]],["parent/22",[16,1.495]],["name/23",[1,16.466]],["parent/23",[16,1.495]],["name/24",[22,33.116]],["parent/24",[23,2.13]],["name/25",[18,22.13]],["parent/25",[23,2.13]],["name/26",[24,30.603]],["parent/26",[23,2.13]],["name/27",[25,41.589]],["parent/27",[16,1.495]],["name/28",[1,16.466]],["parent/28",[16,1.495]],["name/29",[18,22.13]],["parent/29",[23,2.13]],["name/30",[26,41.589]],["parent/30",[16,1.495]],["name/31",[1,16.466]],["parent/31",[16,1.495]],["name/32",[18,22.13]],["parent/32",[23,2.13]],["name/33",[27,41.589]],["parent/33",[16,1.495]],["name/34",[1,16.466]],["parent/34",[16,1.495]],["name/35",[18,22.13]],["parent/35",[23,2.13]],["name/36",[28,41.589]],["parent/36",[16,1.495]],["name/37",[1,16.466]],["parent/37",[16,1.495]],["name/38",[29,36.481]],["parent/38",[23,2.13]],["name/39",[24,30.603]],["parent/39",[23,2.13]],["name/40",[30,36.481]],["parent/40",[16,1.495]],["name/41",[31,26.925]],["parent/41",[16,1.495]],["name/42",[32,41.589]],["parent/42",[]],["name/43",[33,36.481]],["parent/43",[]],["name/44",[1,16.466]],["parent/44",[33,3.205]],["name/45",[22,33.116]],["parent/45",[34,2.688]],["name/46",[31,26.925]],["parent/46",[34,2.688]],["name/47",[18,22.13]],["parent/47",[34,2.688]],["name/48",[24,30.603]],["parent/48",[34,2.688]],["name/49",[35,41.589]],["parent/49",[]],["name/50",[36,36.481]],["parent/50",[]],["name/51",[1,16.466]],["parent/51",[36,3.205]],["name/52",[22,33.116]],["parent/52",[37,2.688]],["name/53",[38,41.589]],["parent/53",[37,2.688]],["name/54",[39,41.589]],["parent/54",[37,2.688]],["name/55",[31,26.925]],["parent/55",[37,2.688]],["name/56",[40,41.589]],["parent/56",[]],["name/57",[41,36.481]],["parent/57",[]],["name/58",[1,16.466]],["parent/58",[41,3.205]],["name/59",[29,36.481]],["parent/59",[42,2.688]],["name/60",[31,26.925]],["parent/60",[42,2.688]],["name/61",[24,30.603]],["parent/61",[42,2.688]],["name/62",[30,36.481]],["parent/62",[42,2.688]],["name/63",[43,41.589]],["parent/63",[]],["name/64",[44,36.481]],["parent/64",[]],["name/65",[1,16.466]],["parent/65",[44,3.205]],["name/66",[18,22.13]],["parent/66",[45,3.654]],["name/67",[46,41.589]],["parent/67",[]],["name/68",[47,36.481]],["parent/68",[]],["name/69",[1,16.466]],["parent/69",[47,3.205]],["name/70",[18,22.13]],["parent/70",[48,3.654]],["name/71",[49,41.589]],["parent/71",[]],["name/72",[50,36.481]],["parent/72",[]],["name/73",[1,16.466]],["parent/73",[50,3.205]],["name/74",[31,26.925]],["parent/74",[51,3.205]],["name/75",[18,22.13]],["parent/75",[51,3.205]],["name/76",[52,41.589]],["parent/76",[]],["name/77",[53,36.481]],["parent/77",[]],["name/78",[1,16.466]],["parent/78",[53,3.205]],["name/79",[6,36.481]],["parent/79",[54,2.512]],["name/80",[31,26.925]],["parent/80",[54,2.512]],["name/81",[10,36.481]],["parent/81",[54,2.512]],["name/82",[9,36.481]],["parent/82",[54,2.512]],["name/83",[18,22.13]],["parent/83",[54,2.512]],["name/84",[55,36.481]],["parent/84",[]],["name/85",[1,16.466]],["parent/85",[55,3.205]],["name/86",[0,33.116]],["parent/86",[56,3.205]],["name/87",[57,41.589]],["parent/87",[56,3.205]],["name/88",[58,36.481]],["parent/88",[]],["name/89",[1,16.466]],["parent/89",[58,3.205]],["name/90",[59,41.589]],["parent/90",[60,3.205]],["name/91",[61,41.589]],["parent/91",[60,3.205]],["name/92",[62,33.116]],["parent/92",[]],["name/93",[3,36.481]],["parent/93",[62,2.909]],["name/94",[63,41.589]],["parent/94",[62,2.909]]],"invertedIndex":[["__type",{"_index":1,"name":{"1":{},"6":{},"13":{},"16":{},"23":{},"28":{},"31":{},"34":{},"37":{},"44":{},"51":{},"58":{},"65":{},"69":{},"73":{},"78":{},"85":{},"89":{}},"parent":{}}],["adapter",{"_index":0,"name":{"0":{},"86":{}},"parent":{"1":{}}}],["author",{"_index":21,"name":{"22":{}},"parent":{}}],["button",{"_index":4,"name":{"4":{}},"parent":{}}],["buttonclickevent",{"_index":12,"name":{"12":{}},"parent":{"13":{}}}],["buttonprops",{"_index":5,"name":{"5":{}},"parent":{"6":{}}}],["buttonprops.__type",{"_index":7,"name":{},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{}}}],["children",{"_index":31,"name":{"41":{},"46":{},"55":{},"60":{},"74":{},"80":{}},"parent":{}}],["color",{"_index":19,"name":{"20":{}},"parent":{}}],["constructor",{"_index":3,"name":{"3":{},"93":{}},"parent":{}}],["createcommandreply",{"_index":63,"name":{"94":{}},"parent":{}}],["deactivate",{"_index":61,"name":{"91":{}},"parent":{}}],["description",{"_index":17,"name":{"18":{}},"parent":{}}],["disabled",{"_index":9,"name":{"9":{},"82":{}},"parent":{}}],["discordjsadapter",{"_index":2,"name":{"2":{}},"parent":{"3":{}}}],["embed",{"_index":13,"name":{"14":{}},"parent":{}}],["embedauthor",{"_index":32,"name":{"42":{}},"parent":{}}],["embedauthorprops",{"_index":33,"name":{"43":{}},"parent":{"44":{}}}],["embedauthorprops.__type",{"_index":34,"name":{},"parent":{"45":{},"46":{},"47":{},"48":{}}}],["embedfield",{"_index":35,"name":{"49":{}},"parent":{}}],["embedfieldprops",{"_index":36,"name":{"50":{}},"parent":{"51":{}}}],["embedfieldprops.__type",{"_index":37,"name":{},"parent":{"52":{},"53":{},"54":{},"55":{}}}],["embedfooter",{"_index":40,"name":{"56":{}},"parent":{}}],["embedfooterprops",{"_index":41,"name":{"57":{}},"parent":{"58":{}}}],["embedfooterprops.__type",{"_index":42,"name":{},"parent":{"59":{},"60":{},"61":{},"62":{}}}],["embedimage",{"_index":43,"name":{"63":{}},"parent":{}}],["embedimageprops",{"_index":44,"name":{"64":{}},"parent":{"65":{}}}],["embedimageprops.__type",{"_index":45,"name":{},"parent":{"66":{}}}],["embedprops",{"_index":14,"name":{"15":{}},"parent":{"16":{}}}],["embedprops.__type",{"_index":16,"name":{},"parent":{"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"27":{},"28":{},"30":{},"31":{},"33":{},"34":{},"36":{},"37":{},"40":{},"41":{}}}],["embedprops.__type.__type",{"_index":23,"name":{},"parent":{"24":{},"25":{},"26":{},"29":{},"32":{},"35":{},"38":{},"39":{}}}],["embedthumbnail",{"_index":46,"name":{"67":{}},"parent":{}}],["embedthumbnailprops",{"_index":47,"name":{"68":{}},"parent":{"69":{}}}],["embedthumbnailprops.__type",{"_index":48,"name":{},"parent":{"70":{}}}],["embedtitle",{"_index":49,"name":{"71":{}},"parent":{}}],["embedtitleprops",{"_index":50,"name":{"72":{}},"parent":{"73":{}}}],["embedtitleprops.__type",{"_index":51,"name":{},"parent":{"74":{},"75":{}}}],["emoji",{"_index":10,"name":{"10":{},"81":{}},"parent":{}}],["fields",{"_index":20,"name":{"21":{}},"parent":{}}],["footer",{"_index":28,"name":{"36":{}},"parent":{}}],["iconurl",{"_index":24,"name":{"26":{},"39":{},"48":{},"61":{}},"parent":{}}],["image",{"_index":26,"name":{"30":{}},"parent":{}}],["inline",{"_index":39,"name":{"54":{}},"parent":{}}],["label",{"_index":6,"name":{"7":{},"79":{}},"parent":{}}],["link",{"_index":52,"name":{"76":{}},"parent":{}}],["linkprops",{"_index":53,"name":{"77":{}},"parent":{"78":{}}}],["linkprops.__type",{"_index":54,"name":{},"parent":{"79":{},"80":{},"81":{},"82":{},"83":{}}}],["maxinstances",{"_index":57,"name":{"87":{}},"parent":{}}],["name",{"_index":22,"name":{"24":{},"45":{},"52":{}},"parent":{}}],["onclick",{"_index":11,"name":{"11":{}},"parent":{}}],["reacord",{"_index":62,"name":{"92":{}},"parent":{"93":{},"94":{}}}],["reacordconfig",{"_index":55,"name":{"84":{}},"parent":{"85":{}}}],["reacordconfig.__type",{"_index":56,"name":{},"parent":{"86":{},"87":{}}}],["reacordinstance",{"_index":58,"name":{"88":{}},"parent":{"89":{}}}],["reacordinstance.__type",{"_index":60,"name":{},"parent":{"90":{},"91":{}}}],["render",{"_index":59,"name":{"90":{}},"parent":{}}],["style",{"_index":8,"name":{"8":{}},"parent":{}}],["text",{"_index":29,"name":{"38":{},"59":{}},"parent":{}}],["thumbnail",{"_index":25,"name":{"27":{}},"parent":{}}],["timestamp",{"_index":30,"name":{"40":{},"62":{}},"parent":{}}],["title",{"_index":15,"name":{"17":{}},"parent":{}}],["url",{"_index":18,"name":{"19":{},"25":{},"29":{},"32":{},"35":{},"47":{},"66":{},"70":{},"75":{},"83":{}},"parent":{}}],["value",{"_index":38,"name":{"53":{}},"parent":{}}],["video",{"_index":27,"name":{"33":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/assets/style.css b/docs/assets/style.css new file mode 100644 index 0000000..28f90b6 --- /dev/null +++ b/docs/assets/style.css @@ -0,0 +1,1388 @@ +@import url("./icons.css"); + +:root { + /* Light */ + --light-color-background: #fcfcfc; + --light-color-secondary-background: #fff; + --light-color-text: #222; + --light-color-text-aside: #707070; + --light-color-link: #4da6ff; + --light-color-menu-divider: #eee; + --light-color-menu-divider-focus: #000; + --light-color-menu-label: #707070; + --light-color-panel: var(--light-color-secondary-background); + --light-color-panel-divider: #eee; + --light-color-comment-tag: #707070; + --light-color-comment-tag-text: #fff; + --light-color-ts: #9600ff; + --light-color-ts-interface: #647f1b; + --light-color-ts-enum: #937210; + --light-color-ts-class: #0672de; + --light-color-ts-private: #707070; + --light-color-toolbar: #fff; + --light-color-toolbar-text: #333; + --light-icon-filter: invert(0); + --light-external-icon: url("data:image/svg+xml;utf8,"); + + /* Dark */ + --dark-color-background: #36393f; + --dark-color-secondary-background: #2f3136; + --dark-color-text: #ffffff; + --dark-color-text-aside: #e6e4e4; + --dark-color-link: #00aff4; + --dark-color-menu-divider: #eee; + --dark-color-menu-divider-focus: #000; + --dark-color-menu-label: #707070; + --dark-color-panel: var(--dark-color-secondary-background); + --dark-color-panel-divider: #818181; + --dark-color-comment-tag: #dcddde; + --dark-color-comment-tag-text: #2f3136; + --dark-color-ts: #c97dff; + --dark-color-ts-interface: #9cbe3c; + --dark-color-ts-enum: #d6ab29; + --dark-color-ts-class: #3695f3; + --dark-color-ts-private: #e2e2e2; + --dark-color-toolbar: #34373c; + --dark-color-toolbar-text: #ffffff; + --dark-icon-filter: invert(1); + --dark-external-icon: url("data:image/svg+xml;utf8,"); +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-secondary-background: var(--light-color-secondary-background); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-menu-divider: var(--light-color-menu-divider); + --color-menu-divider-focus: var(--light-color-menu-divider-focus); + --color-menu-label: var(--light-color-menu-label); + --color-panel: var(--light-color-panel); + --color-panel-divider: var(--light-color-panel-divider); + --color-comment-tag: var(--light-color-comment-tag); + --color-comment-tag-text: var(--light-color-comment-tag-text); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-private: var(--light-color-ts-private); + --color-toolbar: var(--light-color-toolbar); + --color-toolbar-text: var(--light-color-toolbar-text); + --icon-filter: var(--light-icon-filter); + --external-icon: var(--light-external-icon); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-secondary-background: var(--dark-color-secondary-background); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-menu-divider: var(--dark-color-menu-divider); + --color-menu-divider-focus: var(--dark-color-menu-divider-focus); + --color-menu-label: var(--dark-color-menu-label); + --color-panel: var(--dark-color-panel); + --color-panel-divider: var(--dark-color-panel-divider); + --color-comment-tag: var(--dark-color-comment-tag); + --color-comment-tag-text: var(--dark-color-comment-tag-text); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-private: var(--dark-color-ts-private); + --color-toolbar: var(--dark-color-toolbar); + --color-toolbar-text: var(--dark-color-toolbar-text); + --icon-filter: var(--dark-icon-filter); + --external-icon: var(--dark-external-icon); + } +} + +body { + margin: 0; +} + +body.light { + --color-background: var(--light-color-background); + --color-secondary-background: var(--light-color-secondary-background); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-menu-divider: var(--light-color-menu-divider); + --color-menu-divider-focus: var(--light-color-menu-divider-focus); + --color-menu-label: var(--light-color-menu-label); + --color-panel: var(--light-color-panel); + --color-panel-divider: var(--light-color-panel-divider); + --color-comment-tag: var(--light-color-comment-tag); + --color-comment-tag-text: var(--light-color-comment-tag-text); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-private: var(--light-color-ts-private); + --color-toolbar: var(--light-color-toolbar); + --color-toolbar-text: var(--light-color-toolbar-text); + --icon-filter: var(--light-icon-filter); + --external-icon: var(--light-external-icon); +} + +body.dark { + --color-background: var(--dark-color-background); + --color-secondary-background: var(--dark-color-secondary-background); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-menu-divider: var(--dark-color-menu-divider); + --color-menu-divider-focus: var(--dark-color-menu-divider-focus); + --color-menu-label: var(--dark-color-menu-label); + --color-panel: var(--dark-color-panel); + --color-panel-divider: var(--dark-color-panel-divider); + --color-comment-tag: var(--dark-color-comment-tag); + --color-comment-tag-text: var(--dark-color-comment-tag-text); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-private: var(--dark-color-ts-private); + --color-toolbar: var(--dark-color-toolbar); + --color-toolbar-text: var(--dark-color-toolbar-text); + --icon-filter: var(--dark-icon-filter); + --external-icon: var(--dark-external-icon); +} + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +h2 { + font-size: 1.5em; + margin: 0.83em 0; +} + +h3 { + font-size: 1.17em; + margin: 1em 0; +} + +h4, +.tsd-index-panel h3 { + font-size: 1em; + margin: 1.33em 0; +} + +h5 { + font-size: 0.83em; + margin: 1.67em 0; +} + +h6 { + font-size: 0.67em; + margin: 2.33em 0; +} + +pre { + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1200px; + margin: 0 auto; + padding: 0 40px; +} +@media (max-width: 640px) { + .container { + padding: 0 20px; + } +} + +.container-main { + padding-bottom: 200px; +} + +.row { + display: flex; + position: relative; + margin: 0 -10px; +} +.row:after { + visibility: hidden; + display: block; + content: ""; + clear: both; + height: 0; +} + +.col-4, +.col-8 { + box-sizing: border-box; + float: left; + padding: 0 10px; +} + +.col-4 { + width: 33.3333333333%; +} +.col-8 { + width: 66.6666666667%; +} + +ul.tsd-descriptions > li > :first-child, +.tsd-panel > :first-child, +.col-8 > :first-child, +.col-4 > :first-child, +ul.tsd-descriptions > li > :first-child > :first-child, +.tsd-panel > :first-child > :first-child, +.col-8 > :first-child > :first-child, +.col-4 > :first-child > :first-child, +ul.tsd-descriptions > li > :first-child > :first-child > :first-child, +.tsd-panel > :first-child > :first-child > :first-child, +.col-8 > :first-child > :first-child > :first-child, +.col-4 > :first-child > :first-child > :first-child { + margin-top: 0; +} +ul.tsd-descriptions > li > :last-child, +.tsd-panel > :last-child, +.col-8 > :last-child, +.col-4 > :last-child, +ul.tsd-descriptions > li > :last-child > :last-child, +.tsd-panel > :last-child > :last-child, +.col-8 > :last-child > :last-child, +.col-4 > :last-child > :last-child, +ul.tsd-descriptions > li > :last-child > :last-child > :last-child, +.tsd-panel > :last-child > :last-child > :last-child, +.col-8 > :last-child > :last-child > :last-child, +.col-4 > :last-child > :last-child > :last-child { + margin-bottom: 0; +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes shift-to-left { + from { + transform: translate(0, 0); + } + to { + transform: translate(-25%, 0); + } +} +@keyframes unshift-to-left { + from { + transform: translate(-25%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 14px; +} + +pre { + padding: 10px; +} +pre code { + padding: 0; + font-size: 100%; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography h4, +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; + margin: 0; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} + +@media (min-width: 901px) and (max-width: 1024px) { + html .col-content { + width: 72%; + } + html .col-menu { + width: 28%; + } + html .tsd-navigation { + padding-left: 10px; + } +} +@media (max-width: 900px) { + html .col-content { + float: none; + width: 100%; + } + html .col-menu { + position: fixed !important; + overflow: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + width: 100%; + padding: 20px 20px 0 0; + max-width: 450px; + visibility: hidden; + background-color: var(--color-panel); + transform: translate(100%, 0); + } + html .col-menu > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu :is(header, footer, .col-content) { + animation: shift-to-left 0.4s; + } + + .to-has-menu .col-menu { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu :is(header, footer, .col-content) { + animation: unshift-to-left 0.4s; + } + + .from-has-menu .col-menu { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu :is(header, footer, .col-content) { + transform: translate(-25%, 0); + } + .has-menu .col-menu { + visibility: visible; + transform: translate(0, 0); + display: grid; + grid-template-rows: auto 1fr; + max-height: 100vh; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +.tsd-page-title { + padding: 70px 0 20px 0; + margin: 0 0 40px 0; + background: var(--color-panel); + box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); +} +.tsd-page-title h1 { + margin: 0; +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +dl.tsd-comment-tags { + overflow: hidden; +} +dl.tsd-comment-tags dt { + float: left; + padding: 1px 5px; + margin: 0 10px 0 0; + border-radius: 4px; + border: 1px solid var(--color-comment-tag); + color: var(--color-comment-tag); + font-size: 0.8em; + font-weight: normal; +} +dl.tsd-comment-tags dd { + margin: 0 0 10px 0; +} +dl.tsd-comment-tags dd:before, +dl.tsd-comment-tags dd:after { + display: table; + content: " "; +} +dl.tsd-comment-tags dd pre, +dl.tsd-comment-tags dd:after { + clear: both; +} +dl.tsd-comment-tags p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.toggle-protected .tsd-is-private { + display: none; +} + +.toggle-public .tsd-is-private, +.toggle-public .tsd-is-protected, +.toggle-public .tsd-is-private-protected { + display: none; +} + +.toggle-inherited .tsd-is-inherited { + display: none; +} + +.toggle-externals .tsd-is-external { + display: none; +} + +#tsd-filter { + position: relative; + display: inline-block; + height: 40px; + vertical-align: bottom; +} +.no-filter #tsd-filter { + display: none; +} +#tsd-filter .tsd-filter-group { + display: inline-block; + height: 40px; + vertical-align: bottom; + white-space: nowrap; +} +#tsd-filter input { + display: none; +} +@media (max-width: 900px) { + #tsd-filter .tsd-filter-group { + display: block; + position: absolute; + top: 40px; + right: 20px; + height: auto; + background-color: var(--color-panel); + visibility: hidden; + transform: translate(50%, 0); + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + } + .has-options #tsd-filter .tsd-filter-group { + visibility: visible; + } + .to-has-options #tsd-filter .tsd-filter-group { + animation: fade-in 0.2s; + } + .from-has-options #tsd-filter .tsd-filter-group { + animation: fade-out 0.2s; + } + #tsd-filter label, + #tsd-filter .tsd-select { + display: block; + padding-right: 20px; + } +} + +footer { + border-top: 1px solid var(--color-panel-divider); + background-color: var(--color-panel); +} +footer:after { + content: ""; + display: table; +} +footer.with-border-bottom { + border-bottom: 1px solid var(--color-panel-divider); +} +footer .tsd-legend-group { + font-size: 0; +} +footer .tsd-legend { + display: inline-block; + width: 25%; + padding: 0; + font-size: 16px; + list-style: none; + line-height: 1.333em; + vertical-align: top; +} +@media (max-width: 900px) { + footer .tsd-legend { + width: 50%; + } +} + +.tsd-hierarchy { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-index-panel .tsd-index-content { + margin-bottom: -30px !important; +} +.tsd-index-panel .tsd-index-section { + margin-bottom: 30px !important; +} +.tsd-index-panel h3 { + margin: 0 -20px 10px -20px; + padding: 0 20px 10px 20px; + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 3; + -moz-column-count: 3; + -ms-column-count: 3; + -o-column-count: 3; + column-count: 3; + -webkit-column-gap: 20px; + -moz-column-gap: 20px; + -ms-column-gap: 20px; + -o-column-gap: 20px; + column-gap: 20px; + padding: 0; + list-style: none; + line-height: 1.333em; +} +@media (max-width: 900px) { + .tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 1; + -moz-column-count: 1; + -ms-column-count: 1; + -o-column-count: 1; + column-count: 1; + } +} +@media (min-width: 901px) and (max-width: 1024px) { + .tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 2; + -moz-column-count: 2; + -ms-column-count: 2; + -o-column-count: 2; + column-count: 2; + } +} +.tsd-index-panel ul.tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} +.tsd-index-panel a, +.tsd-index-panel .tsd-parent-kind-module a { + color: var(--color-ts); +} +.tsd-index-panel .tsd-parent-kind-interface a { + color: var(--color-ts-interface); +} +.tsd-index-panel .tsd-parent-kind-enum a { + color: var(--color-ts-enum); +} +.tsd-index-panel .tsd-parent-kind-class a { + color: var(--color-ts-class); +} +.tsd-index-panel .tsd-kind-module a { + color: var(--color-ts); +} +.tsd-index-panel .tsd-kind-interface a { + color: var(--color-ts-interface); +} +.tsd-index-panel .tsd-kind-enum a { + color: var(--color-ts-enum); +} +.tsd-index-panel .tsd-kind-class a { + color: var(--color-ts-class); +} +.tsd-index-panel .tsd-is-private a { + color: var(--color-ts-private); +} + +.tsd-flag { + display: inline-block; + padding: 1px 5px; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 14px; + font-weight: normal; +} + +.tsd-anchor { + position: absolute; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} +.tsd-member [data-tsd-kind] { + color: var(--color-ts); +} +.tsd-member [data-tsd-kind="Interface"] { + color: var(--color-ts-interface); +} +.tsd-member [data-tsd-kind="Enum"] { + color: var(--color-ts-enum); +} +.tsd-member [data-tsd-kind="Class"] { + color: var(--color-ts-class); +} +.tsd-member [data-tsd-kind="Private"] { + color: var(--color-ts-private); +} + +.tsd-navigation { + margin: 0 0 0 40px; +} +.tsd-navigation a { + display: block; + padding-top: 2px; + padding-bottom: 2px; + border-left: 2px solid transparent; + color: var(--color-text); + text-decoration: none; + transition: border-left-color 0.1s; +} +.tsd-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul { + margin: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li { + padding: 0; +} + +.tsd-navigation.primary { + padding-bottom: 40px; +} +.tsd-navigation.primary a { + display: block; + padding-top: 6px; + padding-bottom: 6px; +} +.tsd-navigation.primary ul li a { + padding-left: 5px; +} +.tsd-navigation.primary ul li li a { + padding-left: 25px; +} +.tsd-navigation.primary ul li li li a { + padding-left: 45px; +} +.tsd-navigation.primary ul li li li li a { + padding-left: 65px; +} +.tsd-navigation.primary ul li li li li li a { + padding-left: 85px; +} +.tsd-navigation.primary ul li li li li li li a { + padding-left: 105px; +} +.tsd-navigation.primary > ul { + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-navigation.primary li { + border-top: 1px solid var(--color-panel-divider); +} +.tsd-navigation.primary li.current > a { + font-weight: bold; +} +.tsd-navigation.primary li.label span { + display: block; + padding: 20px 0 6px 5px; + color: var(--color-menu-label); +} +.tsd-navigation.primary li.globals + li > span, +.tsd-navigation.primary li.globals + li > a { + padding-top: 20px; +} + +.tsd-navigation.secondary { + max-height: calc(100vh - 1rem - 40px); + overflow: auto; + position: sticky; + top: calc(0.5rem + 40px); + transition: 0.3s; +} +.tsd-navigation.secondary.tsd-navigation--toolbar-hide { + max-height: calc(100vh - 1rem); + top: 0.5rem; +} +.tsd-navigation.secondary ul { + transition: opacity 0.2s; +} +.tsd-navigation.secondary ul li a { + padding-left: 25px; +} +.tsd-navigation.secondary ul li li a { + padding-left: 45px; +} +.tsd-navigation.secondary ul li li li a { + padding-left: 65px; +} +.tsd-navigation.secondary ul li li li li a { + padding-left: 85px; +} +.tsd-navigation.secondary ul li li li li li a { + padding-left: 105px; +} +.tsd-navigation.secondary ul li li li li li li a { + padding-left: 125px; +} +.tsd-navigation.secondary ul.current a { + border-left-color: var(--color-panel-divider); +} +.tsd-navigation.secondary li.focus > a, +.tsd-navigation.secondary ul.current li.focus > a { + border-left-color: var(--color-menu-divider-focus); +} +.tsd-navigation.secondary li.current { + margin-top: 20px; + margin-bottom: 20px; + border-left-color: var(--color-panel-divider); +} +.tsd-navigation.secondary li.current > a { + font-weight: bold; +} + +@media (min-width: 901px) { + .menu-sticky-wrap { + position: static; + } +} + +.tsd-panel { + margin: 20px 0; + padding: 20px; + background-color: var(--color-panel); + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5em -20px 10px -20px; + padding: 0 20px 10px 20px; + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: 0; +} +.tsd-panel table { + display: block; + width: 100%; + overflow: auto; + margin-top: 10px; + word-break: normal; + word-break: keep-all; + border-collapse: collapse; +} +.tsd-panel table th { + font-weight: bold; +} +.tsd-panel table th, +.tsd-panel table td { + padding: 6px 13px; + border: 1px solid var(--color-panel-divider); +} +.tsd-panel table tr { + background: var(--color-background); +} +.tsd-panel table tr:nth-child(even) { + background: var(--color-secondary-background); +} + +.tsd-panel-group { + margin: 60px 0; +} +.tsd-panel-group > h1, +.tsd-panel-group > h2, +.tsd-panel-group > h3 { + padding-left: 20px; + padding-right: 20px; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 40px; + height: 40px; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + padding: 0 10px; + background-color: var(--color-background); +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-panel); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current, +#tsd-search .results li:hover { + background-color: var(--color-panel-divider); +} +#tsd-search .results a { + display: block; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-panel-divider); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +.tsd-signature { + margin: 0 0 1em 0; + padding: 10px; + border: 1px solid var(--color-panel-divider); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} +.tsd-signature.tsd-kind-icon { + padding-left: 30px; +} +.tsd-signature.tsd-kind-icon:before { + top: 10px; + left: 10px; +} +.tsd-panel > .tsd-signature { + margin-left: -20px; + margin-right: -20px; + border-width: 1px 0; +} +.tsd-panel > .tsd-signature.tsd-kind-icon { + padding-left: 40px; +} +.tsd-panel > .tsd-signature.tsd-kind-icon:before { + left: 20px; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + border: 1px solid var(--color-panel-divider); +} +.tsd-signatures .tsd-signature { + margin: 0; + border-width: 1px 0 0 0; + transition: background-color 0.1s; +} +.tsd-signatures .tsd-signature:first-child { + border-top-width: 0; +} +.tsd-signatures .tsd-signature.current { + background-color: var(--color-panel-divider); +} +.tsd-signatures.active > .tsd-signature { + cursor: pointer; +} +.tsd-panel > .tsd-signatures { + margin-left: -20px; + margin-right: -20px; + border-width: 1px 0; +} +.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { + padding-left: 40px; +} +.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { + left: 20px; +} +.tsd-panel > a.anchor + .tsd-signatures { + border-top-width: 0; + margin-top: -20px; +} + +ul.tsd-descriptions { + position: relative; + overflow: hidden; + padding: 0; + list-style: none; +} +ul.tsd-descriptions.active > .tsd-description { + display: none; +} +ul.tsd-descriptions.active > .tsd-description.current { + display: block; +} +ul.tsd-descriptions.active > .tsd-description.fade-in { + animation: fade-in-delayed 0.3s; +} +ul.tsd-descriptions.active > .tsd-description.fade-out { + animation: fade-out-delayed 0.3s; + position: absolute; + display: block; + top: 0; + left: 0; + right: 0; + opacity: 0; + visibility: hidden; +} +ul.tsd-descriptions h4, +ul.tsd-descriptions .tsd-index-panel h3, +.tsd-index-panel ul.tsd-descriptions h3 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} + +ul.tsd-parameters, +ul.tsd-type-parameters { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameters > li.tsd-parameter-signature, +ul.tsd-type-parameters > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameters h5, +ul.tsd-type-parameters h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +ul.tsd-parameters .tsd-comment, +ul.tsd-type-parameters .tsd-comment { + margin-top: -0.5em; +} + +.tsd-sources { + font-size: 14px; + color: var(--color-text-aside); + margin: 0 0 1em 0; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul, +.tsd-sources p { + margin: 0 !important; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: fixed; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 40px; + color: var(--color-toolbar-text); + background: var(--color-toolbar); + border-bottom: 1px solid var(--color-panel-divider); + transition: transform 0.3s linear; +} +.tsd-page-toolbar a { + color: var(--color-toolbar-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .table-wrap { + display: table; + width: 100%; + height: 40px; +} +.tsd-page-toolbar .table-cell { + display: table-cell; + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} + +.tsd-page-toolbar--hide { + transform: translateY(-100%); +} + +.tsd-select .tsd-select-list li:before, +.tsd-select .tsd-select-label:before, +.tsd-widget:before { + content: ""; + display: inline-block; + width: 40px; + height: 40px; + margin: 0 -8px 0 0; + background-image: url(./widgets.png); + background-repeat: no-repeat; + text-indent: -1024px; + vertical-align: bottom; + filter: var(--icon-filter); +} +@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { + .tsd-select .tsd-select-list li:before, + .tsd-select .tsd-select-label:before, + .tsd-widget:before { + background-image: url(./widgets@2x.png); + background-size: 320px 40px; + } +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-panel-divider); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} +.tsd-widget.search:before { + background-position: 0 0; +} +.tsd-widget.menu:before { + background-position: -40px 0; +} +.tsd-widget.options:before { + background-position: -80px 0; +} +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +@media (max-width: 900px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +.tsd-select { + position: relative; + display: inline-block; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-select .tsd-select-label { + opacity: 0.6; + transition: opacity 0.2s; +} +.tsd-select .tsd-select-label:before { + background-position: -240px 0; +} +.tsd-select.active .tsd-select-label { + opacity: 0.8; +} +.tsd-select.active .tsd-select-list { + visibility: visible; + opacity: 1; + transition-delay: 0s; +} +.tsd-select .tsd-select-list { + position: absolute; + visibility: hidden; + top: 40px; + left: 0; + margin: 0; + padding: 0; + opacity: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + transition: visibility 0s 0.2s, opacity 0.2s; +} +.tsd-select .tsd-select-list li { + padding: 0 20px 0 0; + background-color: var(--color-background); +} +.tsd-select .tsd-select-list li:before { + background-position: 40px 0; +} +.tsd-select .tsd-select-list li:nth-child(even) { + background-color: var(--color-panel); +} +.tsd-select .tsd-select-list li:hover { + background-color: var(--color-panel-divider); +} +.tsd-select .tsd-select-list li.selected:before { + background-position: -200px 0; +} +@media (max-width: 900px) { + .tsd-select .tsd-select-list { + top: 0; + left: auto; + right: 100%; + margin-right: -5px; + } + .tsd-select .tsd-select-label:before { + background-position: -280px 0; + } +} + +img { + max-width: 100%; +} diff --git a/docs/assets/widgets.png b/docs/assets/widgets.png new file mode 100644 index 0000000000000000000000000000000000000000..c7380532ac1b45400620011c37c4dcb7aec27a4c GIT binary patch literal 480 zcmeAS@N?(olHy`uVBq!ia0y~yV02($V9?-TVPIfT^?bdEfq`+kr;B4q1>@UWfomT- z@U%W;PE-&%!-%# zU00_wF~EV1iO$!6kmg%K&EC_?O=E8Me+V^QEv45I>FT-oR?zFvz-xw{Z=GYW_5awq zG;Qy+S=V0+3(l#NJ-#G)Q|+!_|F_=Cwi7&1{^qatuZ913uCT>1vli6cUi(7e{ehZF zhRJHaa^LqyMsL2$oV?@f@#c-~8?{(@7xW&{Y`CUh@Mo4UCzQ&wLp6h65z(>FVdQ&MBb@0G%$)mH+?% literal 0 HcmV?d00001 diff --git a/docs/assets/widgets@2x.png b/docs/assets/widgets@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..4bbbd57272f3b28f47527d4951ad10f950b8ad43 GIT binary patch literal 855 zcmeAS@N?(olHy`uVBq!ia0y~yU}|7sUhmrT9uF z5EFrC%-wu*u5jDK1;&vaE$6@2-}1@`{eOFdZO)=k)+u>0IyZW9lIHx?XKBcox`%0d z%k{+{tqw~FFR|cL;}YNc@8iVl#UHIMpUHoA^2mwqnQLQs(#)RkGO6;f(1}auwrKG^ zW8cx7suy;mYt9dkU)T0GaWTJc&6Hbj%q)}td>M1XHNg)LrtRcj;ozqkt;&4hHgJ8s&IjkMa4j*!r zxL(Q=)1#)j;5kb}nWfuJ`%R&f8qS`%xny2tgfhePsY{m2HYCfMu%6k`pk;Zictt$- z&vb@O`UVrt7gnhDR5AUU#js*c;U|H4!J&V$brW9udfY6NeAwI7FfX{qcNL4yqpRE= zdPP~r|4Y0Iew+1hTl|>k;(vf8C4RCOV|Rsa=*R9hM^-b%ScgsPJ-Hcea^5DekFln{j`d^u*eU#Zc=T@BrH!N7J!W+ai?QJZ>TK|H1!J@o8-`Tu)l;7MD_-)YS=6Cj5oyvXQ5Q*cncBZ~$ z%6f9;&cA?5FWI;_D!w&_xZaYE5VJM^uuDiscordJsAdapter | reacord
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class DiscordJsAdapter

Hierarchy

  • DiscordJsAdapter

Implements

  • Adapter<Discord.CommandInteraction>

Index

Constructors

Constructors

constructor

Legend

  • Constructor
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/Reacord.html b/docs/classes/Reacord.html new file mode 100644 index 0000000..cf93085 --- /dev/null +++ b/docs/classes/Reacord.html @@ -0,0 +1 @@ +Reacord | reacord
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Reacord<InteractionInit>

Type parameters

  • InteractionInit

Hierarchy

  • Reacord

Index

Constructors

constructor

Methods

createCommandReply

Legend

  • Constructor
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..7b9e2b2 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,6 @@ +reacord
Options
All
  • Public
  • Public/Protected
  • All
Menu

reacord

Legend

  • Constructor
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html new file mode 100644 index 0000000..ecf2eab --- /dev/null +++ b/docs/modules.html @@ -0,0 +1,4 @@ +reacord
Options
All
  • Public
  • Public/Protected
  • All
Menu

reacord

Index

Type aliases

Adapter

Adapter<InteractionInit>: { }

Type parameters

  • InteractionInit

Type declaration

    ButtonClickEvent

    ButtonClickEvent: {}

    Type declaration

      ButtonProps

      ButtonProps: { disabled?: boolean; emoji?: string; label?: string; style?: "primary" | "secondary" | "success" | "danger"; onClick: any }

      Type declaration

      • Optional disabled?: boolean
      • Optional emoji?: string
      • Optional label?: string
      • Optional style?: "primary" | "secondary" | "success" | "danger"
      • onClick:function

      EmbedAuthorProps

      EmbedAuthorProps: { children?: string; iconUrl?: string; name?: string; url?: string }

      Type declaration

      • Optional children?: string
      • Optional iconUrl?: string
      • Optional name?: string
      • Optional url?: string

      EmbedFieldProps

      EmbedFieldProps: { children?: string; inline?: boolean; name: string; value?: string }

      Type declaration

      • Optional children?: string
      • Optional inline?: boolean
      • name: string
      • Optional value?: string

      EmbedFooterProps

      EmbedFooterProps: { children?: string; iconUrl?: string; text?: string; timestamp?: string | number | Date }

      Type declaration

      • Optional children?: string
      • Optional iconUrl?: string
      • Optional text?: string
      • Optional timestamp?: string | number | Date

      EmbedImageProps

      EmbedImageProps: { url: string }

      Type declaration

      • url: string

      EmbedProps

      EmbedProps: { author?: { iconUrl?: string; name: string; url?: string }; children?: React.ReactNode; color?: number; description?: string; fields?: { inline?: boolean; name: string; value: string }[]; footer?: { iconUrl?: string; text: string }; image?: { url: string }; thumbnail?: { url: string }; timestamp?: string | number | Date; title?: string; url?: string; video?: { url: string } }

      Type declaration

      • Optional author?: { iconUrl?: string; name: string; url?: string }
        • Optional iconUrl?: string
        • name: string
        • Optional url?: string
      • Optional children?: React.ReactNode
      • Optional color?: number
      • Optional description?: string
      • Optional fields?: { inline?: boolean; name: string; value: string }[]
      • Optional footer?: { iconUrl?: string; text: string }
        • Optional iconUrl?: string
        • text: string
      • Optional image?: { url: string }
        • url: string
      • Optional thumbnail?: { url: string }
        • url: string
      • Optional timestamp?: string | number | Date
      • Optional title?: string
      • Optional url?: string
      • Optional video?: { url: string }
        • url: string

      EmbedThumbnailProps

      EmbedThumbnailProps: { url: string }

      Type declaration

      • url: string

      EmbedTitleProps

      EmbedTitleProps: { children: string; url?: string }

      Type declaration

      • children: string
      • Optional url?: string

      LinkProps

      LinkProps: { children?: string; disabled?: boolean; emoji?: string; label?: string; url: string }

      Type declaration

      • Optional children?: string
      • Optional disabled?: boolean
      • Optional emoji?: string
      • Optional label?: string
      • url: string

      ReacordConfig

      ReacordConfig<InteractionInit>: { adapter: Adapter<InteractionInit>; maxInstances?: number }

      Type parameters

      • InteractionInit

      Type declaration

      • adapter: Adapter<InteractionInit>
      • Optional maxInstances?: number
        +

        The max number of active instances. +When this limit is exceeded, the oldest instances will be disabled.

        +

      ReacordInstance

      ReacordInstance: { deactivate: any; render: any }

      Type declaration

      • deactivate:function
        • deactivate(): void
      • render:function
        • render(content: ReactNode): void

      Functions

      Button

      Embed

      EmbedAuthor

      EmbedField

      EmbedFooter

      EmbedImage

      EmbedThumbnail

      EmbedTitle

      Link

      Legend

      • Constructor
      • Method

      Settings

      Theme

      Generated using TypeDoc

      \ No newline at end of file diff --git a/library/adapter/adapter.ts b/library/adapter/adapter.ts index 48f0d4d..1007e9a 100644 --- a/library/adapter/adapter.ts +++ b/library/adapter/adapter.ts @@ -1,9 +1,15 @@ import type { CommandInteraction, ComponentInteraction } from "../interaction" export type Adapter = { + /** + * @internal + */ addComponentInteractionListener( listener: (interaction: ComponentInteraction) => void, ): void + /** + * @internal + */ createCommandInteraction(interactionInfo: InteractionInit): CommandInteraction } diff --git a/library/adapter/discord-js-adapter.ts b/library/adapter/discord-js-adapter.ts index 8c14d44..7f418f9 100644 --- a/library/adapter/discord-js-adapter.ts +++ b/library/adapter/discord-js-adapter.ts @@ -8,6 +8,9 @@ import type { Adapter } from "./adapter" export class DiscordJsAdapter implements Adapter { constructor(private client: Discord.Client) {} + /** + * @internal + */ addComponentInteractionListener( listener: (interaction: ComponentInteraction) => void, ) { @@ -18,6 +21,9 @@ export class DiscordJsAdapter implements Adapter { }) } + /** + * @internal + */ // eslint-disable-next-line class-methods-use-this createCommandInteraction( interaction: Discord.CommandInteraction, diff --git a/library/button.tsx b/library/button.tsx index 049b323..c58e2f1 100644 --- a/library/button.tsx +++ b/library/button.tsx @@ -2,7 +2,7 @@ import { nanoid } from "nanoid" import React from "react" import { last } from "../helpers/last.js" import { ReacordElement } from "./element.js" -import type { ButtonInteraction, ComponentInteraction } from "./interaction" +import type { ComponentInteraction } from "./interaction" import type { MessageOptions } from "./message" import { Node } from "./node.js" @@ -11,9 +11,11 @@ export type ButtonProps = { style?: "primary" | "secondary" | "success" | "danger" disabled?: boolean emoji?: string - onClick: (interaction: ButtonInteraction) => void + onClick: (event: ButtonClickEvent) => void } +export type ButtonClickEvent = {} + export function Button(props: ButtonProps) { return ( new ButtonNode(props)} /> diff --git a/library/embed/embed-options.ts b/library/embed/embed-options.ts index 0ae3eb6..91170fd 100644 --- a/library/embed/embed-options.ts +++ b/library/embed/embed-options.ts @@ -1,19 +1,8 @@ -export type EmbedOptions = { - title?: string - description?: string - url?: string - timestamp?: string - color?: number - fields?: EmbedFieldOptions[] - author?: { name: string; url?: string; icon_url?: string } - thumbnail?: { url: string } - image?: { url: string } - video?: { url: string } - footer?: { text: string; icon_url?: string } -} +import type { Except, SnakeCasedPropertiesDeep } from "type-fest" +import type { EmbedProps } from "./embed" -export type EmbedFieldOptions = { - name: string - value: string - inline?: boolean -} +export type EmbedOptions = SnakeCasedPropertiesDeep< + Except & { + timestamp?: string + } +> diff --git a/library/embed/embed.tsx b/library/embed/embed.tsx index 0722039..7c05678 100644 --- a/library/embed/embed.tsx +++ b/library/embed/embed.tsx @@ -1,5 +1,4 @@ import React from "react" -import type { CamelCasedPropertiesDeep } from "type-fest" import { snakeCaseDeep } from "../../helpers/convert-object-property-case" import { omit } from "../../helpers/omit" import { ReacordElement } from "../element.js" @@ -8,10 +7,17 @@ import { Node } from "../node.js" import { EmbedChildNode } from "./embed-child.js" import type { EmbedOptions } from "./embed-options" -export type EmbedProps = Omit< - CamelCasedPropertiesDeep, - "timestamp" -> & { +export type EmbedProps = { + title?: string + description?: string + url?: string + color?: number + fields?: Array<{ name: string; value: string; inline?: boolean }> + author?: { name: string; url?: string; iconUrl?: string } + thumbnail?: { url: string } + image?: { url: string } + video?: { url: string } + footer?: { text: string; iconUrl?: string } timestamp?: string | number | Date children?: React.ReactNode } diff --git a/library/main.ts b/library/main.ts index a200167..899eb32 100644 --- a/library/main.ts +++ b/library/main.ts @@ -1,6 +1,5 @@ export * from "./adapter/adapter" export * from "./adapter/discord-js-adapter" -export * from "./adapter/test-adapter" export * from "./button" export * from "./embed/embed" export * from "./embed/embed-author" @@ -9,7 +8,5 @@ export * from "./embed/embed-footer" export * from "./embed/embed-image" export * from "./embed/embed-thumbnail" export * from "./embed/embed-title" -export * from "./interaction" export * from "./link" -export * from "./message" export * from "./reacord" diff --git a/library/testing.ts b/library/testing.ts new file mode 100644 index 0000000..b255080 --- /dev/null +++ b/library/testing.ts @@ -0,0 +1 @@ +export * from "./adapter/test-adapter" diff --git a/package.json b/package.json index 89524b1..539cbca 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,8 @@ "test-watch": "pnpm test -- --watch", "coverage": "pnpm test -- --coverage", "typecheck": "tsc --noEmit", - "playground": "nodemon --exec esmo --ext ts,tsx ./playground/main.tsx" + "playground": "nodemon --exec esmo --ext ts,tsx ./playground/main.tsx", + "docs": "typedoc library/main.ts --out docs --excludePrivate --excludeProtected --excludeInternal" }, "dependencies": { "@types/node": "*", @@ -67,6 +68,7 @@ "react": "^17.0.2", "tsup": "^5.11.9", "type-fest": "^2.8.0", + "typedoc": "^0.22.10", "typescript": "^4.5.4" }, "resolutions": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5b418c3..303e28d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -39,6 +39,7 @@ importers: rxjs: ^7.4.0 tsup: ^5.11.9 type-fest: ^2.8.0 + typedoc: ^0.22.10 typescript: ^4.5.4 dependencies: '@types/node': 17.0.4 @@ -74,6 +75,7 @@ importers: react: 17.0.2 tsup: 5.11.9_typescript@4.5.4 type-fest: 2.8.0 + typedoc: 0.22.10_typescript@4.5.4 typescript: 4.5.4 packages/helpers: @@ -4959,6 +4961,10 @@ packages: yallist: 4.0.0 dev: true + /lunr/2.3.9: + resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} + dev: true + /make-dir/3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} @@ -4984,6 +4990,12 @@ packages: object-visit: 1.0.1 dev: true + /marked/3.0.8: + resolution: {integrity: sha512-0gVrAjo5m0VZSJb4rpL59K1unJAMb/hm8HRXqasD8VeC8m91ytDPMritgFSlKonfdt+rRYYpP/JfLxgIX8yoSw==} + engines: {node: '>= 12'} + hasBin: true + dev: true + /merge-stream/2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} dev: true @@ -6103,6 +6115,14 @@ packages: engines: {node: '>=8'} dev: true + /shiki/0.9.15: + resolution: {integrity: sha512-/Y0z9IzhJ8nD9nbceORCqu6NgT9X6I8Fk8c3SICHI5NbZRLdZYFaB233gwct9sU0vvSypyaL/qaKvzyQGJBZSw==} + dependencies: + jsonc-parser: 3.0.0 + vscode-oniguruma: 1.6.1 + vscode-textmate: 5.2.0 + dev: true + /side-channel/1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: @@ -6669,6 +6689,21 @@ packages: is-typedarray: 1.0.0 dev: true + /typedoc/0.22.10_typescript@4.5.4: + resolution: {integrity: sha512-hQYZ4WtoMZ61wDC6w10kxA42+jclWngdmztNZsDvIz7BMJg7F2xnT+uYsUa7OluyKossdFj9E9Ye4QOZKTy8SA==} + engines: {node: '>= 12.10.0'} + hasBin: true + peerDependencies: + typescript: 4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x + dependencies: + glob: 7.2.0 + lunr: 2.3.9 + marked: 3.0.8 + minimatch: 3.0.4 + shiki: 0.9.15 + typescript: 4.5.4 + dev: true + /typescript/4.5.4: resolution: {integrity: sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==} engines: {node: '>=4.2.0'} @@ -6789,6 +6824,14 @@ packages: spdx-expression-parse: 3.0.1 dev: true + /vscode-oniguruma/1.6.1: + resolution: {integrity: sha512-vc4WhSIaVpgJ0jJIejjYxPvURJavX6QG41vu0mGhqywMkQqulezEqEQ3cO3gc8GvcOpX6ycmKGqRoROEMBNXTQ==} + dev: true + + /vscode-textmate/5.2.0: + resolution: {integrity: sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ==} + dev: true + /w3c-hr-time/1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} dependencies: diff --git a/test/assert-messages.ts b/test/assert-messages.ts index b63769f..299477a 100644 --- a/test/assert-messages.ts +++ b/test/assert-messages.ts @@ -1,7 +1,7 @@ import { nextTick } from "node:process" import { promisify } from "node:util" import { omit } from "../helpers/omit" -import type { TestAdapter } from "../library/main" +import type { TestAdapter } from "../library/testing" const nextTickPromise = promisify(nextTick) diff --git a/test/embed.test.tsx b/test/embed.test.tsx index dd9c518..8a9001d 100644 --- a/test/embed.test.tsx +++ b/test/embed.test.tsx @@ -8,9 +8,8 @@ import { EmbedThumbnail, EmbedTitle, Reacord, - TestAdapter, - TestCommandInteraction, } from "../library/main" +import { TestAdapter, TestCommandInteraction } from "../library/testing" import { assertMessages } from "./assert-messages" const adapter = new TestAdapter() diff --git a/test/link.test.tsx b/test/link.test.tsx index d09b1fa..5df8cee 100644 --- a/test/link.test.tsx +++ b/test/link.test.tsx @@ -1,10 +1,6 @@ import React from "react" -import { - Link, - Reacord, - TestAdapter, - TestCommandInteraction, -} from "../library/main" +import { Link, Reacord } from "../library/main" +import { TestAdapter, TestCommandInteraction } from "../library/testing" import { assertMessages } from "./assert-messages" const adapter = new TestAdapter() diff --git a/test/reacord.test.tsx b/test/reacord.test.tsx index cbbec72..3b2a66e 100644 --- a/test/reacord.test.tsx +++ b/test/reacord.test.tsx @@ -1,13 +1,6 @@ import * as React from "react" -import { - Button, - Embed, - EmbedField, - EmbedTitle, - Reacord, - TestAdapter, - TestCommandInteraction, -} from "../library/main" +import { Button, Embed, EmbedField, EmbedTitle, Reacord } from "../library/main" +import { TestAdapter, TestCommandInteraction } from "../library/testing" import { assertMessages } from "./assert-messages" test("rendering behavior", async () => { diff --git a/tsconfig.json b/tsconfig.json index c0606c6..fd80070 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,5 +3,10 @@ "compilerOptions": { "noImplicitOverride": true }, - "exclude": ["**/node_modules/**", "**/coverage/**", "**/dist/**"] + "exclude": [ + "**/node_modules/**", + "**/coverage/**", + "**/dist/**", + "**/docs/**" + ] } diff --git a/typedoc.json b/typedoc.json new file mode 100644 index 0000000..1d2a010 --- /dev/null +++ b/typedoc.json @@ -0,0 +1,8 @@ +{ + "entryPoints": ["library/main.ts"], + "excludeInternal": true, + "excludePrivate": true, + "excludeProtected": true, + "categoryOrder": ["Classes", "Functions", "*"], + "categorizeByGroup": false +}