diff --git a/documentation/client/assets/highlight.css b/documentation/client/assets/highlight.css new file mode 100644 index 0000000000..bb8041967a --- /dev/null +++ b/documentation/client/assets/highlight.css @@ -0,0 +1,99 @@ +:root { + --light-hl-0: #0000FF; + --dark-hl-0: #569CD6; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #0070C1; + --dark-hl-2: #4FC1FF; + --light-hl-3: #795E26; + --dark-hl-3: #DCDCAA; + --light-hl-4: #A31515; + --dark-hl-4: #CE9178; + --light-hl-5: #008000; + --dark-hl-5: #6A9955; + --light-hl-6: #001080; + --dark-hl-6: #9CDCFE; + --light-hl-7: #098658; + --dark-hl-7: #B5CEA8; + --light-hl-8: #267F99; + --dark-hl-8: #4EC9B0; + --light-hl-9: #AF00DB; + --dark-hl-9: #C586C0; + --light-hl-10: #000000; + --dark-hl-10: #C8C8C8; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --code-background: var(--dark-code-background); +} } + +body.light { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --code-background: var(--light-code-background); +} + +body.dark { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +.hl-8 { color: var(--hl-8); } +.hl-9 { color: var(--hl-9); } +.hl-10 { color: var(--hl-10); } +pre, code { background: var(--code-background); } diff --git a/documentation/client/assets/icons.css b/documentation/client/assets/icons.css new file mode 100644 index 0000000000..776a3562d6 --- /dev/null +++ b/documentation/client/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/documentation/client/assets/icons.png b/documentation/client/assets/icons.png new file mode 100644 index 0000000000..3836d5fe46 Binary files /dev/null and b/documentation/client/assets/icons.png differ diff --git a/documentation/client/assets/icons@2x.png b/documentation/client/assets/icons@2x.png new file mode 100644 index 0000000000..5a209e2f6d Binary files /dev/null and b/documentation/client/assets/icons@2x.png differ diff --git a/documentation/client/assets/main.js b/documentation/client/assets/main.js new file mode 100644 index 0000000000..61009a4baa --- /dev/null +++ b/documentation/client/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/documentation/client/assets/search.js b/documentation/client/assets/search.js new file mode 100644 index 0000000000..e532fbdc62 --- /dev/null +++ b/documentation/client/assets/search.js @@ -0,0 +1 @@ +window.searchData = {"kinds":{"2":"Module","8":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":2,"name":"index","url":"modules/index.html","classes":"tsd-kind-module"},{"id":1,"kind":64,"name":"createClient","url":"modules/index.html#createClient","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"index"},{"id":2,"kind":64,"name":"commandOptions","url":"modules/index.html#commandOptions","classes":"tsd-kind-function tsd-parent-kind-module","parent":"index"},{"id":3,"kind":64,"name":"createCluster","url":"modules/index.html#createCluster","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"index"},{"id":4,"kind":2,"name":"lib/client/commands-queue","url":"modules/lib_client_commands_queue.html","classes":"tsd-kind-module"},{"id":5,"kind":256,"name":"QueueCommandOptions","url":"interfaces/lib_client_commands_queue.QueueCommandOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/client/commands-queue"},{"id":6,"kind":1024,"name":"asap","url":"interfaces/lib_client_commands_queue.QueueCommandOptions.html#asap","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client/commands-queue.QueueCommandOptions"},{"id":7,"kind":1024,"name":"chainId","url":"interfaces/lib_client_commands_queue.QueueCommandOptions.html#chainId","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client/commands-queue.QueueCommandOptions"},{"id":8,"kind":1024,"name":"signal","url":"interfaces/lib_client_commands_queue.QueueCommandOptions.html#signal","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client/commands-queue.QueueCommandOptions"},{"id":9,"kind":1024,"name":"ignorePubSubMode","url":"interfaces/lib_client_commands_queue.QueueCommandOptions.html#ignorePubSubMode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client/commands-queue.QueueCommandOptions"},{"id":10,"kind":8,"name":"PubSubSubscribeCommands","url":"enums/lib_client_commands_queue.PubSubSubscribeCommands.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/client/commands-queue"},{"id":11,"kind":16,"name":"SUBSCRIBE","url":"enums/lib_client_commands_queue.PubSubSubscribeCommands.html#SUBSCRIBE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/client/commands-queue.PubSubSubscribeCommands"},{"id":12,"kind":16,"name":"PSUBSCRIBE","url":"enums/lib_client_commands_queue.PubSubSubscribeCommands.html#PSUBSCRIBE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/client/commands-queue.PubSubSubscribeCommands"},{"id":13,"kind":8,"name":"PubSubUnsubscribeCommands","url":"enums/lib_client_commands_queue.PubSubUnsubscribeCommands.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/client/commands-queue"},{"id":14,"kind":16,"name":"UNSUBSCRIBE","url":"enums/lib_client_commands_queue.PubSubUnsubscribeCommands.html#UNSUBSCRIBE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/client/commands-queue.PubSubUnsubscribeCommands"},{"id":15,"kind":16,"name":"PUNSUBSCRIBE","url":"enums/lib_client_commands_queue.PubSubUnsubscribeCommands.html#PUNSUBSCRIBE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/client/commands-queue.PubSubUnsubscribeCommands"},{"id":16,"kind":4194304,"name":"PubSubListener","url":"modules/lib_client_commands_queue.html#PubSubListener","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client/commands-queue"},{"id":17,"kind":65536,"name":"__type","url":"modules/lib_client_commands_queue.html#PubSubListener.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"lib/client/commands-queue.PubSubListener"},{"id":18,"kind":128,"name":"default","url":"classes/lib_client_commands_queue.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/client/commands-queue"},{"id":19,"kind":2048,"name":"#flushQueue","url":"classes/lib_client_commands_queue.default.html#_flushQueue","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-private tsd-is-static","parent":"lib/client/commands-queue.default"},{"id":20,"kind":2048,"name":"#emitPubSubMessage","url":"classes/lib_client_commands_queue.default.html#_emitPubSubMessage","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"lib/client/commands-queue.default"},{"id":21,"kind":1024,"name":"#PUB_SUB_MESSAGES","url":"classes/lib_client_commands_queue.default.html#_PUB_SUB_MESSAGES","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"lib/client/commands-queue.default"},{"id":22,"kind":65536,"name":"__type","url":"classes/lib_client_commands_queue.default.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/client/commands-queue.default"},{"id":23,"kind":1024,"name":"message","url":"classes/lib_client_commands_queue.default.html#__type.message","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands-queue.default.__type"},{"id":24,"kind":1024,"name":"pMessage","url":"classes/lib_client_commands_queue.default.html#__type.pMessage","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands-queue.default.__type"},{"id":25,"kind":1024,"name":"subscribe","url":"classes/lib_client_commands_queue.default.html#__type.subscribe","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands-queue.default.__type"},{"id":26,"kind":1024,"name":"pSubscribe","url":"classes/lib_client_commands_queue.default.html#__type.pSubscribe","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands-queue.default.__type"},{"id":27,"kind":1024,"name":"unsubscribe","url":"classes/lib_client_commands_queue.default.html#__type.unsubscribe","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands-queue.default.__type"},{"id":28,"kind":1024,"name":"pUnsubscribe","url":"classes/lib_client_commands_queue.default.html#__type.pUnsubscribe","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands-queue.default.__type"},{"id":29,"kind":512,"name":"constructor","url":"classes/lib_client_commands_queue.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"lib/client/commands-queue.default"},{"id":30,"kind":1024,"name":"#maxLength","url":"classes/lib_client_commands_queue.default.html#_maxLength","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":31,"kind":1024,"name":"#waitingToBeSent","url":"classes/lib_client_commands_queue.default.html#_waitingToBeSent","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":32,"kind":1024,"name":"#waitingForReply","url":"classes/lib_client_commands_queue.default.html#_waitingForReply","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":33,"kind":1024,"name":"#pubSubState","url":"classes/lib_client_commands_queue.default.html#_pubSubState","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":34,"kind":1024,"name":"#parser","url":"classes/lib_client_commands_queue.default.html#_parser","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":35,"kind":1024,"name":"#chainInExecution","url":"classes/lib_client_commands_queue.default.html#_chainInExecution","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":36,"kind":2048,"name":"addCommand","url":"classes/lib_client_commands_queue.default.html#addCommand","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client/commands-queue.default"},{"id":37,"kind":2048,"name":"#initiatePubSubState","url":"classes/lib_client_commands_queue.default.html#_initiatePubSubState","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":38,"kind":2048,"name":"subscribe","url":"classes/lib_client_commands_queue.default.html#subscribe-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client/commands-queue.default"},{"id":39,"kind":2048,"name":"unsubscribe","url":"classes/lib_client_commands_queue.default.html#unsubscribe-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client/commands-queue.default"},{"id":40,"kind":2048,"name":"#pushPubSubCommand","url":"classes/lib_client_commands_queue.default.html#_pushPubSubCommand","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":41,"kind":2048,"name":"resubscribe","url":"classes/lib_client_commands_queue.default.html#resubscribe","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/commands-queue.default"},{"id":42,"kind":2048,"name":"getCommandToSend","url":"classes/lib_client_commands_queue.default.html#getCommandToSend","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/commands-queue.default"},{"id":43,"kind":2048,"name":"parseResponse","url":"classes/lib_client_commands_queue.default.html#parseResponse","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/commands-queue.default"},{"id":44,"kind":2048,"name":"#shiftWaitingForReply","url":"classes/lib_client_commands_queue.default.html#_shiftWaitingForReply","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/commands-queue.default"},{"id":45,"kind":2048,"name":"flushWaitingForReply","url":"classes/lib_client_commands_queue.default.html#flushWaitingForReply","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/commands-queue.default"},{"id":46,"kind":2048,"name":"flushAll","url":"classes/lib_client_commands_queue.default.html#flushAll","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/commands-queue.default"},{"id":47,"kind":2,"name":"lib/client/commands","url":"modules/lib_client_commands.html","classes":"tsd-kind-module"},{"id":48,"kind":1024,"name":"default","url":"modules/lib_client_commands.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"lib/client/commands"},{"id":49,"kind":65536,"name":"__type","url":"modules/lib_client_commands.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"lib/client/commands"},{"id":50,"kind":1024,"name":"ACL_CAT","url":"modules/lib_client_commands.html#__type.ACL_CAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":51,"kind":1024,"name":"aclCat","url":"modules/lib_client_commands.html#__type.aclCat","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":52,"kind":1024,"name":"ACL_DELUSER","url":"modules/lib_client_commands.html#__type.ACL_DELUSER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":53,"kind":1024,"name":"aclDelUser","url":"modules/lib_client_commands.html#__type.aclDelUser","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":54,"kind":1024,"name":"ACL_GENPASS","url":"modules/lib_client_commands.html#__type.ACL_GENPASS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":55,"kind":1024,"name":"aclGenPass","url":"modules/lib_client_commands.html#__type.aclGenPass","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":56,"kind":1024,"name":"ACL_GETUSER","url":"modules/lib_client_commands.html#__type.ACL_GETUSER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":57,"kind":1024,"name":"aclGetUser","url":"modules/lib_client_commands.html#__type.aclGetUser","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":58,"kind":1024,"name":"ACL_LIST","url":"modules/lib_client_commands.html#__type.ACL_LIST","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":59,"kind":1024,"name":"aclList","url":"modules/lib_client_commands.html#__type.aclList","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":60,"kind":1024,"name":"ACL_LOAD","url":"modules/lib_client_commands.html#__type.ACL_LOAD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":61,"kind":1024,"name":"aclLoad","url":"modules/lib_client_commands.html#__type.aclLoad","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":62,"kind":1024,"name":"ACL_LOG_RESET","url":"modules/lib_client_commands.html#__type.ACL_LOG_RESET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":63,"kind":1024,"name":"aclLogReset","url":"modules/lib_client_commands.html#__type.aclLogReset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":64,"kind":1024,"name":"ACL_LOG","url":"modules/lib_client_commands.html#__type.ACL_LOG","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":65,"kind":1024,"name":"aclLog","url":"modules/lib_client_commands.html#__type.aclLog","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":66,"kind":1024,"name":"ACL_SAVE","url":"modules/lib_client_commands.html#__type.ACL_SAVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":67,"kind":1024,"name":"aclSave","url":"modules/lib_client_commands.html#__type.aclSave","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":68,"kind":1024,"name":"ACL_SETUSER","url":"modules/lib_client_commands.html#__type.ACL_SETUSER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":69,"kind":1024,"name":"aclSetUser","url":"modules/lib_client_commands.html#__type.aclSetUser","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":70,"kind":1024,"name":"ACL_USERS","url":"modules/lib_client_commands.html#__type.ACL_USERS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":71,"kind":1024,"name":"aclUsers","url":"modules/lib_client_commands.html#__type.aclUsers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":72,"kind":1024,"name":"ACL_WHOAMI","url":"modules/lib_client_commands.html#__type.ACL_WHOAMI","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":73,"kind":1024,"name":"aclWhoAmI","url":"modules/lib_client_commands.html#__type.aclWhoAmI","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":74,"kind":1024,"name":"ASKING","url":"modules/lib_client_commands.html#__type.ASKING","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":75,"kind":1024,"name":"asking","url":"modules/lib_client_commands.html#__type.asking","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":76,"kind":1024,"name":"AUTH","url":"modules/lib_client_commands.html#__type.AUTH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":77,"kind":1024,"name":"auth","url":"modules/lib_client_commands.html#__type.auth","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":78,"kind":1024,"name":"BGREWRITEAOF","url":"modules/lib_client_commands.html#__type.BGREWRITEAOF","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":79,"kind":1024,"name":"bgRewriteAof","url":"modules/lib_client_commands.html#__type.bgRewriteAof","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":80,"kind":1024,"name":"BGSAVE","url":"modules/lib_client_commands.html#__type.BGSAVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":81,"kind":1024,"name":"bgSave","url":"modules/lib_client_commands.html#__type.bgSave","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":82,"kind":1024,"name":"CLIENT_CACHING","url":"modules/lib_client_commands.html#__type.CLIENT_CACHING","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":83,"kind":1024,"name":"clientCaching","url":"modules/lib_client_commands.html#__type.clientCaching","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":84,"kind":1024,"name":"CLIENT_GETNAME","url":"modules/lib_client_commands.html#__type.CLIENT_GETNAME","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":85,"kind":1024,"name":"clientGetName","url":"modules/lib_client_commands.html#__type.clientGetName","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":86,"kind":1024,"name":"CLIENT_GETREDIR","url":"modules/lib_client_commands.html#__type.CLIENT_GETREDIR","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":87,"kind":1024,"name":"clientGetRedir","url":"modules/lib_client_commands.html#__type.clientGetRedir","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":88,"kind":1024,"name":"CLIENT_ID","url":"modules/lib_client_commands.html#__type.CLIENT_ID","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":89,"kind":1024,"name":"clientId","url":"modules/lib_client_commands.html#__type.clientId","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":90,"kind":1024,"name":"CLIENT_KILL","url":"modules/lib_client_commands.html#__type.CLIENT_KILL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":91,"kind":1024,"name":"clientKill","url":"modules/lib_client_commands.html#__type.clientKill","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":92,"kind":1024,"name":"CLIENT_SETNAME","url":"modules/lib_client_commands.html#__type.CLIENT_SETNAME","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":93,"kind":1024,"name":"clientSetName","url":"modules/lib_client_commands.html#__type.clientSetName","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":94,"kind":1024,"name":"CLIENT_INFO","url":"modules/lib_client_commands.html#__type.CLIENT_INFO","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":95,"kind":1024,"name":"clientInfo","url":"modules/lib_client_commands.html#__type.clientInfo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":96,"kind":1024,"name":"CLUSTER_ADDSLOTS","url":"modules/lib_client_commands.html#__type.CLUSTER_ADDSLOTS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":97,"kind":1024,"name":"clusterAddSlots","url":"modules/lib_client_commands.html#__type.clusterAddSlots","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":98,"kind":1024,"name":"CLUSTER_FLUSHSLOTS","url":"modules/lib_client_commands.html#__type.CLUSTER_FLUSHSLOTS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":99,"kind":1024,"name":"clusterFlushSlots","url":"modules/lib_client_commands.html#__type.clusterFlushSlots","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":100,"kind":1024,"name":"CLUSTER_INFO","url":"modules/lib_client_commands.html#__type.CLUSTER_INFO","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":101,"kind":1024,"name":"clusterInfo","url":"modules/lib_client_commands.html#__type.clusterInfo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":102,"kind":1024,"name":"CLUSTER_NODES","url":"modules/lib_client_commands.html#__type.CLUSTER_NODES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":103,"kind":1024,"name":"clusterNodes","url":"modules/lib_client_commands.html#__type.clusterNodes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":104,"kind":1024,"name":"CLUSTER_MEET","url":"modules/lib_client_commands.html#__type.CLUSTER_MEET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":105,"kind":1024,"name":"clusterMeet","url":"modules/lib_client_commands.html#__type.clusterMeet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":106,"kind":1024,"name":"CLUSTER_RESET","url":"modules/lib_client_commands.html#__type.CLUSTER_RESET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":107,"kind":1024,"name":"clusterReset","url":"modules/lib_client_commands.html#__type.clusterReset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":108,"kind":1024,"name":"CLUSTER_SETSLOT","url":"modules/lib_client_commands.html#__type.CLUSTER_SETSLOT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":109,"kind":1024,"name":"clusterSetSlot","url":"modules/lib_client_commands.html#__type.clusterSetSlot","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":110,"kind":1024,"name":"CLUSTER_SLOTS","url":"modules/lib_client_commands.html#__type.CLUSTER_SLOTS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":111,"kind":1024,"name":"clusterSlots","url":"modules/lib_client_commands.html#__type.clusterSlots","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":112,"kind":1024,"name":"COMMAND_COUNT","url":"modules/lib_client_commands.html#__type.COMMAND_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":113,"kind":1024,"name":"commandCount","url":"modules/lib_client_commands.html#__type.commandCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":114,"kind":1024,"name":"COMMAND_GETKEYS","url":"modules/lib_client_commands.html#__type.COMMAND_GETKEYS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":115,"kind":1024,"name":"commandGetKeys","url":"modules/lib_client_commands.html#__type.commandGetKeys","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":116,"kind":1024,"name":"COMMAND_INFO","url":"modules/lib_client_commands.html#__type.COMMAND_INFO","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":117,"kind":1024,"name":"commandInfo","url":"modules/lib_client_commands.html#__type.commandInfo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":118,"kind":1024,"name":"COMMAND","url":"modules/lib_client_commands.html#__type.COMMAND","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":119,"kind":1024,"name":"command","url":"modules/lib_client_commands.html#__type.command","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":120,"kind":1024,"name":"CONFIG_GET","url":"modules/lib_client_commands.html#__type.CONFIG_GET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":121,"kind":1024,"name":"configGet","url":"modules/lib_client_commands.html#__type.configGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":122,"kind":1024,"name":"CONFIG_RESETASTAT","url":"modules/lib_client_commands.html#__type.CONFIG_RESETASTAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":123,"kind":1024,"name":"configResetStat","url":"modules/lib_client_commands.html#__type.configResetStat","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":124,"kind":1024,"name":"CONFIG_REWRITE","url":"modules/lib_client_commands.html#__type.CONFIG_REWRITE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":125,"kind":1024,"name":"configRewrite","url":"modules/lib_client_commands.html#__type.configRewrite","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":126,"kind":1024,"name":"CONFIG_SET","url":"modules/lib_client_commands.html#__type.CONFIG_SET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":127,"kind":1024,"name":"configSet","url":"modules/lib_client_commands.html#__type.configSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":128,"kind":1024,"name":"DBSIZE","url":"modules/lib_client_commands.html#__type.DBSIZE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":129,"kind":1024,"name":"dbSize","url":"modules/lib_client_commands.html#__type.dbSize","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":130,"kind":1024,"name":"DISCARD","url":"modules/lib_client_commands.html#__type.DISCARD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":131,"kind":1024,"name":"discard","url":"modules/lib_client_commands.html#__type.discard","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":132,"kind":1024,"name":"ECHO","url":"modules/lib_client_commands.html#__type.ECHO","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":133,"kind":1024,"name":"echo","url":"modules/lib_client_commands.html#__type.echo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":134,"kind":1024,"name":"FAILOVER","url":"modules/lib_client_commands.html#__type.FAILOVER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":135,"kind":1024,"name":"failover","url":"modules/lib_client_commands.html#__type.failover","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":136,"kind":1024,"name":"FLUSHALL","url":"modules/lib_client_commands.html#__type.FLUSHALL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":137,"kind":1024,"name":"flushAll","url":"modules/lib_client_commands.html#__type.flushAll","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":138,"kind":1024,"name":"FLUSHDB","url":"modules/lib_client_commands.html#__type.FLUSHDB","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":139,"kind":1024,"name":"flushDb","url":"modules/lib_client_commands.html#__type.flushDb","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":140,"kind":1024,"name":"HELLO","url":"modules/lib_client_commands.html#__type.HELLO","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":141,"kind":1024,"name":"hello","url":"modules/lib_client_commands.html#__type.hello","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":142,"kind":1024,"name":"INFO","url":"modules/lib_client_commands.html#__type.INFO","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":143,"kind":1024,"name":"info","url":"modules/lib_client_commands.html#__type.info","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":144,"kind":1024,"name":"KEYS","url":"modules/lib_client_commands.html#__type.KEYS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":145,"kind":1024,"name":"keys","url":"modules/lib_client_commands.html#__type.keys","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":146,"kind":1024,"name":"LASTSAVE","url":"modules/lib_client_commands.html#__type.LASTSAVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":147,"kind":1024,"name":"lastSave","url":"modules/lib_client_commands.html#__type.lastSave","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":148,"kind":1024,"name":"LOLWUT","url":"modules/lib_client_commands.html#__type.LOLWUT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":149,"kind":1024,"name":"lolwut","url":"modules/lib_client_commands.html#__type.lolwut","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":150,"kind":1024,"name":"MEMOERY_DOCTOR","url":"modules/lib_client_commands.html#__type.MEMOERY_DOCTOR","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":151,"kind":1024,"name":"memoryDoctor","url":"modules/lib_client_commands.html#__type.memoryDoctor","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":152,"kind":1024,"name":"MEMORY_MALLOC-STATS","url":"modules/lib_client_commands.html#__type.MEMORY_MALLOC_STATS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":153,"kind":1024,"name":"memoryMallocStats","url":"modules/lib_client_commands.html#__type.memoryMallocStats","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":154,"kind":1024,"name":"MEMORY_PURGE","url":"modules/lib_client_commands.html#__type.MEMORY_PURGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":155,"kind":1024,"name":"memoryPurge","url":"modules/lib_client_commands.html#__type.memoryPurge","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":156,"kind":1024,"name":"MEMORY_STATS","url":"modules/lib_client_commands.html#__type.MEMORY_STATS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":157,"kind":1024,"name":"memoryStats","url":"modules/lib_client_commands.html#__type.memoryStats","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":158,"kind":1024,"name":"MEMORY_USAGE","url":"modules/lib_client_commands.html#__type.MEMORY_USAGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":159,"kind":1024,"name":"memoryUsage","url":"modules/lib_client_commands.html#__type.memoryUsage","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":160,"kind":1024,"name":"MODULE_LIST","url":"modules/lib_client_commands.html#__type.MODULE_LIST","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":161,"kind":1024,"name":"moduleList","url":"modules/lib_client_commands.html#__type.moduleList","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":162,"kind":1024,"name":"MODULE_LOAD","url":"modules/lib_client_commands.html#__type.MODULE_LOAD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":163,"kind":1024,"name":"moduleLoad","url":"modules/lib_client_commands.html#__type.moduleLoad","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":164,"kind":1024,"name":"MODULE_UNLOAD","url":"modules/lib_client_commands.html#__type.MODULE_UNLOAD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":165,"kind":1024,"name":"moduleUnload","url":"modules/lib_client_commands.html#__type.moduleUnload","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":166,"kind":1024,"name":"MOVE","url":"modules/lib_client_commands.html#__type.MOVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":167,"kind":1024,"name":"move","url":"modules/lib_client_commands.html#__type.move","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":168,"kind":1024,"name":"PING","url":"modules/lib_client_commands.html#__type.PING","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":169,"kind":1024,"name":"ping","url":"modules/lib_client_commands.html#__type.ping","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":170,"kind":1024,"name":"PUBSUB_CHANNELS","url":"modules/lib_client_commands.html#__type.PUBSUB_CHANNELS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":171,"kind":1024,"name":"pubSubChannels","url":"modules/lib_client_commands.html#__type.pubSubChannels","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":172,"kind":1024,"name":"PUBSUB_NUMPAT","url":"modules/lib_client_commands.html#__type.PUBSUB_NUMPAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":173,"kind":1024,"name":"pubSubNumPat","url":"modules/lib_client_commands.html#__type.pubSubNumPat","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":174,"kind":1024,"name":"PUBSUB_NUMSUB","url":"modules/lib_client_commands.html#__type.PUBSUB_NUMSUB","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":175,"kind":1024,"name":"pubSubNumSub","url":"modules/lib_client_commands.html#__type.pubSubNumSub","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":176,"kind":1024,"name":"RANDOMKEY","url":"modules/lib_client_commands.html#__type.RANDOMKEY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":177,"kind":1024,"name":"randomKey","url":"modules/lib_client_commands.html#__type.randomKey","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":178,"kind":1024,"name":"READONLY","url":"modules/lib_client_commands.html#__type.READONLY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":179,"kind":1024,"name":"readonly","url":"modules/lib_client_commands.html#__type.readonly","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":180,"kind":1024,"name":"READWRITE","url":"modules/lib_client_commands.html#__type.READWRITE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":181,"kind":1024,"name":"readwrite","url":"modules/lib_client_commands.html#__type.readwrite","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":182,"kind":1024,"name":"REPLICAOF","url":"modules/lib_client_commands.html#__type.REPLICAOF","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":183,"kind":1024,"name":"replicaOf","url":"modules/lib_client_commands.html#__type.replicaOf","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":184,"kind":1024,"name":"RESTORE-ASKING","url":"modules/lib_client_commands.html#__type.RESTORE_ASKING","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":185,"kind":1024,"name":"restoreAsking","url":"modules/lib_client_commands.html#__type.restoreAsking","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":186,"kind":1024,"name":"ROLE","url":"modules/lib_client_commands.html#__type.ROLE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":187,"kind":1024,"name":"role","url":"modules/lib_client_commands.html#__type.role","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":188,"kind":1024,"name":"SAVE","url":"modules/lib_client_commands.html#__type.SAVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":189,"kind":1024,"name":"save","url":"modules/lib_client_commands.html#__type.save","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":190,"kind":1024,"name":"SCAN","url":"modules/lib_client_commands.html#__type.SCAN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":191,"kind":1024,"name":"scan","url":"modules/lib_client_commands.html#__type.scan","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":192,"kind":1024,"name":"SCRIPT_DEBUG","url":"modules/lib_client_commands.html#__type.SCRIPT_DEBUG","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":193,"kind":1024,"name":"scriptDebug","url":"modules/lib_client_commands.html#__type.scriptDebug","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":194,"kind":1024,"name":"SCRIPT_EXISTS","url":"modules/lib_client_commands.html#__type.SCRIPT_EXISTS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":195,"kind":1024,"name":"scriptExists","url":"modules/lib_client_commands.html#__type.scriptExists","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":196,"kind":1024,"name":"SCRIPT_FLUSH","url":"modules/lib_client_commands.html#__type.SCRIPT_FLUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":197,"kind":1024,"name":"scriptFlush","url":"modules/lib_client_commands.html#__type.scriptFlush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":198,"kind":1024,"name":"SCRIPT_KILL","url":"modules/lib_client_commands.html#__type.SCRIPT_KILL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":199,"kind":1024,"name":"scriptKill","url":"modules/lib_client_commands.html#__type.scriptKill","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":200,"kind":1024,"name":"SCRIPT_LOAD","url":"modules/lib_client_commands.html#__type.SCRIPT_LOAD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":201,"kind":1024,"name":"scriptLoad","url":"modules/lib_client_commands.html#__type.scriptLoad","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":202,"kind":1024,"name":"SHUTDOWN","url":"modules/lib_client_commands.html#__type.SHUTDOWN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":203,"kind":1024,"name":"shutdown","url":"modules/lib_client_commands.html#__type.shutdown","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":204,"kind":1024,"name":"SWAPDB","url":"modules/lib_client_commands.html#__type.SWAPDB","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":205,"kind":1024,"name":"swapDb","url":"modules/lib_client_commands.html#__type.swapDb","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":206,"kind":1024,"name":"TIME","url":"modules/lib_client_commands.html#__type.TIME","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":207,"kind":1024,"name":"time","url":"modules/lib_client_commands.html#__type.time","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":208,"kind":1024,"name":"UNWATCH","url":"modules/lib_client_commands.html#__type.UNWATCH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":209,"kind":1024,"name":"unwatch","url":"modules/lib_client_commands.html#__type.unwatch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":210,"kind":1024,"name":"WAIT","url":"modules/lib_client_commands.html#__type.WAIT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":211,"kind":1024,"name":"wait","url":"modules/lib_client_commands.html#__type.wait","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":212,"kind":1024,"name":"APPEND","url":"modules/lib_client_commands.html#__type.APPEND","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":213,"kind":1024,"name":"append","url":"modules/lib_client_commands.html#__type.append","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":214,"kind":1024,"name":"BITCOUNT","url":"modules/lib_client_commands.html#__type.BITCOUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":215,"kind":1024,"name":"bitCount","url":"modules/lib_client_commands.html#__type.bitCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":216,"kind":1024,"name":"BITFIELD","url":"modules/lib_client_commands.html#__type.BITFIELD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":217,"kind":1024,"name":"bitField","url":"modules/lib_client_commands.html#__type.bitField","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":218,"kind":1024,"name":"BITOP","url":"modules/lib_client_commands.html#__type.BITOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":219,"kind":1024,"name":"bitOp","url":"modules/lib_client_commands.html#__type.bitOp","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":220,"kind":1024,"name":"BITPOS","url":"modules/lib_client_commands.html#__type.BITPOS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":221,"kind":1024,"name":"bitPos","url":"modules/lib_client_commands.html#__type.bitPos","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":222,"kind":1024,"name":"BLMOVE","url":"modules/lib_client_commands.html#__type.BLMOVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":223,"kind":1024,"name":"blMove","url":"modules/lib_client_commands.html#__type.blMove","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":224,"kind":1024,"name":"BLPOP","url":"modules/lib_client_commands.html#__type.BLPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":225,"kind":1024,"name":"blPop","url":"modules/lib_client_commands.html#__type.blPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":226,"kind":1024,"name":"BRPOP","url":"modules/lib_client_commands.html#__type.BRPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":227,"kind":1024,"name":"brPop","url":"modules/lib_client_commands.html#__type.brPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":228,"kind":1024,"name":"BRPOPLPUSH","url":"modules/lib_client_commands.html#__type.BRPOPLPUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":229,"kind":1024,"name":"brPopLPush","url":"modules/lib_client_commands.html#__type.brPopLPush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":230,"kind":1024,"name":"BZPOPMAX","url":"modules/lib_client_commands.html#__type.BZPOPMAX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":231,"kind":1024,"name":"bzPopMax","url":"modules/lib_client_commands.html#__type.bzPopMax","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":232,"kind":1024,"name":"BZPOPMIN","url":"modules/lib_client_commands.html#__type.BZPOPMIN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":233,"kind":1024,"name":"bzPopMin","url":"modules/lib_client_commands.html#__type.bzPopMin","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":234,"kind":1024,"name":"COPY","url":"modules/lib_client_commands.html#__type.COPY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":235,"kind":1024,"name":"copy","url":"modules/lib_client_commands.html#__type.copy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":236,"kind":1024,"name":"DECR","url":"modules/lib_client_commands.html#__type.DECR","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":237,"kind":1024,"name":"decr","url":"modules/lib_client_commands.html#__type.decr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":238,"kind":1024,"name":"DECRBY","url":"modules/lib_client_commands.html#__type.DECRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":239,"kind":1024,"name":"decrBy","url":"modules/lib_client_commands.html#__type.decrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":240,"kind":1024,"name":"DEL","url":"modules/lib_client_commands.html#__type.DEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":241,"kind":1024,"name":"del","url":"modules/lib_client_commands.html#__type.del","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":242,"kind":1024,"name":"DUMP","url":"modules/lib_client_commands.html#__type.DUMP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":243,"kind":1024,"name":"dump","url":"modules/lib_client_commands.html#__type.dump","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":244,"kind":1024,"name":"EVAL","url":"modules/lib_client_commands.html#__type.EVAL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":245,"kind":1024,"name":"eval","url":"modules/lib_client_commands.html#__type.eval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":246,"kind":1024,"name":"EVALSHA","url":"modules/lib_client_commands.html#__type.EVALSHA","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":247,"kind":1024,"name":"evalSha","url":"modules/lib_client_commands.html#__type.evalSha","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":248,"kind":1024,"name":"EXISTS","url":"modules/lib_client_commands.html#__type.EXISTS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":249,"kind":1024,"name":"exists","url":"modules/lib_client_commands.html#__type.exists","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":250,"kind":1024,"name":"EXPIRE","url":"modules/lib_client_commands.html#__type.EXPIRE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":251,"kind":1024,"name":"expire","url":"modules/lib_client_commands.html#__type.expire","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":252,"kind":1024,"name":"EXPIREAT","url":"modules/lib_client_commands.html#__type.EXPIREAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":253,"kind":1024,"name":"expireAt","url":"modules/lib_client_commands.html#__type.expireAt","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":254,"kind":1024,"name":"GEOADD","url":"modules/lib_client_commands.html#__type.GEOADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":255,"kind":1024,"name":"geoAdd","url":"modules/lib_client_commands.html#__type.geoAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":256,"kind":1024,"name":"GEODIST","url":"modules/lib_client_commands.html#__type.GEODIST","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":257,"kind":1024,"name":"geoDist","url":"modules/lib_client_commands.html#__type.geoDist","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":258,"kind":1024,"name":"GEOHASH","url":"modules/lib_client_commands.html#__type.GEOHASH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":259,"kind":1024,"name":"geoHash","url":"modules/lib_client_commands.html#__type.geoHash","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":260,"kind":1024,"name":"GEOPOS","url":"modules/lib_client_commands.html#__type.GEOPOS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":261,"kind":1024,"name":"geoPos","url":"modules/lib_client_commands.html#__type.geoPos","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":262,"kind":1024,"name":"GEOSEARCH_WITH","url":"modules/lib_client_commands.html#__type.GEOSEARCH_WITH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":263,"kind":1024,"name":"geoSearchWith","url":"modules/lib_client_commands.html#__type.geoSearchWith","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":264,"kind":1024,"name":"GEOSEARCH","url":"modules/lib_client_commands.html#__type.GEOSEARCH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":265,"kind":1024,"name":"geoSearch","url":"modules/lib_client_commands.html#__type.geoSearch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":266,"kind":1024,"name":"GEOSEARCHSTORE","url":"modules/lib_client_commands.html#__type.GEOSEARCHSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":267,"kind":1024,"name":"geoSearchStore","url":"modules/lib_client_commands.html#__type.geoSearchStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":268,"kind":1024,"name":"GET_BUFFER","url":"modules/lib_client_commands.html#__type.GET_BUFFER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":269,"kind":1024,"name":"getBuffer","url":"modules/lib_client_commands.html#__type.getBuffer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":270,"kind":1024,"name":"GET","url":"modules/lib_client_commands.html#__type.GET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":271,"kind":1024,"name":"get","url":"modules/lib_client_commands.html#__type.get","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":272,"kind":1024,"name":"GETBIT","url":"modules/lib_client_commands.html#__type.GETBIT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":273,"kind":1024,"name":"getBit","url":"modules/lib_client_commands.html#__type.getBit","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":274,"kind":1024,"name":"GETDEL","url":"modules/lib_client_commands.html#__type.GETDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":275,"kind":1024,"name":"getDel","url":"modules/lib_client_commands.html#__type.getDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":276,"kind":1024,"name":"GETEX","url":"modules/lib_client_commands.html#__type.GETEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":277,"kind":1024,"name":"getEx","url":"modules/lib_client_commands.html#__type.getEx","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":278,"kind":1024,"name":"GETRANGE","url":"modules/lib_client_commands.html#__type.GETRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":279,"kind":1024,"name":"getRange","url":"modules/lib_client_commands.html#__type.getRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":280,"kind":1024,"name":"GETSET","url":"modules/lib_client_commands.html#__type.GETSET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":281,"kind":1024,"name":"getSet","url":"modules/lib_client_commands.html#__type.getSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":282,"kind":1024,"name":"HDEL","url":"modules/lib_client_commands.html#__type.HDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":283,"kind":1024,"name":"hDel","url":"modules/lib_client_commands.html#__type.hDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":284,"kind":1024,"name":"HEXISTS","url":"modules/lib_client_commands.html#__type.HEXISTS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":285,"kind":1024,"name":"hExists","url":"modules/lib_client_commands.html#__type.hExists","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":286,"kind":1024,"name":"HGET","url":"modules/lib_client_commands.html#__type.HGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":287,"kind":1024,"name":"hGet","url":"modules/lib_client_commands.html#__type.hGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":288,"kind":1024,"name":"HGETALL","url":"modules/lib_client_commands.html#__type.HGETALL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":289,"kind":1024,"name":"hGetAll","url":"modules/lib_client_commands.html#__type.hGetAll","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":290,"kind":1024,"name":"HINCRBY","url":"modules/lib_client_commands.html#__type.HINCRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":291,"kind":1024,"name":"hIncrBy","url":"modules/lib_client_commands.html#__type.hIncrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":292,"kind":1024,"name":"HINCRBYFLOAT","url":"modules/lib_client_commands.html#__type.HINCRBYFLOAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":293,"kind":1024,"name":"hIncrByFloat","url":"modules/lib_client_commands.html#__type.hIncrByFloat","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":294,"kind":1024,"name":"HKEYS","url":"modules/lib_client_commands.html#__type.HKEYS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":295,"kind":1024,"name":"hKeys","url":"modules/lib_client_commands.html#__type.hKeys","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":296,"kind":1024,"name":"HLEN","url":"modules/lib_client_commands.html#__type.HLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":297,"kind":1024,"name":"hLen","url":"modules/lib_client_commands.html#__type.hLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":298,"kind":1024,"name":"HMGET","url":"modules/lib_client_commands.html#__type.HMGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":299,"kind":1024,"name":"hmGet","url":"modules/lib_client_commands.html#__type.hmGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":300,"kind":1024,"name":"HRANDFIELD_COUNT_WITHVALUES","url":"modules/lib_client_commands.html#__type.HRANDFIELD_COUNT_WITHVALUES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":301,"kind":1024,"name":"hRandFieldCountWithValues","url":"modules/lib_client_commands.html#__type.hRandFieldCountWithValues","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":302,"kind":1024,"name":"HRANDFIELD_COUNT","url":"modules/lib_client_commands.html#__type.HRANDFIELD_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":303,"kind":1024,"name":"hRandFieldCount","url":"modules/lib_client_commands.html#__type.hRandFieldCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":304,"kind":1024,"name":"HRANDFIELD","url":"modules/lib_client_commands.html#__type.HRANDFIELD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":305,"kind":1024,"name":"hRandField","url":"modules/lib_client_commands.html#__type.hRandField","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":306,"kind":1024,"name":"HSCAN","url":"modules/lib_client_commands.html#__type.HSCAN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":307,"kind":1024,"name":"hScan","url":"modules/lib_client_commands.html#__type.hScan","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":308,"kind":1024,"name":"HSET","url":"modules/lib_client_commands.html#__type.HSET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":309,"kind":1024,"name":"hSet","url":"modules/lib_client_commands.html#__type.hSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":310,"kind":1024,"name":"HSETNX","url":"modules/lib_client_commands.html#__type.HSETNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":311,"kind":1024,"name":"hSetNX","url":"modules/lib_client_commands.html#__type.hSetNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":312,"kind":1024,"name":"HSTRLEN","url":"modules/lib_client_commands.html#__type.HSTRLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":313,"kind":1024,"name":"hStrLen","url":"modules/lib_client_commands.html#__type.hStrLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":314,"kind":1024,"name":"HVALS","url":"modules/lib_client_commands.html#__type.HVALS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":315,"kind":1024,"name":"hVals","url":"modules/lib_client_commands.html#__type.hVals","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":316,"kind":1024,"name":"INCR","url":"modules/lib_client_commands.html#__type.INCR","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":317,"kind":1024,"name":"incr","url":"modules/lib_client_commands.html#__type.incr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":318,"kind":1024,"name":"INCRBY","url":"modules/lib_client_commands.html#__type.INCRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":319,"kind":1024,"name":"incrBy","url":"modules/lib_client_commands.html#__type.incrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":320,"kind":1024,"name":"INCRBYFLOAT","url":"modules/lib_client_commands.html#__type.INCRBYFLOAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":321,"kind":1024,"name":"incrByFloat","url":"modules/lib_client_commands.html#__type.incrByFloat","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":322,"kind":1024,"name":"LINDEX","url":"modules/lib_client_commands.html#__type.LINDEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":323,"kind":1024,"name":"lIndex","url":"modules/lib_client_commands.html#__type.lIndex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":324,"kind":1024,"name":"LINSERT","url":"modules/lib_client_commands.html#__type.LINSERT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":325,"kind":1024,"name":"lInsert","url":"modules/lib_client_commands.html#__type.lInsert","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":326,"kind":1024,"name":"LLEN","url":"modules/lib_client_commands.html#__type.LLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":327,"kind":1024,"name":"lLen","url":"modules/lib_client_commands.html#__type.lLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":328,"kind":1024,"name":"LMOVE","url":"modules/lib_client_commands.html#__type.LMOVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":329,"kind":1024,"name":"lMove","url":"modules/lib_client_commands.html#__type.lMove","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":330,"kind":1024,"name":"LPOP_COUNT","url":"modules/lib_client_commands.html#__type.LPOP_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":331,"kind":1024,"name":"lPopCount","url":"modules/lib_client_commands.html#__type.lPopCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":332,"kind":1024,"name":"LPOP","url":"modules/lib_client_commands.html#__type.LPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":333,"kind":1024,"name":"lPop","url":"modules/lib_client_commands.html#__type.lPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":334,"kind":1024,"name":"LPOS_COUNT","url":"modules/lib_client_commands.html#__type.LPOS_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":335,"kind":1024,"name":"lPosCount","url":"modules/lib_client_commands.html#__type.lPosCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":336,"kind":1024,"name":"LPOS","url":"modules/lib_client_commands.html#__type.LPOS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":337,"kind":1024,"name":"lPos","url":"modules/lib_client_commands.html#__type.lPos","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":338,"kind":1024,"name":"LPUSH","url":"modules/lib_client_commands.html#__type.LPUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":339,"kind":1024,"name":"lPush","url":"modules/lib_client_commands.html#__type.lPush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":340,"kind":1024,"name":"LPUSHX","url":"modules/lib_client_commands.html#__type.LPUSHX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":341,"kind":1024,"name":"lPushX","url":"modules/lib_client_commands.html#__type.lPushX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":342,"kind":1024,"name":"LRANGE","url":"modules/lib_client_commands.html#__type.LRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":343,"kind":1024,"name":"lRange","url":"modules/lib_client_commands.html#__type.lRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":344,"kind":1024,"name":"LREM","url":"modules/lib_client_commands.html#__type.LREM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":345,"kind":1024,"name":"lRem","url":"modules/lib_client_commands.html#__type.lRem","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":346,"kind":1024,"name":"LSET","url":"modules/lib_client_commands.html#__type.LSET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":347,"kind":1024,"name":"lSet","url":"modules/lib_client_commands.html#__type.lSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":348,"kind":1024,"name":"LTRIM","url":"modules/lib_client_commands.html#__type.LTRIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":349,"kind":1024,"name":"lTrim","url":"modules/lib_client_commands.html#__type.lTrim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":350,"kind":1024,"name":"MGET","url":"modules/lib_client_commands.html#__type.MGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":351,"kind":1024,"name":"mGet","url":"modules/lib_client_commands.html#__type.mGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":352,"kind":1024,"name":"MIGRATE","url":"modules/lib_client_commands.html#__type.MIGRATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":353,"kind":1024,"name":"migrate","url":"modules/lib_client_commands.html#__type.migrate","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":354,"kind":1024,"name":"MSET","url":"modules/lib_client_commands.html#__type.MSET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":355,"kind":1024,"name":"mSet","url":"modules/lib_client_commands.html#__type.mSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":356,"kind":1024,"name":"MSETNX","url":"modules/lib_client_commands.html#__type.MSETNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":357,"kind":1024,"name":"mSetNX","url":"modules/lib_client_commands.html#__type.mSetNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":358,"kind":1024,"name":"PERSIST","url":"modules/lib_client_commands.html#__type.PERSIST","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":359,"kind":1024,"name":"persist","url":"modules/lib_client_commands.html#__type.persist","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":360,"kind":1024,"name":"PEXPIRE","url":"modules/lib_client_commands.html#__type.PEXPIRE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":361,"kind":1024,"name":"pExpire","url":"modules/lib_client_commands.html#__type.pExpire","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":362,"kind":1024,"name":"PEXPIREAT","url":"modules/lib_client_commands.html#__type.PEXPIREAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":363,"kind":1024,"name":"pExpireAt","url":"modules/lib_client_commands.html#__type.pExpireAt","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":364,"kind":1024,"name":"PFADD","url":"modules/lib_client_commands.html#__type.PFADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":365,"kind":1024,"name":"pfAdd","url":"modules/lib_client_commands.html#__type.pfAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":366,"kind":1024,"name":"PFCOUNT","url":"modules/lib_client_commands.html#__type.PFCOUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":367,"kind":1024,"name":"pfCount","url":"modules/lib_client_commands.html#__type.pfCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":368,"kind":1024,"name":"PFMERGE","url":"modules/lib_client_commands.html#__type.PFMERGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":369,"kind":1024,"name":"pfMerge","url":"modules/lib_client_commands.html#__type.pfMerge","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":370,"kind":1024,"name":"PSETEX","url":"modules/lib_client_commands.html#__type.PSETEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":371,"kind":1024,"name":"pSetEx","url":"modules/lib_client_commands.html#__type.pSetEx","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":372,"kind":1024,"name":"PTTL","url":"modules/lib_client_commands.html#__type.PTTL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":373,"kind":1024,"name":"pTTL","url":"modules/lib_client_commands.html#__type.pTTL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":374,"kind":1024,"name":"PUBLISH","url":"modules/lib_client_commands.html#__type.PUBLISH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":375,"kind":1024,"name":"publish","url":"modules/lib_client_commands.html#__type.publish","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":376,"kind":1024,"name":"RENAME","url":"modules/lib_client_commands.html#__type.RENAME","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":377,"kind":1024,"name":"rename","url":"modules/lib_client_commands.html#__type.rename","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":378,"kind":1024,"name":"RENAMENX","url":"modules/lib_client_commands.html#__type.RENAMENX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":379,"kind":1024,"name":"renameNX","url":"modules/lib_client_commands.html#__type.renameNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":380,"kind":1024,"name":"RPOP_COUNT","url":"modules/lib_client_commands.html#__type.RPOP_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":381,"kind":1024,"name":"rPopCount","url":"modules/lib_client_commands.html#__type.rPopCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":382,"kind":1024,"name":"RPOP","url":"modules/lib_client_commands.html#__type.RPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":383,"kind":1024,"name":"rPop","url":"modules/lib_client_commands.html#__type.rPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":384,"kind":1024,"name":"RPOPLPUSH","url":"modules/lib_client_commands.html#__type.RPOPLPUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":385,"kind":1024,"name":"rPopLPush","url":"modules/lib_client_commands.html#__type.rPopLPush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":386,"kind":1024,"name":"RPUSH","url":"modules/lib_client_commands.html#__type.RPUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":387,"kind":1024,"name":"rPush","url":"modules/lib_client_commands.html#__type.rPush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":388,"kind":1024,"name":"RPUSHX","url":"modules/lib_client_commands.html#__type.RPUSHX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":389,"kind":1024,"name":"rPushX","url":"modules/lib_client_commands.html#__type.rPushX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":390,"kind":1024,"name":"SADD","url":"modules/lib_client_commands.html#__type.SADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":391,"kind":1024,"name":"sAdd","url":"modules/lib_client_commands.html#__type.sAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":392,"kind":1024,"name":"SCARD","url":"modules/lib_client_commands.html#__type.SCARD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":393,"kind":1024,"name":"sCard","url":"modules/lib_client_commands.html#__type.sCard","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":394,"kind":1024,"name":"SDIFF","url":"modules/lib_client_commands.html#__type.SDIFF","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":395,"kind":1024,"name":"sDiff","url":"modules/lib_client_commands.html#__type.sDiff","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":396,"kind":1024,"name":"SDIFFSTORE","url":"modules/lib_client_commands.html#__type.SDIFFSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":397,"kind":1024,"name":"sDiffStore","url":"modules/lib_client_commands.html#__type.sDiffStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":398,"kind":1024,"name":"SINTER","url":"modules/lib_client_commands.html#__type.SINTER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":399,"kind":1024,"name":"sInter","url":"modules/lib_client_commands.html#__type.sInter","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":400,"kind":1024,"name":"SINTERSTORE","url":"modules/lib_client_commands.html#__type.SINTERSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":401,"kind":1024,"name":"sInterStore","url":"modules/lib_client_commands.html#__type.sInterStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":402,"kind":1024,"name":"SET","url":"modules/lib_client_commands.html#__type.SET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":403,"kind":1024,"name":"set","url":"modules/lib_client_commands.html#__type.set","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":404,"kind":1024,"name":"SETBIT","url":"modules/lib_client_commands.html#__type.SETBIT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":405,"kind":1024,"name":"setBit","url":"modules/lib_client_commands.html#__type.setBit","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":406,"kind":1024,"name":"SETEX","url":"modules/lib_client_commands.html#__type.SETEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":407,"kind":1024,"name":"setEx","url":"modules/lib_client_commands.html#__type.setEx","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":408,"kind":1024,"name":"SETNX","url":"modules/lib_client_commands.html#__type.SETNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":409,"kind":1024,"name":"setNX","url":"modules/lib_client_commands.html#__type.setNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":410,"kind":1024,"name":"SETRANGE","url":"modules/lib_client_commands.html#__type.SETRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":411,"kind":1024,"name":"setRange","url":"modules/lib_client_commands.html#__type.setRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":412,"kind":1024,"name":"SISMEMBER","url":"modules/lib_client_commands.html#__type.SISMEMBER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":413,"kind":1024,"name":"sIsMember","url":"modules/lib_client_commands.html#__type.sIsMember","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":414,"kind":1024,"name":"SMEMBERS","url":"modules/lib_client_commands.html#__type.SMEMBERS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":415,"kind":1024,"name":"sMembers","url":"modules/lib_client_commands.html#__type.sMembers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":416,"kind":1024,"name":"SMISMEMBER","url":"modules/lib_client_commands.html#__type.SMISMEMBER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":417,"kind":1024,"name":"smIsMember","url":"modules/lib_client_commands.html#__type.smIsMember","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":418,"kind":1024,"name":"SMOVE","url":"modules/lib_client_commands.html#__type.SMOVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":419,"kind":1024,"name":"sMove","url":"modules/lib_client_commands.html#__type.sMove","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":420,"kind":1024,"name":"SORT","url":"modules/lib_client_commands.html#__type.SORT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":421,"kind":1024,"name":"sort","url":"modules/lib_client_commands.html#__type.sort","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":422,"kind":1024,"name":"SPOP","url":"modules/lib_client_commands.html#__type.SPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":423,"kind":1024,"name":"sPop","url":"modules/lib_client_commands.html#__type.sPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":424,"kind":1024,"name":"SRANDMEMBER_COUNT","url":"modules/lib_client_commands.html#__type.SRANDMEMBER_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":425,"kind":1024,"name":"sRandMemberCount","url":"modules/lib_client_commands.html#__type.sRandMemberCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":426,"kind":1024,"name":"SRANDMEMBER","url":"modules/lib_client_commands.html#__type.SRANDMEMBER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":427,"kind":1024,"name":"sRandMember","url":"modules/lib_client_commands.html#__type.sRandMember","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":428,"kind":1024,"name":"SREM","url":"modules/lib_client_commands.html#__type.SREM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":429,"kind":1024,"name":"sRem","url":"modules/lib_client_commands.html#__type.sRem","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":430,"kind":1024,"name":"SSCAN","url":"modules/lib_client_commands.html#__type.SSCAN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":431,"kind":1024,"name":"sScan","url":"modules/lib_client_commands.html#__type.sScan","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":432,"kind":1024,"name":"STRLEN","url":"modules/lib_client_commands.html#__type.STRLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":433,"kind":1024,"name":"strLen","url":"modules/lib_client_commands.html#__type.strLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":434,"kind":1024,"name":"SUNION","url":"modules/lib_client_commands.html#__type.SUNION","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":435,"kind":1024,"name":"sUnion","url":"modules/lib_client_commands.html#__type.sUnion","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":436,"kind":1024,"name":"SUNIONSTORE","url":"modules/lib_client_commands.html#__type.SUNIONSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":437,"kind":1024,"name":"sUnionStore","url":"modules/lib_client_commands.html#__type.sUnionStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":438,"kind":1024,"name":"TOUCH","url":"modules/lib_client_commands.html#__type.TOUCH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":439,"kind":1024,"name":"touch","url":"modules/lib_client_commands.html#__type.touch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":440,"kind":1024,"name":"TTL","url":"modules/lib_client_commands.html#__type.TTL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":441,"kind":1024,"name":"ttl","url":"modules/lib_client_commands.html#__type.ttl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":442,"kind":1024,"name":"TYPE","url":"modules/lib_client_commands.html#__type.TYPE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":443,"kind":1024,"name":"type","url":"modules/lib_client_commands.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":444,"kind":1024,"name":"UNLINK","url":"modules/lib_client_commands.html#__type.UNLINK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":445,"kind":1024,"name":"unlink","url":"modules/lib_client_commands.html#__type.unlink","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":446,"kind":1024,"name":"WATCH","url":"modules/lib_client_commands.html#__type.WATCH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":447,"kind":1024,"name":"watch","url":"modules/lib_client_commands.html#__type.watch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":448,"kind":1024,"name":"XACK","url":"modules/lib_client_commands.html#__type.XACK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":449,"kind":1024,"name":"xAck","url":"modules/lib_client_commands.html#__type.xAck","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":450,"kind":1024,"name":"XADD","url":"modules/lib_client_commands.html#__type.XADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":451,"kind":1024,"name":"xAdd","url":"modules/lib_client_commands.html#__type.xAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":452,"kind":1024,"name":"XAUTOCLAIM_JUSTID","url":"modules/lib_client_commands.html#__type.XAUTOCLAIM_JUSTID","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":453,"kind":1024,"name":"xAutoClaimJustId","url":"modules/lib_client_commands.html#__type.xAutoClaimJustId","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":454,"kind":1024,"name":"XAUTOCLAIM","url":"modules/lib_client_commands.html#__type.XAUTOCLAIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":455,"kind":1024,"name":"xAutoClaim","url":"modules/lib_client_commands.html#__type.xAutoClaim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":456,"kind":1024,"name":"XCLAIM","url":"modules/lib_client_commands.html#__type.XCLAIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":457,"kind":1024,"name":"xClaim","url":"modules/lib_client_commands.html#__type.xClaim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":458,"kind":1024,"name":"XCLAIM_JUSTID","url":"modules/lib_client_commands.html#__type.XCLAIM_JUSTID","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":459,"kind":1024,"name":"xClaimJustId","url":"modules/lib_client_commands.html#__type.xClaimJustId","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":460,"kind":1024,"name":"XDEL","url":"modules/lib_client_commands.html#__type.XDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":461,"kind":1024,"name":"xDel","url":"modules/lib_client_commands.html#__type.xDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":462,"kind":1024,"name":"XGROUP_CREATE","url":"modules/lib_client_commands.html#__type.XGROUP_CREATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":463,"kind":1024,"name":"xGroupCreate","url":"modules/lib_client_commands.html#__type.xGroupCreate","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":464,"kind":1024,"name":"XGROUP_CREATECONSUMER","url":"modules/lib_client_commands.html#__type.XGROUP_CREATECONSUMER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":465,"kind":1024,"name":"xGroupCreateConsumer","url":"modules/lib_client_commands.html#__type.xGroupCreateConsumer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":466,"kind":1024,"name":"XGROUP_DELCONSUMER","url":"modules/lib_client_commands.html#__type.XGROUP_DELCONSUMER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":467,"kind":1024,"name":"xGroupDelConsumer","url":"modules/lib_client_commands.html#__type.xGroupDelConsumer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":468,"kind":1024,"name":"XGROUP_DESTROY","url":"modules/lib_client_commands.html#__type.XGROUP_DESTROY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":469,"kind":1024,"name":"xGroupDestroy","url":"modules/lib_client_commands.html#__type.xGroupDestroy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":470,"kind":1024,"name":"XGROUP_SETID","url":"modules/lib_client_commands.html#__type.XGROUP_SETID","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":471,"kind":1024,"name":"xGroupSetId","url":"modules/lib_client_commands.html#__type.xGroupSetId","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":472,"kind":1024,"name":"XINFO_CONSUMERS","url":"modules/lib_client_commands.html#__type.XINFO_CONSUMERS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":473,"kind":1024,"name":"xInfoConsumers","url":"modules/lib_client_commands.html#__type.xInfoConsumers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":474,"kind":1024,"name":"XINFO_GROUPS","url":"modules/lib_client_commands.html#__type.XINFO_GROUPS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":475,"kind":1024,"name":"xInfoGroups","url":"modules/lib_client_commands.html#__type.xInfoGroups","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":476,"kind":1024,"name":"XINFO_STREAM","url":"modules/lib_client_commands.html#__type.XINFO_STREAM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":477,"kind":1024,"name":"xInfoStream","url":"modules/lib_client_commands.html#__type.xInfoStream","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":478,"kind":1024,"name":"XLEN","url":"modules/lib_client_commands.html#__type.XLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":479,"kind":1024,"name":"xLen","url":"modules/lib_client_commands.html#__type.xLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":480,"kind":1024,"name":"XPENDING_RANGE","url":"modules/lib_client_commands.html#__type.XPENDING_RANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":481,"kind":1024,"name":"xPendingRange","url":"modules/lib_client_commands.html#__type.xPendingRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":482,"kind":1024,"name":"XPENDING","url":"modules/lib_client_commands.html#__type.XPENDING","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":483,"kind":1024,"name":"xPending","url":"modules/lib_client_commands.html#__type.xPending","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":484,"kind":1024,"name":"XRANGE","url":"modules/lib_client_commands.html#__type.XRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":485,"kind":1024,"name":"xRange","url":"modules/lib_client_commands.html#__type.xRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":486,"kind":1024,"name":"XREAD","url":"modules/lib_client_commands.html#__type.XREAD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":487,"kind":1024,"name":"xRead","url":"modules/lib_client_commands.html#__type.xRead","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":488,"kind":1024,"name":"XREADGROUP","url":"modules/lib_client_commands.html#__type.XREADGROUP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":489,"kind":1024,"name":"xReadGroup","url":"modules/lib_client_commands.html#__type.xReadGroup","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":490,"kind":1024,"name":"XREVRANGE","url":"modules/lib_client_commands.html#__type.XREVRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":491,"kind":1024,"name":"xRevRange","url":"modules/lib_client_commands.html#__type.xRevRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":492,"kind":1024,"name":"XTRIM","url":"modules/lib_client_commands.html#__type.XTRIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":493,"kind":1024,"name":"xTrim","url":"modules/lib_client_commands.html#__type.xTrim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":494,"kind":1024,"name":"ZADD","url":"modules/lib_client_commands.html#__type.ZADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":495,"kind":1024,"name":"zAdd","url":"modules/lib_client_commands.html#__type.zAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":496,"kind":1024,"name":"ZCARD","url":"modules/lib_client_commands.html#__type.ZCARD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":497,"kind":1024,"name":"zCard","url":"modules/lib_client_commands.html#__type.zCard","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":498,"kind":1024,"name":"ZCOUNT","url":"modules/lib_client_commands.html#__type.ZCOUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":499,"kind":1024,"name":"zCount","url":"modules/lib_client_commands.html#__type.zCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":500,"kind":1024,"name":"ZDIFF_WITHSCORES","url":"modules/lib_client_commands.html#__type.ZDIFF_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":501,"kind":1024,"name":"zDiffWithScores","url":"modules/lib_client_commands.html#__type.zDiffWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":502,"kind":1024,"name":"ZDIFF","url":"modules/lib_client_commands.html#__type.ZDIFF","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":503,"kind":1024,"name":"zDiff","url":"modules/lib_client_commands.html#__type.zDiff","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":504,"kind":1024,"name":"ZDIFFSTORE","url":"modules/lib_client_commands.html#__type.ZDIFFSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":505,"kind":1024,"name":"zDiffStore","url":"modules/lib_client_commands.html#__type.zDiffStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":506,"kind":1024,"name":"ZINCRBY","url":"modules/lib_client_commands.html#__type.ZINCRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":507,"kind":1024,"name":"zIncrBy","url":"modules/lib_client_commands.html#__type.zIncrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":508,"kind":1024,"name":"ZINTER_WITHSCORES","url":"modules/lib_client_commands.html#__type.ZINTER_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":509,"kind":1024,"name":"zInterWithScores","url":"modules/lib_client_commands.html#__type.zInterWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":510,"kind":1024,"name":"ZINTER","url":"modules/lib_client_commands.html#__type.ZINTER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":511,"kind":1024,"name":"zInter","url":"modules/lib_client_commands.html#__type.zInter","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":512,"kind":1024,"name":"ZINTERSTORE","url":"modules/lib_client_commands.html#__type.ZINTERSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":513,"kind":1024,"name":"zInterStore","url":"modules/lib_client_commands.html#__type.zInterStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":514,"kind":1024,"name":"ZLEXCOUNT","url":"modules/lib_client_commands.html#__type.ZLEXCOUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":515,"kind":1024,"name":"zLexCount","url":"modules/lib_client_commands.html#__type.zLexCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":516,"kind":1024,"name":"ZMSCORE","url":"modules/lib_client_commands.html#__type.ZMSCORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":517,"kind":1024,"name":"zmScore","url":"modules/lib_client_commands.html#__type.zmScore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":518,"kind":1024,"name":"ZPOPMAX_COUNT","url":"modules/lib_client_commands.html#__type.ZPOPMAX_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":519,"kind":1024,"name":"zPopMaxCount","url":"modules/lib_client_commands.html#__type.zPopMaxCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":520,"kind":1024,"name":"ZPOPMAX","url":"modules/lib_client_commands.html#__type.ZPOPMAX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":521,"kind":1024,"name":"zPopMax","url":"modules/lib_client_commands.html#__type.zPopMax","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":522,"kind":1024,"name":"ZPOPMIN_COUNT","url":"modules/lib_client_commands.html#__type.ZPOPMIN_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":523,"kind":1024,"name":"zPopMinCount","url":"modules/lib_client_commands.html#__type.zPopMinCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":524,"kind":1024,"name":"ZPOPMIN","url":"modules/lib_client_commands.html#__type.ZPOPMIN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":525,"kind":1024,"name":"zPopMin","url":"modules/lib_client_commands.html#__type.zPopMin","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":526,"kind":1024,"name":"ZRANDMEMBER_COUNT_WITHSCORES","url":"modules/lib_client_commands.html#__type.ZRANDMEMBER_COUNT_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":527,"kind":1024,"name":"zRandMemberCountWithScores","url":"modules/lib_client_commands.html#__type.zRandMemberCountWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":528,"kind":1024,"name":"ZRANDMEMBER_COUNT","url":"modules/lib_client_commands.html#__type.ZRANDMEMBER_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":529,"kind":1024,"name":"zRandMemberCount","url":"modules/lib_client_commands.html#__type.zRandMemberCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":530,"kind":1024,"name":"ZRANDMEMBER","url":"modules/lib_client_commands.html#__type.ZRANDMEMBER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":531,"kind":1024,"name":"zRandMember","url":"modules/lib_client_commands.html#__type.zRandMember","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":532,"kind":1024,"name":"ZRANGE_WITHSCORES","url":"modules/lib_client_commands.html#__type.ZRANGE_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":533,"kind":1024,"name":"zRangeWithScores","url":"modules/lib_client_commands.html#__type.zRangeWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":534,"kind":1024,"name":"ZRANGE","url":"modules/lib_client_commands.html#__type.ZRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":535,"kind":1024,"name":"zRange","url":"modules/lib_client_commands.html#__type.zRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":536,"kind":1024,"name":"ZRANGEBYLEX","url":"modules/lib_client_commands.html#__type.ZRANGEBYLEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":537,"kind":1024,"name":"zRangeByLex","url":"modules/lib_client_commands.html#__type.zRangeByLex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":538,"kind":1024,"name":"ZRANGEBYSCORE_WITHSCORES","url":"modules/lib_client_commands.html#__type.ZRANGEBYSCORE_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":539,"kind":1024,"name":"zRangeByScoreWithScores","url":"modules/lib_client_commands.html#__type.zRangeByScoreWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":540,"kind":1024,"name":"ZRANGEBYSCORE","url":"modules/lib_client_commands.html#__type.ZRANGEBYSCORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":541,"kind":1024,"name":"zRangeByScore","url":"modules/lib_client_commands.html#__type.zRangeByScore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":542,"kind":1024,"name":"ZRANGESTORE","url":"modules/lib_client_commands.html#__type.ZRANGESTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":543,"kind":1024,"name":"zRangeStore","url":"modules/lib_client_commands.html#__type.zRangeStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":544,"kind":1024,"name":"ZRANK","url":"modules/lib_client_commands.html#__type.ZRANK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":545,"kind":1024,"name":"zRank","url":"modules/lib_client_commands.html#__type.zRank","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":546,"kind":1024,"name":"ZREM","url":"modules/lib_client_commands.html#__type.ZREM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":547,"kind":1024,"name":"zRem","url":"modules/lib_client_commands.html#__type.zRem","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":548,"kind":1024,"name":"ZREMRANGEBYLEX","url":"modules/lib_client_commands.html#__type.ZREMRANGEBYLEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":549,"kind":1024,"name":"zRemRangeByLex","url":"modules/lib_client_commands.html#__type.zRemRangeByLex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":550,"kind":1024,"name":"ZREMRANGEBYRANK","url":"modules/lib_client_commands.html#__type.ZREMRANGEBYRANK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":551,"kind":1024,"name":"zRemRangeByRank","url":"modules/lib_client_commands.html#__type.zRemRangeByRank","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":552,"kind":1024,"name":"ZREMRANGEBYSCORE","url":"modules/lib_client_commands.html#__type.ZREMRANGEBYSCORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":553,"kind":1024,"name":"zRemRangeByScore","url":"modules/lib_client_commands.html#__type.zRemRangeByScore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":554,"kind":1024,"name":"ZREVRANK","url":"modules/lib_client_commands.html#__type.ZREVRANK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":555,"kind":1024,"name":"zRevRank","url":"modules/lib_client_commands.html#__type.zRevRank","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":556,"kind":1024,"name":"ZSCAN","url":"modules/lib_client_commands.html#__type.ZSCAN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":557,"kind":1024,"name":"zScan","url":"modules/lib_client_commands.html#__type.zScan","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":558,"kind":1024,"name":"ZSCORE","url":"modules/lib_client_commands.html#__type.ZSCORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":559,"kind":1024,"name":"zScore","url":"modules/lib_client_commands.html#__type.zScore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":560,"kind":1024,"name":"ZUNION_WITHSCORES","url":"modules/lib_client_commands.html#__type.ZUNION_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":561,"kind":1024,"name":"zUnionWithScores","url":"modules/lib_client_commands.html#__type.zUnionWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":562,"kind":1024,"name":"ZUNION","url":"modules/lib_client_commands.html#__type.ZUNION","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":563,"kind":1024,"name":"zUnion","url":"modules/lib_client_commands.html#__type.zUnion","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":564,"kind":1024,"name":"ZUNIONSTORE","url":"modules/lib_client_commands.html#__type.ZUNIONSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":565,"kind":1024,"name":"zUnionStore","url":"modules/lib_client_commands.html#__type.zUnionStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/client/commands.__type"},{"id":566,"kind":2,"name":"lib/client","url":"modules/lib_client.html","classes":"tsd-kind-module"},{"id":567,"kind":256,"name":"RedisClientOptions","url":"interfaces/lib_client.RedisClientOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client"},{"id":568,"kind":1024,"name":"url","url":"interfaces/lib_client.RedisClientOptions.html#url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":569,"kind":1024,"name":"socket","url":"interfaces/lib_client.RedisClientOptions.html#socket","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":570,"kind":1024,"name":"username","url":"interfaces/lib_client.RedisClientOptions.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":571,"kind":1024,"name":"password","url":"interfaces/lib_client.RedisClientOptions.html#password","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":572,"kind":1024,"name":"name","url":"interfaces/lib_client.RedisClientOptions.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":573,"kind":1024,"name":"database","url":"interfaces/lib_client.RedisClientOptions.html#database","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":574,"kind":1024,"name":"commandsQueueMaxLength","url":"interfaces/lib_client.RedisClientOptions.html#commandsQueueMaxLength","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":575,"kind":1024,"name":"readonly","url":"interfaces/lib_client.RedisClientOptions.html#readonly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":576,"kind":1024,"name":"legacyMode","url":"interfaces/lib_client.RedisClientOptions.html#legacyMode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":577,"kind":1024,"name":"isolationPoolOptions","url":"interfaces/lib_client.RedisClientOptions.html#isolationPoolOptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.RedisClientOptions"},{"id":578,"kind":1024,"name":"modules","url":"interfaces/lib_client.RedisClientOptions.html#modules","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client.RedisClientOptions"},{"id":579,"kind":1024,"name":"scripts","url":"interfaces/lib_client.RedisClientOptions.html#scripts","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client.RedisClientOptions"},{"id":580,"kind":4194304,"name":"RedisClientCommandSignature","url":"modules/lib_client.html#RedisClientCommandSignature","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client"},{"id":581,"kind":65536,"name":"__type","url":"modules/lib_client.html#RedisClientCommandSignature.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"lib/client.RedisClientCommandSignature"},{"id":582,"kind":4194304,"name":"WithModules","url":"modules/lib_client.html#WithModules","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client"},{"id":583,"kind":4194304,"name":"WithScripts","url":"modules/lib_client.html#WithScripts","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client"},{"id":584,"kind":4194304,"name":"RedisClientType","url":"modules/lib_client.html#RedisClientType","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client"},{"id":585,"kind":4194304,"name":"InstantiableRedisClient","url":"modules/lib_client.html#InstantiableRedisClient","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client"},{"id":586,"kind":512,"name":"__type","url":"modules/lib_client.html#InstantiableRedisClient.__type","classes":"tsd-kind-constructor tsd-parent-kind-type-alias","parent":"lib/client.InstantiableRedisClient"},{"id":587,"kind":256,"name":"ClientCommandOptions","url":"interfaces/lib_client.ClientCommandOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/client"},{"id":588,"kind":1024,"name":"isolated","url":"interfaces/lib_client.ClientCommandOptions.html#isolated","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client.ClientCommandOptions"},{"id":589,"kind":1024,"name":"asap","url":"interfaces/lib_client.ClientCommandOptions.html#asap","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client.ClientCommandOptions"},{"id":590,"kind":1024,"name":"chainId","url":"interfaces/lib_client.ClientCommandOptions.html#chainId","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client.ClientCommandOptions"},{"id":591,"kind":1024,"name":"signal","url":"interfaces/lib_client.ClientCommandOptions.html#signal","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client.ClientCommandOptions"},{"id":592,"kind":1024,"name":"ignorePubSubMode","url":"interfaces/lib_client.ClientCommandOptions.html#ignorePubSubMode","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client.ClientCommandOptions"},{"id":593,"kind":4194304,"name":"ClientLegacyCommandArguments","url":"modules/lib_client.html#ClientLegacyCommandArguments","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/client"},{"id":594,"kind":128,"name":"default","url":"classes/lib_client.default.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client"},{"id":595,"kind":2048,"name":"commandOptions","url":"classes/lib_client.default.html#commandOptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"lib/client.default"},{"id":596,"kind":2048,"name":"extend","url":"classes/lib_client.default.html#extend","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"lib/client.default"},{"id":597,"kind":2048,"name":"create","url":"classes/lib_client.default.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"lib/client.default"},{"id":598,"kind":2048,"name":"parseURL","url":"classes/lib_client.default.html#parseURL","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"lib/client.default"},{"id":599,"kind":512,"name":"constructor","url":"classes/lib_client.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter tsd-is-overwrite","parent":"lib/client.default"},{"id":600,"kind":1024,"name":"#options","url":"classes/lib_client.default.html#_options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":601,"kind":1024,"name":"#socket","url":"classes/lib_client.default.html#_socket","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":602,"kind":1024,"name":"#queue","url":"classes/lib_client.default.html#_queue","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":603,"kind":1024,"name":"#isolationPool","url":"classes/lib_client.default.html#_isolationPool","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":604,"kind":1024,"name":"#v4","url":"classes/lib_client.default.html#_v4","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":605,"kind":1024,"name":"#selectedDB","url":"classes/lib_client.default.html#_selectedDB","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":606,"kind":262144,"name":"options","url":"classes/lib_client.default.html#options","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"lib/client.default"},{"id":607,"kind":262144,"name":"isOpen","url":"classes/lib_client.default.html#isOpen","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"lib/client.default"},{"id":608,"kind":262144,"name":"v4","url":"classes/lib_client.default.html#v4","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"lib/client.default"},{"id":609,"kind":2048,"name":"#initiateOptions","url":"classes/lib_client.default.html#_initiateOptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":610,"kind":2048,"name":"#initiateSocket","url":"classes/lib_client.default.html#_initiateSocket","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":611,"kind":2048,"name":"#initiateQueue","url":"classes/lib_client.default.html#_initiateQueue","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":612,"kind":2048,"name":"#legacyMode","url":"classes/lib_client.default.html#_legacyMode","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":613,"kind":2048,"name":"#defineLegacyCommand","url":"classes/lib_client.default.html#_defineLegacyCommand","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":614,"kind":2048,"name":"duplicate","url":"classes/lib_client.default.html#duplicate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":615,"kind":2048,"name":"connect","url":"classes/lib_client.default.html#connect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":616,"kind":2048,"name":"commandsExecutor","url":"classes/lib_client.default.html#commandsExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":617,"kind":2048,"name":"sendCommand","url":"classes/lib_client.default.html#sendCommand","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":618,"kind":2048,"name":"#sendCommand","url":"classes/lib_client.default.html#_sendCommand","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-private","parent":"lib/client.default"},{"id":619,"kind":2048,"name":"scriptsExecutor","url":"classes/lib_client.default.html#scriptsExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":620,"kind":2048,"name":"executeScript","url":"classes/lib_client.default.html#executeScript","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":621,"kind":2048,"name":"SELECT","url":"classes/lib_client.default.html#SELECT","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":622,"kind":1024,"name":"select","url":"classes/lib_client.default.html#select","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/client.default"},{"id":623,"kind":65536,"name":"__type","url":"classes/lib_client.default.html#__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/client.default"},{"id":624,"kind":2048,"name":"#subscribe","url":"classes/lib_client.default.html#_subscribe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-private","parent":"lib/client.default"},{"id":625,"kind":2048,"name":"SUBSCRIBE","url":"classes/lib_client.default.html#SUBSCRIBE","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":626,"kind":1024,"name":"subscribe","url":"classes/lib_client.default.html#subscribe","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/client.default"},{"id":627,"kind":65536,"name":"__type","url":"classes/lib_client.default.html#__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":628,"kind":2048,"name":"PSUBSCRIBE","url":"classes/lib_client.default.html#PSUBSCRIBE","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":629,"kind":1024,"name":"pSubscribe","url":"classes/lib_client.default.html#pSubscribe","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/client.default"},{"id":630,"kind":65536,"name":"__type","url":"classes/lib_client.default.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":631,"kind":2048,"name":"#unsubscribe","url":"classes/lib_client.default.html#_unsubscribe","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-private","parent":"lib/client.default"},{"id":632,"kind":2048,"name":"UNSUBSCRIBE","url":"classes/lib_client.default.html#UNSUBSCRIBE","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":633,"kind":1024,"name":"unsubscribe","url":"classes/lib_client.default.html#unsubscribe","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/client.default"},{"id":634,"kind":65536,"name":"__type","url":"classes/lib_client.default.html#__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":635,"kind":2048,"name":"PUNSUBSCRIBE","url":"classes/lib_client.default.html#PUNSUBSCRIBE","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":636,"kind":1024,"name":"pUnsubscribe","url":"classes/lib_client.default.html#pUnsubscribe","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/client.default"},{"id":637,"kind":65536,"name":"__type","url":"classes/lib_client.default.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":638,"kind":2048,"name":"QUIT","url":"classes/lib_client.default.html#QUIT","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":639,"kind":1024,"name":"quit","url":"classes/lib_client.default.html#quit","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/client.default"},{"id":640,"kind":65536,"name":"__type","url":"classes/lib_client.default.html#__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/client.default"},{"id":641,"kind":2048,"name":"#tick","url":"classes/lib_client.default.html#_tick","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":642,"kind":2048,"name":"executeIsolated","url":"classes/lib_client.default.html#executeIsolated","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/client.default"},{"id":643,"kind":2048,"name":"multi","url":"classes/lib_client.default.html#multi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":644,"kind":2048,"name":"multiExecutor","url":"classes/lib_client.default.html#multiExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":645,"kind":2048,"name":"scanIterator","url":"classes/lib_client.default.html#scanIterator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":646,"kind":2048,"name":"hScanIterator","url":"classes/lib_client.default.html#hScanIterator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":647,"kind":2048,"name":"sScanIterator","url":"classes/lib_client.default.html#sScanIterator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":648,"kind":2048,"name":"zScanIterator","url":"classes/lib_client.default.html#zScanIterator","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":649,"kind":2048,"name":"disconnect","url":"classes/lib_client.default.html#disconnect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client.default"},{"id":650,"kind":2048,"name":"#destroyIsolationPool","url":"classes/lib_client.default.html#_destroyIsolationPool","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client.default"},{"id":651,"kind":2,"name":"lib/client/multi-command","url":"modules/lib_client_multi_command.html","classes":"tsd-kind-module"},{"id":652,"kind":4194304,"name":"RedisClientMultiCommandType","url":"modules/lib_client_multi_command.html#RedisClientMultiCommandType","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/client/multi-command"},{"id":653,"kind":4194304,"name":"RedisClientMultiExecutor","url":"modules/lib_client_multi_command.html#RedisClientMultiExecutor","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/client/multi-command"},{"id":654,"kind":65536,"name":"__type","url":"modules/lib_client_multi_command.html#RedisClientMultiExecutor.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"lib/client/multi-command.RedisClientMultiExecutor"},{"id":655,"kind":128,"name":"default","url":"classes/lib_client_multi_command.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/client/multi-command"},{"id":656,"kind":2048,"name":"extend","url":"classes/lib_client_multi_command.default.html#extend","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"lib/client/multi-command.default"},{"id":657,"kind":512,"name":"constructor","url":"classes/lib_client_multi_command.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":658,"kind":1024,"name":"#multi","url":"classes/lib_client_multi_command.default.html#_multi","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/multi-command.default"},{"id":659,"kind":1024,"name":"#executor","url":"classes/lib_client_multi_command.default.html#_executor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/multi-command.default"},{"id":660,"kind":1024,"name":"v4","url":"classes/lib_client_multi_command.default.html#v4","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":661,"kind":2048,"name":"#legacyMode","url":"classes/lib_client_multi_command.default.html#_legacyMode","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/multi-command.default"},{"id":662,"kind":2048,"name":"#defineLegacyCommand","url":"classes/lib_client_multi_command.default.html#_defineLegacyCommand","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/multi-command.default"},{"id":663,"kind":2048,"name":"commandsExecutor","url":"classes/lib_client_multi_command.default.html#commandsExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":664,"kind":2048,"name":"addCommand","url":"classes/lib_client_multi_command.default.html#addCommand","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":665,"kind":2048,"name":"scriptsExecutor","url":"classes/lib_client_multi_command.default.html#scriptsExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":666,"kind":2048,"name":"exec","url":"classes/lib_client_multi_command.default.html#exec","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":667,"kind":1024,"name":"EXEC","url":"classes/lib_client_multi_command.default.html#EXEC","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":668,"kind":65536,"name":"__type","url":"classes/lib_client_multi_command.default.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":669,"kind":2048,"name":"execAsPipeline","url":"classes/lib_client_multi_command.default.html#execAsPipeline","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/multi-command.default"},{"id":670,"kind":2,"name":"lib/client/socket","url":"modules/lib_client_socket.html","classes":"tsd-kind-module"},{"id":671,"kind":256,"name":"RedisSocketCommonOptions","url":"interfaces/lib_client_socket.RedisSocketCommonOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/client/socket"},{"id":672,"kind":1024,"name":"connectTimeout","url":"interfaces/lib_client_socket.RedisSocketCommonOptions.html#connectTimeout","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client/socket.RedisSocketCommonOptions"},{"id":673,"kind":1024,"name":"noDelay","url":"interfaces/lib_client_socket.RedisSocketCommonOptions.html#noDelay","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client/socket.RedisSocketCommonOptions"},{"id":674,"kind":1024,"name":"keepAlive","url":"interfaces/lib_client_socket.RedisSocketCommonOptions.html#keepAlive","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client/socket.RedisSocketCommonOptions"},{"id":675,"kind":2048,"name":"reconnectStrategy","url":"interfaces/lib_client_socket.RedisSocketCommonOptions.html#reconnectStrategy","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"lib/client/socket.RedisSocketCommonOptions"},{"id":676,"kind":4194304,"name":"RedisNetSocketOptions","url":"modules/lib_client_socket.html#RedisNetSocketOptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/client/socket"},{"id":677,"kind":256,"name":"RedisTlsSocketOptions","url":"interfaces/lib_client_socket.RedisTlsSocketOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/client/socket"},{"id":678,"kind":1024,"name":"tls","url":"interfaces/lib_client_socket.RedisTlsSocketOptions.html#tls","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/client/socket.RedisTlsSocketOptions"},{"id":679,"kind":1024,"name":"connectTimeout","url":"interfaces/lib_client_socket.RedisTlsSocketOptions.html#connectTimeout","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client/socket.RedisTlsSocketOptions"},{"id":680,"kind":1024,"name":"noDelay","url":"interfaces/lib_client_socket.RedisTlsSocketOptions.html#noDelay","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client/socket.RedisTlsSocketOptions"},{"id":681,"kind":1024,"name":"keepAlive","url":"interfaces/lib_client_socket.RedisTlsSocketOptions.html#keepAlive","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client/socket.RedisTlsSocketOptions"},{"id":682,"kind":2048,"name":"reconnectStrategy","url":"interfaces/lib_client_socket.RedisTlsSocketOptions.html#reconnectStrategy","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited","parent":"lib/client/socket.RedisTlsSocketOptions"},{"id":683,"kind":65536,"name":"__type","url":"interfaces/lib_client_socket.RedisTlsSocketOptions.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"lib/client/socket.RedisTlsSocketOptions"},{"id":684,"kind":65536,"name":"__type","url":"interfaces/lib_client_socket.RedisTlsSocketOptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"lib/client/socket.RedisTlsSocketOptions"},{"id":685,"kind":4194304,"name":"RedisSocketOptions","url":"modules/lib_client_socket.html#RedisSocketOptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/client/socket"},{"id":686,"kind":4194304,"name":"RedisSocketInitiator","url":"modules/lib_client_socket.html#RedisSocketInitiator","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/client/socket"},{"id":687,"kind":65536,"name":"__type","url":"modules/lib_client_socket.html#RedisSocketInitiator.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"lib/client/socket.RedisSocketInitiator"},{"id":688,"kind":128,"name":"default","url":"classes/lib_client_socket.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/client/socket"},{"id":689,"kind":2048,"name":"#initiateOptions","url":"classes/lib_client_socket.default.html#_initiateOptions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"lib/client/socket.default"},{"id":690,"kind":2048,"name":"#defaultReconnectStrategy","url":"classes/lib_client_socket.default.html#_defaultReconnectStrategy","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"lib/client/socket.default"},{"id":691,"kind":2048,"name":"#isTlsSocket","url":"classes/lib_client_socket.default.html#_isTlsSocket","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private tsd-is-static","parent":"lib/client/socket.default"},{"id":692,"kind":512,"name":"constructor","url":"classes/lib_client_socket.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/client/socket.default"},{"id":693,"kind":1024,"name":"#initiator","url":"classes/lib_client_socket.default.html#_initiator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":694,"kind":1024,"name":"#options","url":"classes/lib_client_socket.default.html#_options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":695,"kind":1024,"name":"#socket","url":"classes/lib_client_socket.default.html#_socket","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":696,"kind":1024,"name":"#isOpen","url":"classes/lib_client_socket.default.html#_isOpen","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":697,"kind":262144,"name":"isOpen","url":"classes/lib_client_socket.default.html#isOpen","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"lib/client/socket.default"},{"id":698,"kind":1024,"name":"#isReady","url":"classes/lib_client_socket.default.html#_isReady","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":699,"kind":262144,"name":"isReady","url":"classes/lib_client_socket.default.html#isReady","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"lib/client/socket.default"},{"id":700,"kind":1024,"name":"#writableNeedDrain","url":"classes/lib_client_socket.default.html#_writableNeedDrain","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":701,"kind":262144,"name":"writableNeedDrain","url":"classes/lib_client_socket.default.html#writableNeedDrain","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"lib/client/socket.default"},{"id":702,"kind":2048,"name":"connect","url":"classes/lib_client_socket.default.html#connect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/socket.default"},{"id":703,"kind":2048,"name":"#connect","url":"classes/lib_client_socket.default.html#_connect","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":704,"kind":2048,"name":"#retryConnection","url":"classes/lib_client_socket.default.html#_retryConnection","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":705,"kind":2048,"name":"#createSocket","url":"classes/lib_client_socket.default.html#_createSocket","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":706,"kind":2048,"name":"#createNetSocket","url":"classes/lib_client_socket.default.html#_createNetSocket","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":707,"kind":2048,"name":"#createTlsSocket","url":"classes/lib_client_socket.default.html#_createTlsSocket","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":708,"kind":2048,"name":"#onSocketError","url":"classes/lib_client_socket.default.html#_onSocketError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":709,"kind":2048,"name":"writeCommand","url":"classes/lib_client_socket.default.html#writeCommand","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/socket.default"},{"id":710,"kind":2048,"name":"disconnect","url":"classes/lib_client_socket.default.html#disconnect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/socket.default"},{"id":711,"kind":2048,"name":"quit","url":"classes/lib_client_socket.default.html#quit","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/socket.default"},{"id":712,"kind":1024,"name":"#isCorked","url":"classes/lib_client_socket.default.html#_isCorked","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/client/socket.default"},{"id":713,"kind":2048,"name":"cork","url":"classes/lib_client_socket.default.html#cork","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/client/socket.default"},{"id":714,"kind":2,"name":"lib/cluster/cluster-slots","url":"modules/lib_cluster_cluster_slots.html","classes":"tsd-kind-module"},{"id":715,"kind":256,"name":"ClusterNode","url":"interfaces/lib_cluster_cluster_slots.ClusterNode.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/cluster/cluster-slots"},{"id":716,"kind":1024,"name":"id","url":"interfaces/lib_cluster_cluster_slots.ClusterNode.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/cluster/cluster-slots.ClusterNode"},{"id":717,"kind":1024,"name":"client","url":"interfaces/lib_cluster_cluster_slots.ClusterNode.html#client","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/cluster/cluster-slots.ClusterNode"},{"id":718,"kind":128,"name":"default","url":"classes/lib_cluster_cluster_slots.default.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/cluster/cluster-slots"},{"id":719,"kind":512,"name":"constructor","url":"classes/lib_cluster_cluster_slots.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/cluster/cluster-slots.default"},{"id":720,"kind":1024,"name":"#options","url":"classes/lib_cluster_cluster_slots.default.html#_options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":721,"kind":1024,"name":"#Client","url":"classes/lib_cluster_cluster_slots.default.html#_Client","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":722,"kind":1024,"name":"#onError","url":"classes/lib_cluster_cluster_slots.default.html#_onError","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":723,"kind":1024,"name":"#nodeByUrl","url":"classes/lib_cluster_cluster_slots.default.html#_nodeByUrl","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":724,"kind":1024,"name":"#slots","url":"classes/lib_cluster_cluster_slots.default.html#_slots","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":725,"kind":2048,"name":"connect","url":"classes/lib_cluster_cluster_slots.default.html#connect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/cluster-slots.default"},{"id":726,"kind":2048,"name":"#discoverNodes","url":"classes/lib_cluster_cluster_slots.default.html#_discoverNodes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":727,"kind":1024,"name":"#runningRediscoverPromise","url":"classes/lib_cluster_cluster_slots.default.html#_runningRediscoverPromise","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":728,"kind":2048,"name":"rediscover","url":"classes/lib_cluster_cluster_slots.default.html#rediscover","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/cluster-slots.default"},{"id":729,"kind":2048,"name":"#rediscover","url":"classes/lib_cluster_cluster_slots.default.html#_rediscover","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":730,"kind":2048,"name":"#reset","url":"classes/lib_cluster_cluster_slots.default.html#_reset","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":731,"kind":2048,"name":"#clientOptionsDefaults","url":"classes/lib_cluster_cluster_slots.default.html#_clientOptionsDefaults","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":732,"kind":2048,"name":"#initiateClient","url":"classes/lib_cluster_cluster_slots.default.html#_initiateClient","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":733,"kind":2048,"name":"#initiateClientForNode","url":"classes/lib_cluster_cluster_slots.default.html#_initiateClientForNode","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":734,"kind":2048,"name":"getSlotMaster","url":"classes/lib_cluster_cluster_slots.default.html#getSlotMaster","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/cluster-slots.default"},{"id":735,"kind":2048,"name":"#slotClientIterator","url":"classes/lib_cluster_cluster_slots.default.html#_slotClientIterator","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":736,"kind":2048,"name":"#getSlotClient","url":"classes/lib_cluster_cluster_slots.default.html#_getSlotClient","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":737,"kind":1024,"name":"#randomClientIterator","url":"classes/lib_cluster_cluster_slots.default.html#_randomClientIterator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":738,"kind":2048,"name":"#getRandomClient","url":"classes/lib_cluster_cluster_slots.default.html#_getRandomClient","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/cluster-slots.default"},{"id":739,"kind":2048,"name":"getClient","url":"classes/lib_cluster_cluster_slots.default.html#getClient","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/cluster-slots.default"},{"id":740,"kind":2048,"name":"getMasters","url":"classes/lib_cluster_cluster_slots.default.html#getMasters","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/cluster-slots.default"},{"id":741,"kind":2048,"name":"getNodeByUrl","url":"classes/lib_cluster_cluster_slots.default.html#getNodeByUrl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/cluster-slots.default"},{"id":742,"kind":2048,"name":"disconnect","url":"classes/lib_cluster_cluster_slots.default.html#disconnect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/cluster-slots.default"},{"id":743,"kind":2,"name":"lib/cluster/commands","url":"modules/lib_cluster_commands.html","classes":"tsd-kind-module"},{"id":744,"kind":1024,"name":"default","url":"modules/lib_cluster_commands.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"lib/cluster/commands"},{"id":745,"kind":65536,"name":"__type","url":"modules/lib_cluster_commands.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"lib/cluster/commands"},{"id":746,"kind":1024,"name":"APPEND","url":"modules/lib_cluster_commands.html#__type.APPEND","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":747,"kind":1024,"name":"append","url":"modules/lib_cluster_commands.html#__type.append","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":748,"kind":1024,"name":"BITCOUNT","url":"modules/lib_cluster_commands.html#__type.BITCOUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":749,"kind":1024,"name":"bitCount","url":"modules/lib_cluster_commands.html#__type.bitCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":750,"kind":1024,"name":"BITFIELD","url":"modules/lib_cluster_commands.html#__type.BITFIELD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":751,"kind":1024,"name":"bitField","url":"modules/lib_cluster_commands.html#__type.bitField","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":752,"kind":1024,"name":"BITOP","url":"modules/lib_cluster_commands.html#__type.BITOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":753,"kind":1024,"name":"bitOp","url":"modules/lib_cluster_commands.html#__type.bitOp","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":754,"kind":1024,"name":"BITPOS","url":"modules/lib_cluster_commands.html#__type.BITPOS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":755,"kind":1024,"name":"bitPos","url":"modules/lib_cluster_commands.html#__type.bitPos","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":756,"kind":1024,"name":"BLMOVE","url":"modules/lib_cluster_commands.html#__type.BLMOVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":757,"kind":1024,"name":"blMove","url":"modules/lib_cluster_commands.html#__type.blMove","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":758,"kind":1024,"name":"BLPOP","url":"modules/lib_cluster_commands.html#__type.BLPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":759,"kind":1024,"name":"blPop","url":"modules/lib_cluster_commands.html#__type.blPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":760,"kind":1024,"name":"BRPOP","url":"modules/lib_cluster_commands.html#__type.BRPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":761,"kind":1024,"name":"brPop","url":"modules/lib_cluster_commands.html#__type.brPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":762,"kind":1024,"name":"BRPOPLPUSH","url":"modules/lib_cluster_commands.html#__type.BRPOPLPUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":763,"kind":1024,"name":"brPopLPush","url":"modules/lib_cluster_commands.html#__type.brPopLPush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":764,"kind":1024,"name":"BZPOPMAX","url":"modules/lib_cluster_commands.html#__type.BZPOPMAX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":765,"kind":1024,"name":"bzPopMax","url":"modules/lib_cluster_commands.html#__type.bzPopMax","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":766,"kind":1024,"name":"BZPOPMIN","url":"modules/lib_cluster_commands.html#__type.BZPOPMIN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":767,"kind":1024,"name":"bzPopMin","url":"modules/lib_cluster_commands.html#__type.bzPopMin","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":768,"kind":1024,"name":"COPY","url":"modules/lib_cluster_commands.html#__type.COPY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":769,"kind":1024,"name":"copy","url":"modules/lib_cluster_commands.html#__type.copy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":770,"kind":1024,"name":"DECR","url":"modules/lib_cluster_commands.html#__type.DECR","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":771,"kind":1024,"name":"decr","url":"modules/lib_cluster_commands.html#__type.decr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":772,"kind":1024,"name":"DECRBY","url":"modules/lib_cluster_commands.html#__type.DECRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":773,"kind":1024,"name":"decrBy","url":"modules/lib_cluster_commands.html#__type.decrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":774,"kind":1024,"name":"DEL","url":"modules/lib_cluster_commands.html#__type.DEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":775,"kind":1024,"name":"del","url":"modules/lib_cluster_commands.html#__type.del","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":776,"kind":1024,"name":"DUMP","url":"modules/lib_cluster_commands.html#__type.DUMP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":777,"kind":1024,"name":"dump","url":"modules/lib_cluster_commands.html#__type.dump","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":778,"kind":1024,"name":"EVAL","url":"modules/lib_cluster_commands.html#__type.EVAL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":779,"kind":1024,"name":"eval","url":"modules/lib_cluster_commands.html#__type.eval","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":780,"kind":1024,"name":"EVALSHA","url":"modules/lib_cluster_commands.html#__type.EVALSHA","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":781,"kind":1024,"name":"evalSha","url":"modules/lib_cluster_commands.html#__type.evalSha","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":782,"kind":1024,"name":"EXISTS","url":"modules/lib_cluster_commands.html#__type.EXISTS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":783,"kind":1024,"name":"exists","url":"modules/lib_cluster_commands.html#__type.exists","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":784,"kind":1024,"name":"EXPIRE","url":"modules/lib_cluster_commands.html#__type.EXPIRE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":785,"kind":1024,"name":"expire","url":"modules/lib_cluster_commands.html#__type.expire","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":786,"kind":1024,"name":"EXPIREAT","url":"modules/lib_cluster_commands.html#__type.EXPIREAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":787,"kind":1024,"name":"expireAt","url":"modules/lib_cluster_commands.html#__type.expireAt","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":788,"kind":1024,"name":"GEOADD","url":"modules/lib_cluster_commands.html#__type.GEOADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":789,"kind":1024,"name":"geoAdd","url":"modules/lib_cluster_commands.html#__type.geoAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":790,"kind":1024,"name":"GEODIST","url":"modules/lib_cluster_commands.html#__type.GEODIST","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":791,"kind":1024,"name":"geoDist","url":"modules/lib_cluster_commands.html#__type.geoDist","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":792,"kind":1024,"name":"GEOHASH","url":"modules/lib_cluster_commands.html#__type.GEOHASH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":793,"kind":1024,"name":"geoHash","url":"modules/lib_cluster_commands.html#__type.geoHash","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":794,"kind":1024,"name":"GEOPOS","url":"modules/lib_cluster_commands.html#__type.GEOPOS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":795,"kind":1024,"name":"geoPos","url":"modules/lib_cluster_commands.html#__type.geoPos","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":796,"kind":1024,"name":"GEOSEARCH_WITH","url":"modules/lib_cluster_commands.html#__type.GEOSEARCH_WITH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":797,"kind":1024,"name":"geoSearchWith","url":"modules/lib_cluster_commands.html#__type.geoSearchWith","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":798,"kind":1024,"name":"GEOSEARCH","url":"modules/lib_cluster_commands.html#__type.GEOSEARCH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":799,"kind":1024,"name":"geoSearch","url":"modules/lib_cluster_commands.html#__type.geoSearch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":800,"kind":1024,"name":"GEOSEARCHSTORE","url":"modules/lib_cluster_commands.html#__type.GEOSEARCHSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":801,"kind":1024,"name":"geoSearchStore","url":"modules/lib_cluster_commands.html#__type.geoSearchStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":802,"kind":1024,"name":"GET_BUFFER","url":"modules/lib_cluster_commands.html#__type.GET_BUFFER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":803,"kind":1024,"name":"getBuffer","url":"modules/lib_cluster_commands.html#__type.getBuffer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":804,"kind":1024,"name":"GET","url":"modules/lib_cluster_commands.html#__type.GET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":805,"kind":1024,"name":"get","url":"modules/lib_cluster_commands.html#__type.get","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":806,"kind":1024,"name":"GETBIT","url":"modules/lib_cluster_commands.html#__type.GETBIT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":807,"kind":1024,"name":"getBit","url":"modules/lib_cluster_commands.html#__type.getBit","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":808,"kind":1024,"name":"GETDEL","url":"modules/lib_cluster_commands.html#__type.GETDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":809,"kind":1024,"name":"getDel","url":"modules/lib_cluster_commands.html#__type.getDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":810,"kind":1024,"name":"GETEX","url":"modules/lib_cluster_commands.html#__type.GETEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":811,"kind":1024,"name":"getEx","url":"modules/lib_cluster_commands.html#__type.getEx","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":812,"kind":1024,"name":"GETRANGE","url":"modules/lib_cluster_commands.html#__type.GETRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":813,"kind":1024,"name":"getRange","url":"modules/lib_cluster_commands.html#__type.getRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":814,"kind":1024,"name":"GETSET","url":"modules/lib_cluster_commands.html#__type.GETSET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":815,"kind":1024,"name":"getSet","url":"modules/lib_cluster_commands.html#__type.getSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":816,"kind":1024,"name":"HDEL","url":"modules/lib_cluster_commands.html#__type.HDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":817,"kind":1024,"name":"hDel","url":"modules/lib_cluster_commands.html#__type.hDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":818,"kind":1024,"name":"HEXISTS","url":"modules/lib_cluster_commands.html#__type.HEXISTS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":819,"kind":1024,"name":"hExists","url":"modules/lib_cluster_commands.html#__type.hExists","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":820,"kind":1024,"name":"HGET","url":"modules/lib_cluster_commands.html#__type.HGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":821,"kind":1024,"name":"hGet","url":"modules/lib_cluster_commands.html#__type.hGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":822,"kind":1024,"name":"HGETALL","url":"modules/lib_cluster_commands.html#__type.HGETALL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":823,"kind":1024,"name":"hGetAll","url":"modules/lib_cluster_commands.html#__type.hGetAll","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":824,"kind":1024,"name":"HINCRBY","url":"modules/lib_cluster_commands.html#__type.HINCRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":825,"kind":1024,"name":"hIncrBy","url":"modules/lib_cluster_commands.html#__type.hIncrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":826,"kind":1024,"name":"HINCRBYFLOAT","url":"modules/lib_cluster_commands.html#__type.HINCRBYFLOAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":827,"kind":1024,"name":"hIncrByFloat","url":"modules/lib_cluster_commands.html#__type.hIncrByFloat","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":828,"kind":1024,"name":"HKEYS","url":"modules/lib_cluster_commands.html#__type.HKEYS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":829,"kind":1024,"name":"hKeys","url":"modules/lib_cluster_commands.html#__type.hKeys","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":830,"kind":1024,"name":"HLEN","url":"modules/lib_cluster_commands.html#__type.HLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":831,"kind":1024,"name":"hLen","url":"modules/lib_cluster_commands.html#__type.hLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":832,"kind":1024,"name":"HMGET","url":"modules/lib_cluster_commands.html#__type.HMGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":833,"kind":1024,"name":"hmGet","url":"modules/lib_cluster_commands.html#__type.hmGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":834,"kind":1024,"name":"HRANDFIELD_COUNT_WITHVALUES","url":"modules/lib_cluster_commands.html#__type.HRANDFIELD_COUNT_WITHVALUES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":835,"kind":1024,"name":"hRandFieldCountWithValues","url":"modules/lib_cluster_commands.html#__type.hRandFieldCountWithValues","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":836,"kind":1024,"name":"HRANDFIELD_COUNT","url":"modules/lib_cluster_commands.html#__type.HRANDFIELD_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":837,"kind":1024,"name":"hRandFieldCount","url":"modules/lib_cluster_commands.html#__type.hRandFieldCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":838,"kind":1024,"name":"HRANDFIELD","url":"modules/lib_cluster_commands.html#__type.HRANDFIELD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":839,"kind":1024,"name":"hRandField","url":"modules/lib_cluster_commands.html#__type.hRandField","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":840,"kind":1024,"name":"HSCAN","url":"modules/lib_cluster_commands.html#__type.HSCAN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":841,"kind":1024,"name":"hScan","url":"modules/lib_cluster_commands.html#__type.hScan","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":842,"kind":1024,"name":"HSET","url":"modules/lib_cluster_commands.html#__type.HSET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":843,"kind":1024,"name":"hSet","url":"modules/lib_cluster_commands.html#__type.hSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":844,"kind":1024,"name":"HSETNX","url":"modules/lib_cluster_commands.html#__type.HSETNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":845,"kind":1024,"name":"hSetNX","url":"modules/lib_cluster_commands.html#__type.hSetNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":846,"kind":1024,"name":"HSTRLEN","url":"modules/lib_cluster_commands.html#__type.HSTRLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":847,"kind":1024,"name":"hStrLen","url":"modules/lib_cluster_commands.html#__type.hStrLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":848,"kind":1024,"name":"HVALS","url":"modules/lib_cluster_commands.html#__type.HVALS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":849,"kind":1024,"name":"hVals","url":"modules/lib_cluster_commands.html#__type.hVals","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":850,"kind":1024,"name":"INCR","url":"modules/lib_cluster_commands.html#__type.INCR","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":851,"kind":1024,"name":"incr","url":"modules/lib_cluster_commands.html#__type.incr","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":852,"kind":1024,"name":"INCRBY","url":"modules/lib_cluster_commands.html#__type.INCRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":853,"kind":1024,"name":"incrBy","url":"modules/lib_cluster_commands.html#__type.incrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":854,"kind":1024,"name":"INCRBYFLOAT","url":"modules/lib_cluster_commands.html#__type.INCRBYFLOAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":855,"kind":1024,"name":"incrByFloat","url":"modules/lib_cluster_commands.html#__type.incrByFloat","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":856,"kind":1024,"name":"LINDEX","url":"modules/lib_cluster_commands.html#__type.LINDEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":857,"kind":1024,"name":"lIndex","url":"modules/lib_cluster_commands.html#__type.lIndex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":858,"kind":1024,"name":"LINSERT","url":"modules/lib_cluster_commands.html#__type.LINSERT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":859,"kind":1024,"name":"lInsert","url":"modules/lib_cluster_commands.html#__type.lInsert","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":860,"kind":1024,"name":"LLEN","url":"modules/lib_cluster_commands.html#__type.LLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":861,"kind":1024,"name":"lLen","url":"modules/lib_cluster_commands.html#__type.lLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":862,"kind":1024,"name":"LMOVE","url":"modules/lib_cluster_commands.html#__type.LMOVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":863,"kind":1024,"name":"lMove","url":"modules/lib_cluster_commands.html#__type.lMove","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":864,"kind":1024,"name":"LPOP_COUNT","url":"modules/lib_cluster_commands.html#__type.LPOP_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":865,"kind":1024,"name":"lPopCount","url":"modules/lib_cluster_commands.html#__type.lPopCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":866,"kind":1024,"name":"LPOP","url":"modules/lib_cluster_commands.html#__type.LPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":867,"kind":1024,"name":"lPop","url":"modules/lib_cluster_commands.html#__type.lPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":868,"kind":1024,"name":"LPOS_COUNT","url":"modules/lib_cluster_commands.html#__type.LPOS_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":869,"kind":1024,"name":"lPosCount","url":"modules/lib_cluster_commands.html#__type.lPosCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":870,"kind":1024,"name":"LPOS","url":"modules/lib_cluster_commands.html#__type.LPOS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":871,"kind":1024,"name":"lPos","url":"modules/lib_cluster_commands.html#__type.lPos","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":872,"kind":1024,"name":"LPUSH","url":"modules/lib_cluster_commands.html#__type.LPUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":873,"kind":1024,"name":"lPush","url":"modules/lib_cluster_commands.html#__type.lPush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":874,"kind":1024,"name":"LPUSHX","url":"modules/lib_cluster_commands.html#__type.LPUSHX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":875,"kind":1024,"name":"lPushX","url":"modules/lib_cluster_commands.html#__type.lPushX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":876,"kind":1024,"name":"LRANGE","url":"modules/lib_cluster_commands.html#__type.LRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":877,"kind":1024,"name":"lRange","url":"modules/lib_cluster_commands.html#__type.lRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":878,"kind":1024,"name":"LREM","url":"modules/lib_cluster_commands.html#__type.LREM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":879,"kind":1024,"name":"lRem","url":"modules/lib_cluster_commands.html#__type.lRem","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":880,"kind":1024,"name":"LSET","url":"modules/lib_cluster_commands.html#__type.LSET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":881,"kind":1024,"name":"lSet","url":"modules/lib_cluster_commands.html#__type.lSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":882,"kind":1024,"name":"LTRIM","url":"modules/lib_cluster_commands.html#__type.LTRIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":883,"kind":1024,"name":"lTrim","url":"modules/lib_cluster_commands.html#__type.lTrim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":884,"kind":1024,"name":"MGET","url":"modules/lib_cluster_commands.html#__type.MGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":885,"kind":1024,"name":"mGet","url":"modules/lib_cluster_commands.html#__type.mGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":886,"kind":1024,"name":"MIGRATE","url":"modules/lib_cluster_commands.html#__type.MIGRATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":887,"kind":1024,"name":"migrate","url":"modules/lib_cluster_commands.html#__type.migrate","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":888,"kind":1024,"name":"MSET","url":"modules/lib_cluster_commands.html#__type.MSET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":889,"kind":1024,"name":"mSet","url":"modules/lib_cluster_commands.html#__type.mSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":890,"kind":1024,"name":"MSETNX","url":"modules/lib_cluster_commands.html#__type.MSETNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":891,"kind":1024,"name":"mSetNX","url":"modules/lib_cluster_commands.html#__type.mSetNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":892,"kind":1024,"name":"PERSIST","url":"modules/lib_cluster_commands.html#__type.PERSIST","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":893,"kind":1024,"name":"persist","url":"modules/lib_cluster_commands.html#__type.persist","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":894,"kind":1024,"name":"PEXPIRE","url":"modules/lib_cluster_commands.html#__type.PEXPIRE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":895,"kind":1024,"name":"pExpire","url":"modules/lib_cluster_commands.html#__type.pExpire","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":896,"kind":1024,"name":"PEXPIREAT","url":"modules/lib_cluster_commands.html#__type.PEXPIREAT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":897,"kind":1024,"name":"pExpireAt","url":"modules/lib_cluster_commands.html#__type.pExpireAt","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":898,"kind":1024,"name":"PFADD","url":"modules/lib_cluster_commands.html#__type.PFADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":899,"kind":1024,"name":"pfAdd","url":"modules/lib_cluster_commands.html#__type.pfAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":900,"kind":1024,"name":"PFCOUNT","url":"modules/lib_cluster_commands.html#__type.PFCOUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":901,"kind":1024,"name":"pfCount","url":"modules/lib_cluster_commands.html#__type.pfCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":902,"kind":1024,"name":"PFMERGE","url":"modules/lib_cluster_commands.html#__type.PFMERGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":903,"kind":1024,"name":"pfMerge","url":"modules/lib_cluster_commands.html#__type.pfMerge","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":904,"kind":1024,"name":"PSETEX","url":"modules/lib_cluster_commands.html#__type.PSETEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":905,"kind":1024,"name":"pSetEx","url":"modules/lib_cluster_commands.html#__type.pSetEx","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":906,"kind":1024,"name":"PTTL","url":"modules/lib_cluster_commands.html#__type.PTTL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":907,"kind":1024,"name":"pTTL","url":"modules/lib_cluster_commands.html#__type.pTTL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":908,"kind":1024,"name":"PUBLISH","url":"modules/lib_cluster_commands.html#__type.PUBLISH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":909,"kind":1024,"name":"publish","url":"modules/lib_cluster_commands.html#__type.publish","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":910,"kind":1024,"name":"RENAME","url":"modules/lib_cluster_commands.html#__type.RENAME","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":911,"kind":1024,"name":"rename","url":"modules/lib_cluster_commands.html#__type.rename","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":912,"kind":1024,"name":"RENAMENX","url":"modules/lib_cluster_commands.html#__type.RENAMENX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":913,"kind":1024,"name":"renameNX","url":"modules/lib_cluster_commands.html#__type.renameNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":914,"kind":1024,"name":"RPOP_COUNT","url":"modules/lib_cluster_commands.html#__type.RPOP_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":915,"kind":1024,"name":"rPopCount","url":"modules/lib_cluster_commands.html#__type.rPopCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":916,"kind":1024,"name":"RPOP","url":"modules/lib_cluster_commands.html#__type.RPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":917,"kind":1024,"name":"rPop","url":"modules/lib_cluster_commands.html#__type.rPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":918,"kind":1024,"name":"RPOPLPUSH","url":"modules/lib_cluster_commands.html#__type.RPOPLPUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":919,"kind":1024,"name":"rPopLPush","url":"modules/lib_cluster_commands.html#__type.rPopLPush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":920,"kind":1024,"name":"RPUSH","url":"modules/lib_cluster_commands.html#__type.RPUSH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":921,"kind":1024,"name":"rPush","url":"modules/lib_cluster_commands.html#__type.rPush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":922,"kind":1024,"name":"RPUSHX","url":"modules/lib_cluster_commands.html#__type.RPUSHX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":923,"kind":1024,"name":"rPushX","url":"modules/lib_cluster_commands.html#__type.rPushX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":924,"kind":1024,"name":"SADD","url":"modules/lib_cluster_commands.html#__type.SADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":925,"kind":1024,"name":"sAdd","url":"modules/lib_cluster_commands.html#__type.sAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":926,"kind":1024,"name":"SCARD","url":"modules/lib_cluster_commands.html#__type.SCARD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":927,"kind":1024,"name":"sCard","url":"modules/lib_cluster_commands.html#__type.sCard","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":928,"kind":1024,"name":"SDIFF","url":"modules/lib_cluster_commands.html#__type.SDIFF","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":929,"kind":1024,"name":"sDiff","url":"modules/lib_cluster_commands.html#__type.sDiff","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":930,"kind":1024,"name":"SDIFFSTORE","url":"modules/lib_cluster_commands.html#__type.SDIFFSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":931,"kind":1024,"name":"sDiffStore","url":"modules/lib_cluster_commands.html#__type.sDiffStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":932,"kind":1024,"name":"SINTER","url":"modules/lib_cluster_commands.html#__type.SINTER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":933,"kind":1024,"name":"sInter","url":"modules/lib_cluster_commands.html#__type.sInter","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":934,"kind":1024,"name":"SINTERSTORE","url":"modules/lib_cluster_commands.html#__type.SINTERSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":935,"kind":1024,"name":"sInterStore","url":"modules/lib_cluster_commands.html#__type.sInterStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":936,"kind":1024,"name":"SET","url":"modules/lib_cluster_commands.html#__type.SET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":937,"kind":1024,"name":"set","url":"modules/lib_cluster_commands.html#__type.set","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":938,"kind":1024,"name":"SETBIT","url":"modules/lib_cluster_commands.html#__type.SETBIT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":939,"kind":1024,"name":"setBit","url":"modules/lib_cluster_commands.html#__type.setBit","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":940,"kind":1024,"name":"SETEX","url":"modules/lib_cluster_commands.html#__type.SETEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":941,"kind":1024,"name":"setEx","url":"modules/lib_cluster_commands.html#__type.setEx","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":942,"kind":1024,"name":"SETNX","url":"modules/lib_cluster_commands.html#__type.SETNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":943,"kind":1024,"name":"setNX","url":"modules/lib_cluster_commands.html#__type.setNX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":944,"kind":1024,"name":"SETRANGE","url":"modules/lib_cluster_commands.html#__type.SETRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":945,"kind":1024,"name":"setRange","url":"modules/lib_cluster_commands.html#__type.setRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":946,"kind":1024,"name":"SISMEMBER","url":"modules/lib_cluster_commands.html#__type.SISMEMBER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":947,"kind":1024,"name":"sIsMember","url":"modules/lib_cluster_commands.html#__type.sIsMember","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":948,"kind":1024,"name":"SMEMBERS","url":"modules/lib_cluster_commands.html#__type.SMEMBERS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":949,"kind":1024,"name":"sMembers","url":"modules/lib_cluster_commands.html#__type.sMembers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":950,"kind":1024,"name":"SMISMEMBER","url":"modules/lib_cluster_commands.html#__type.SMISMEMBER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":951,"kind":1024,"name":"smIsMember","url":"modules/lib_cluster_commands.html#__type.smIsMember","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":952,"kind":1024,"name":"SMOVE","url":"modules/lib_cluster_commands.html#__type.SMOVE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":953,"kind":1024,"name":"sMove","url":"modules/lib_cluster_commands.html#__type.sMove","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":954,"kind":1024,"name":"SORT","url":"modules/lib_cluster_commands.html#__type.SORT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":955,"kind":1024,"name":"sort","url":"modules/lib_cluster_commands.html#__type.sort","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":956,"kind":1024,"name":"SPOP","url":"modules/lib_cluster_commands.html#__type.SPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":957,"kind":1024,"name":"sPop","url":"modules/lib_cluster_commands.html#__type.sPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":958,"kind":1024,"name":"SRANDMEMBER_COUNT","url":"modules/lib_cluster_commands.html#__type.SRANDMEMBER_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":959,"kind":1024,"name":"sRandMemberCount","url":"modules/lib_cluster_commands.html#__type.sRandMemberCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":960,"kind":1024,"name":"SRANDMEMBER","url":"modules/lib_cluster_commands.html#__type.SRANDMEMBER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":961,"kind":1024,"name":"sRandMember","url":"modules/lib_cluster_commands.html#__type.sRandMember","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":962,"kind":1024,"name":"SREM","url":"modules/lib_cluster_commands.html#__type.SREM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":963,"kind":1024,"name":"sRem","url":"modules/lib_cluster_commands.html#__type.sRem","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":964,"kind":1024,"name":"SSCAN","url":"modules/lib_cluster_commands.html#__type.SSCAN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":965,"kind":1024,"name":"sScan","url":"modules/lib_cluster_commands.html#__type.sScan","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":966,"kind":1024,"name":"STRLEN","url":"modules/lib_cluster_commands.html#__type.STRLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":967,"kind":1024,"name":"strLen","url":"modules/lib_cluster_commands.html#__type.strLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":968,"kind":1024,"name":"SUNION","url":"modules/lib_cluster_commands.html#__type.SUNION","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":969,"kind":1024,"name":"sUnion","url":"modules/lib_cluster_commands.html#__type.sUnion","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":970,"kind":1024,"name":"SUNIONSTORE","url":"modules/lib_cluster_commands.html#__type.SUNIONSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":971,"kind":1024,"name":"sUnionStore","url":"modules/lib_cluster_commands.html#__type.sUnionStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":972,"kind":1024,"name":"TOUCH","url":"modules/lib_cluster_commands.html#__type.TOUCH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":973,"kind":1024,"name":"touch","url":"modules/lib_cluster_commands.html#__type.touch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":974,"kind":1024,"name":"TTL","url":"modules/lib_cluster_commands.html#__type.TTL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":975,"kind":1024,"name":"ttl","url":"modules/lib_cluster_commands.html#__type.ttl","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":976,"kind":1024,"name":"TYPE","url":"modules/lib_cluster_commands.html#__type.TYPE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":977,"kind":1024,"name":"type","url":"modules/lib_cluster_commands.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":978,"kind":1024,"name":"UNLINK","url":"modules/lib_cluster_commands.html#__type.UNLINK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":979,"kind":1024,"name":"unlink","url":"modules/lib_cluster_commands.html#__type.unlink","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":980,"kind":1024,"name":"WATCH","url":"modules/lib_cluster_commands.html#__type.WATCH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":981,"kind":1024,"name":"watch","url":"modules/lib_cluster_commands.html#__type.watch","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":982,"kind":1024,"name":"XACK","url":"modules/lib_cluster_commands.html#__type.XACK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":983,"kind":1024,"name":"xAck","url":"modules/lib_cluster_commands.html#__type.xAck","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":984,"kind":1024,"name":"XADD","url":"modules/lib_cluster_commands.html#__type.XADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":985,"kind":1024,"name":"xAdd","url":"modules/lib_cluster_commands.html#__type.xAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":986,"kind":1024,"name":"XAUTOCLAIM_JUSTID","url":"modules/lib_cluster_commands.html#__type.XAUTOCLAIM_JUSTID","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":987,"kind":1024,"name":"xAutoClaimJustId","url":"modules/lib_cluster_commands.html#__type.xAutoClaimJustId","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":988,"kind":1024,"name":"XAUTOCLAIM","url":"modules/lib_cluster_commands.html#__type.XAUTOCLAIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":989,"kind":1024,"name":"xAutoClaim","url":"modules/lib_cluster_commands.html#__type.xAutoClaim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":990,"kind":1024,"name":"XCLAIM","url":"modules/lib_cluster_commands.html#__type.XCLAIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":991,"kind":1024,"name":"xClaim","url":"modules/lib_cluster_commands.html#__type.xClaim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":992,"kind":1024,"name":"XCLAIM_JUSTID","url":"modules/lib_cluster_commands.html#__type.XCLAIM_JUSTID","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":993,"kind":1024,"name":"xClaimJustId","url":"modules/lib_cluster_commands.html#__type.xClaimJustId","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":994,"kind":1024,"name":"XDEL","url":"modules/lib_cluster_commands.html#__type.XDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":995,"kind":1024,"name":"xDel","url":"modules/lib_cluster_commands.html#__type.xDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":996,"kind":1024,"name":"XGROUP_CREATE","url":"modules/lib_cluster_commands.html#__type.XGROUP_CREATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":997,"kind":1024,"name":"xGroupCreate","url":"modules/lib_cluster_commands.html#__type.xGroupCreate","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":998,"kind":1024,"name":"XGROUP_CREATECONSUMER","url":"modules/lib_cluster_commands.html#__type.XGROUP_CREATECONSUMER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":999,"kind":1024,"name":"xGroupCreateConsumer","url":"modules/lib_cluster_commands.html#__type.xGroupCreateConsumer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1000,"kind":1024,"name":"XGROUP_DELCONSUMER","url":"modules/lib_cluster_commands.html#__type.XGROUP_DELCONSUMER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1001,"kind":1024,"name":"xGroupDelConsumer","url":"modules/lib_cluster_commands.html#__type.xGroupDelConsumer","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1002,"kind":1024,"name":"XGROUP_DESTROY","url":"modules/lib_cluster_commands.html#__type.XGROUP_DESTROY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1003,"kind":1024,"name":"xGroupDestroy","url":"modules/lib_cluster_commands.html#__type.xGroupDestroy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1004,"kind":1024,"name":"XGROUP_SETID","url":"modules/lib_cluster_commands.html#__type.XGROUP_SETID","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1005,"kind":1024,"name":"xGroupSetId","url":"modules/lib_cluster_commands.html#__type.xGroupSetId","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1006,"kind":1024,"name":"XINFO_CONSUMERS","url":"modules/lib_cluster_commands.html#__type.XINFO_CONSUMERS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1007,"kind":1024,"name":"xInfoConsumers","url":"modules/lib_cluster_commands.html#__type.xInfoConsumers","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1008,"kind":1024,"name":"XINFO_GROUPS","url":"modules/lib_cluster_commands.html#__type.XINFO_GROUPS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1009,"kind":1024,"name":"xInfoGroups","url":"modules/lib_cluster_commands.html#__type.xInfoGroups","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1010,"kind":1024,"name":"XINFO_STREAM","url":"modules/lib_cluster_commands.html#__type.XINFO_STREAM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1011,"kind":1024,"name":"xInfoStream","url":"modules/lib_cluster_commands.html#__type.xInfoStream","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1012,"kind":1024,"name":"XLEN","url":"modules/lib_cluster_commands.html#__type.XLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1013,"kind":1024,"name":"xLen","url":"modules/lib_cluster_commands.html#__type.xLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1014,"kind":1024,"name":"XPENDING_RANGE","url":"modules/lib_cluster_commands.html#__type.XPENDING_RANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1015,"kind":1024,"name":"xPendingRange","url":"modules/lib_cluster_commands.html#__type.xPendingRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1016,"kind":1024,"name":"XPENDING","url":"modules/lib_cluster_commands.html#__type.XPENDING","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1017,"kind":1024,"name":"xPending","url":"modules/lib_cluster_commands.html#__type.xPending","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1018,"kind":1024,"name":"XRANGE","url":"modules/lib_cluster_commands.html#__type.XRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1019,"kind":1024,"name":"xRange","url":"modules/lib_cluster_commands.html#__type.xRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1020,"kind":1024,"name":"XREAD","url":"modules/lib_cluster_commands.html#__type.XREAD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1021,"kind":1024,"name":"xRead","url":"modules/lib_cluster_commands.html#__type.xRead","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1022,"kind":1024,"name":"XREADGROUP","url":"modules/lib_cluster_commands.html#__type.XREADGROUP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1023,"kind":1024,"name":"xReadGroup","url":"modules/lib_cluster_commands.html#__type.xReadGroup","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1024,"kind":1024,"name":"XREVRANGE","url":"modules/lib_cluster_commands.html#__type.XREVRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1025,"kind":1024,"name":"xRevRange","url":"modules/lib_cluster_commands.html#__type.xRevRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1026,"kind":1024,"name":"XTRIM","url":"modules/lib_cluster_commands.html#__type.XTRIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1027,"kind":1024,"name":"xTrim","url":"modules/lib_cluster_commands.html#__type.xTrim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1028,"kind":1024,"name":"ZADD","url":"modules/lib_cluster_commands.html#__type.ZADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1029,"kind":1024,"name":"zAdd","url":"modules/lib_cluster_commands.html#__type.zAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1030,"kind":1024,"name":"ZCARD","url":"modules/lib_cluster_commands.html#__type.ZCARD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1031,"kind":1024,"name":"zCard","url":"modules/lib_cluster_commands.html#__type.zCard","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1032,"kind":1024,"name":"ZCOUNT","url":"modules/lib_cluster_commands.html#__type.ZCOUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1033,"kind":1024,"name":"zCount","url":"modules/lib_cluster_commands.html#__type.zCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1034,"kind":1024,"name":"ZDIFF_WITHSCORES","url":"modules/lib_cluster_commands.html#__type.ZDIFF_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1035,"kind":1024,"name":"zDiffWithScores","url":"modules/lib_cluster_commands.html#__type.zDiffWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1036,"kind":1024,"name":"ZDIFF","url":"modules/lib_cluster_commands.html#__type.ZDIFF","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1037,"kind":1024,"name":"zDiff","url":"modules/lib_cluster_commands.html#__type.zDiff","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1038,"kind":1024,"name":"ZDIFFSTORE","url":"modules/lib_cluster_commands.html#__type.ZDIFFSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1039,"kind":1024,"name":"zDiffStore","url":"modules/lib_cluster_commands.html#__type.zDiffStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1040,"kind":1024,"name":"ZINCRBY","url":"modules/lib_cluster_commands.html#__type.ZINCRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1041,"kind":1024,"name":"zIncrBy","url":"modules/lib_cluster_commands.html#__type.zIncrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1042,"kind":1024,"name":"ZINTER_WITHSCORES","url":"modules/lib_cluster_commands.html#__type.ZINTER_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1043,"kind":1024,"name":"zInterWithScores","url":"modules/lib_cluster_commands.html#__type.zInterWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1044,"kind":1024,"name":"ZINTER","url":"modules/lib_cluster_commands.html#__type.ZINTER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1045,"kind":1024,"name":"zInter","url":"modules/lib_cluster_commands.html#__type.zInter","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1046,"kind":1024,"name":"ZINTERSTORE","url":"modules/lib_cluster_commands.html#__type.ZINTERSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1047,"kind":1024,"name":"zInterStore","url":"modules/lib_cluster_commands.html#__type.zInterStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1048,"kind":1024,"name":"ZLEXCOUNT","url":"modules/lib_cluster_commands.html#__type.ZLEXCOUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1049,"kind":1024,"name":"zLexCount","url":"modules/lib_cluster_commands.html#__type.zLexCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1050,"kind":1024,"name":"ZMSCORE","url":"modules/lib_cluster_commands.html#__type.ZMSCORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1051,"kind":1024,"name":"zmScore","url":"modules/lib_cluster_commands.html#__type.zmScore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1052,"kind":1024,"name":"ZPOPMAX_COUNT","url":"modules/lib_cluster_commands.html#__type.ZPOPMAX_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1053,"kind":1024,"name":"zPopMaxCount","url":"modules/lib_cluster_commands.html#__type.zPopMaxCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1054,"kind":1024,"name":"ZPOPMAX","url":"modules/lib_cluster_commands.html#__type.ZPOPMAX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1055,"kind":1024,"name":"zPopMax","url":"modules/lib_cluster_commands.html#__type.zPopMax","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1056,"kind":1024,"name":"ZPOPMIN_COUNT","url":"modules/lib_cluster_commands.html#__type.ZPOPMIN_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1057,"kind":1024,"name":"zPopMinCount","url":"modules/lib_cluster_commands.html#__type.zPopMinCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1058,"kind":1024,"name":"ZPOPMIN","url":"modules/lib_cluster_commands.html#__type.ZPOPMIN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1059,"kind":1024,"name":"zPopMin","url":"modules/lib_cluster_commands.html#__type.zPopMin","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1060,"kind":1024,"name":"ZRANDMEMBER_COUNT_WITHSCORES","url":"modules/lib_cluster_commands.html#__type.ZRANDMEMBER_COUNT_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1061,"kind":1024,"name":"zRandMemberCountWithScores","url":"modules/lib_cluster_commands.html#__type.zRandMemberCountWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1062,"kind":1024,"name":"ZRANDMEMBER_COUNT","url":"modules/lib_cluster_commands.html#__type.ZRANDMEMBER_COUNT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1063,"kind":1024,"name":"zRandMemberCount","url":"modules/lib_cluster_commands.html#__type.zRandMemberCount","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1064,"kind":1024,"name":"ZRANDMEMBER","url":"modules/lib_cluster_commands.html#__type.ZRANDMEMBER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1065,"kind":1024,"name":"zRandMember","url":"modules/lib_cluster_commands.html#__type.zRandMember","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1066,"kind":1024,"name":"ZRANGE_WITHSCORES","url":"modules/lib_cluster_commands.html#__type.ZRANGE_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1067,"kind":1024,"name":"zRangeWithScores","url":"modules/lib_cluster_commands.html#__type.zRangeWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1068,"kind":1024,"name":"ZRANGE","url":"modules/lib_cluster_commands.html#__type.ZRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1069,"kind":1024,"name":"zRange","url":"modules/lib_cluster_commands.html#__type.zRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1070,"kind":1024,"name":"ZRANGEBYLEX","url":"modules/lib_cluster_commands.html#__type.ZRANGEBYLEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1071,"kind":1024,"name":"zRangeByLex","url":"modules/lib_cluster_commands.html#__type.zRangeByLex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1072,"kind":1024,"name":"ZRANGEBYSCORE_WITHSCORES","url":"modules/lib_cluster_commands.html#__type.ZRANGEBYSCORE_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1073,"kind":1024,"name":"zRangeByScoreWithScores","url":"modules/lib_cluster_commands.html#__type.zRangeByScoreWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1074,"kind":1024,"name":"ZRANGEBYSCORE","url":"modules/lib_cluster_commands.html#__type.ZRANGEBYSCORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1075,"kind":1024,"name":"zRangeByScore","url":"modules/lib_cluster_commands.html#__type.zRangeByScore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1076,"kind":1024,"name":"ZRANGESTORE","url":"modules/lib_cluster_commands.html#__type.ZRANGESTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1077,"kind":1024,"name":"zRangeStore","url":"modules/lib_cluster_commands.html#__type.zRangeStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1078,"kind":1024,"name":"ZRANK","url":"modules/lib_cluster_commands.html#__type.ZRANK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1079,"kind":1024,"name":"zRank","url":"modules/lib_cluster_commands.html#__type.zRank","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1080,"kind":1024,"name":"ZREM","url":"modules/lib_cluster_commands.html#__type.ZREM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1081,"kind":1024,"name":"zRem","url":"modules/lib_cluster_commands.html#__type.zRem","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1082,"kind":1024,"name":"ZREMRANGEBYLEX","url":"modules/lib_cluster_commands.html#__type.ZREMRANGEBYLEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1083,"kind":1024,"name":"zRemRangeByLex","url":"modules/lib_cluster_commands.html#__type.zRemRangeByLex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1084,"kind":1024,"name":"ZREMRANGEBYRANK","url":"modules/lib_cluster_commands.html#__type.ZREMRANGEBYRANK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1085,"kind":1024,"name":"zRemRangeByRank","url":"modules/lib_cluster_commands.html#__type.zRemRangeByRank","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1086,"kind":1024,"name":"ZREMRANGEBYSCORE","url":"modules/lib_cluster_commands.html#__type.ZREMRANGEBYSCORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1087,"kind":1024,"name":"zRemRangeByScore","url":"modules/lib_cluster_commands.html#__type.zRemRangeByScore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1088,"kind":1024,"name":"ZREVRANK","url":"modules/lib_cluster_commands.html#__type.ZREVRANK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1089,"kind":1024,"name":"zRevRank","url":"modules/lib_cluster_commands.html#__type.zRevRank","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1090,"kind":1024,"name":"ZSCAN","url":"modules/lib_cluster_commands.html#__type.ZSCAN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1091,"kind":1024,"name":"zScan","url":"modules/lib_cluster_commands.html#__type.zScan","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1092,"kind":1024,"name":"ZSCORE","url":"modules/lib_cluster_commands.html#__type.ZSCORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1093,"kind":1024,"name":"zScore","url":"modules/lib_cluster_commands.html#__type.zScore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1094,"kind":1024,"name":"ZUNION_WITHSCORES","url":"modules/lib_cluster_commands.html#__type.ZUNION_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1095,"kind":1024,"name":"zUnionWithScores","url":"modules/lib_cluster_commands.html#__type.zUnionWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1096,"kind":1024,"name":"ZUNION","url":"modules/lib_cluster_commands.html#__type.ZUNION","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1097,"kind":1024,"name":"zUnion","url":"modules/lib_cluster_commands.html#__type.zUnion","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1098,"kind":1024,"name":"ZUNIONSTORE","url":"modules/lib_cluster_commands.html#__type.ZUNIONSTORE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1099,"kind":1024,"name":"zUnionStore","url":"modules/lib_cluster_commands.html#__type.zUnionStore","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/cluster/commands.__type"},{"id":1100,"kind":2,"name":"lib/cluster","url":"modules/lib_cluster.html","classes":"tsd-kind-module"},{"id":1101,"kind":4194304,"name":"RedisClusterClientOptions","url":"modules/lib_cluster.html#RedisClusterClientOptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/cluster"},{"id":1102,"kind":256,"name":"RedisClusterOptions","url":"interfaces/lib_cluster.RedisClusterOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/cluster"},{"id":1103,"kind":1024,"name":"rootNodes","url":"interfaces/lib_cluster.RedisClusterOptions.html#rootNodes","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/cluster.RedisClusterOptions"},{"id":1104,"kind":1024,"name":"defaults","url":"interfaces/lib_cluster.RedisClusterOptions.html#defaults","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/cluster.RedisClusterOptions"},{"id":1105,"kind":1024,"name":"useReplicas","url":"interfaces/lib_cluster.RedisClusterOptions.html#useReplicas","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/cluster.RedisClusterOptions"},{"id":1106,"kind":1024,"name":"maxCommandRedirections","url":"interfaces/lib_cluster.RedisClusterOptions.html#maxCommandRedirections","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/cluster.RedisClusterOptions"},{"id":1107,"kind":1024,"name":"modules","url":"interfaces/lib_cluster.RedisClusterOptions.html#modules","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/cluster.RedisClusterOptions"},{"id":1108,"kind":1024,"name":"scripts","url":"interfaces/lib_cluster.RedisClusterOptions.html#scripts","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/cluster.RedisClusterOptions"},{"id":1109,"kind":4194304,"name":"RedisClusterType","url":"modules/lib_cluster.html#RedisClusterType","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/cluster"},{"id":1110,"kind":128,"name":"default","url":"classes/lib_cluster.default.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/cluster"},{"id":1111,"kind":2048,"name":"extractFirstKey","url":"classes/lib_cluster.default.html#extractFirstKey","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"lib/cluster.default"},{"id":1112,"kind":2048,"name":"create","url":"classes/lib_cluster.default.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"lib/cluster.default"},{"id":1113,"kind":512,"name":"constructor","url":"classes/lib_cluster.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter tsd-is-overwrite","parent":"lib/cluster.default"},{"id":1114,"kind":1024,"name":"#options","url":"classes/lib_cluster.default.html#_options","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster.default"},{"id":1115,"kind":1024,"name":"#slots","url":"classes/lib_cluster.default.html#_slots","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster.default"},{"id":1116,"kind":1024,"name":"#Multi","url":"classes/lib_cluster.default.html#_Multi","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster.default"},{"id":1117,"kind":512,"name":"__type","url":"classes/lib_cluster.default.html#__type","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/cluster.default"},{"id":1118,"kind":2048,"name":"duplicate","url":"classes/lib_cluster.default.html#duplicate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1119,"kind":2048,"name":"connect","url":"classes/lib_cluster.default.html#connect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1120,"kind":2048,"name":"commandsExecutor","url":"classes/lib_cluster.default.html#commandsExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1121,"kind":2048,"name":"sendCommand","url":"classes/lib_cluster.default.html#sendCommand","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"lib/cluster.default"},{"id":1122,"kind":2048,"name":"scriptsExecutor","url":"classes/lib_cluster.default.html#scriptsExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1123,"kind":2048,"name":"executeScript","url":"classes/lib_cluster.default.html#executeScript","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1124,"kind":2048,"name":"#handleCommandError","url":"classes/lib_cluster.default.html#_handleCommandError","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-private","parent":"lib/cluster.default"},{"id":1125,"kind":2048,"name":"multi","url":"classes/lib_cluster.default.html#multi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1126,"kind":2048,"name":"getMasters","url":"classes/lib_cluster.default.html#getMasters","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1127,"kind":2048,"name":"getSlotMaster","url":"classes/lib_cluster.default.html#getSlotMaster","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1128,"kind":2048,"name":"disconnect","url":"classes/lib_cluster.default.html#disconnect","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster.default"},{"id":1129,"kind":2,"name":"lib/cluster/multi-command","url":"modules/lib_cluster_multi_command.html","classes":"tsd-kind-module"},{"id":1130,"kind":4194304,"name":"RedisClusterMultiCommandType","url":"modules/lib_cluster_multi_command.html#RedisClusterMultiCommandType","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/cluster/multi-command"},{"id":1131,"kind":4194304,"name":"RedisClusterMultiExecutor","url":"modules/lib_cluster_multi_command.html#RedisClusterMultiExecutor","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/cluster/multi-command"},{"id":1132,"kind":65536,"name":"__type","url":"modules/lib_cluster_multi_command.html#RedisClusterMultiExecutor.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"lib/cluster/multi-command.RedisClusterMultiExecutor"},{"id":1133,"kind":128,"name":"default","url":"classes/lib_cluster_multi_command.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/cluster/multi-command"},{"id":1134,"kind":2048,"name":"extend","url":"classes/lib_cluster_multi_command.default.html#extend","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"lib/cluster/multi-command.default"},{"id":1135,"kind":512,"name":"constructor","url":"classes/lib_cluster_multi_command.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"lib/cluster/multi-command.default"},{"id":1136,"kind":1024,"name":"#multi","url":"classes/lib_cluster_multi_command.default.html#_multi","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/multi-command.default"},{"id":1137,"kind":1024,"name":"#executor","url":"classes/lib_cluster_multi_command.default.html#_executor","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/multi-command.default"},{"id":1138,"kind":1024,"name":"#firstKey","url":"classes/lib_cluster_multi_command.default.html#_firstKey","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-private","parent":"lib/cluster/multi-command.default"},{"id":1139,"kind":2048,"name":"commandsExecutor","url":"classes/lib_cluster_multi_command.default.html#commandsExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/multi-command.default"},{"id":1140,"kind":2048,"name":"addCommand","url":"classes/lib_cluster_multi_command.default.html#addCommand","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/multi-command.default"},{"id":1141,"kind":2048,"name":"scriptsExecutor","url":"classes/lib_cluster_multi_command.default.html#scriptsExecutor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/multi-command.default"},{"id":1142,"kind":2048,"name":"exec","url":"classes/lib_cluster_multi_command.default.html#exec","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/multi-command.default"},{"id":1143,"kind":1024,"name":"EXEC","url":"classes/lib_cluster_multi_command.default.html#EXEC","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/cluster/multi-command.default"},{"id":1144,"kind":65536,"name":"__type","url":"classes/lib_cluster_multi_command.default.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/cluster/multi-command.default"},{"id":1145,"kind":2048,"name":"execAsPipeline","url":"classes/lib_cluster_multi_command.default.html#execAsPipeline","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/cluster/multi-command.default"},{"id":1146,"kind":2,"name":"lib/command-options","url":"modules/lib_command_options.html","classes":"tsd-kind-module"},{"id":1147,"kind":64,"name":"commandOptions","url":"modules/lib_command_options.html#commandOptions","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/command-options"},{"id":1148,"kind":64,"name":"isCommandOptions","url":"modules/lib_command_options.html#isCommandOptions","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/command-options"},{"id":1149,"kind":4194304,"name":"CommandOptions","url":"modules/lib_command_options.html#CommandOptions","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/command-options"},{"id":1150,"kind":2,"name":"lib/commander","url":"modules/lib_commander.html","classes":"tsd-kind-module"},{"id":1151,"kind":64,"name":"extendWithCommands","url":"modules/lib_commander.html#extendWithCommands","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/commander"},{"id":1152,"kind":64,"name":"extendWithModulesAndScripts","url":"modules/lib_commander.html#extendWithModulesAndScripts","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/commander"},{"id":1153,"kind":64,"name":"transformCommandArguments","url":"modules/lib_commander.html#transformCommandArguments","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/commander"},{"id":1154,"kind":64,"name":"encodeCommand","url":"modules/lib_commander.html#encodeCommand","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commander"},{"id":1155,"kind":64,"name":"transformCommandReply","url":"modules/lib_commander.html#transformCommandReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commander"},{"id":1156,"kind":64,"name":"transformLegacyCommandArguments","url":"modules/lib_commander.html#transformLegacyCommandArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commander"},{"id":1157,"kind":4194304,"name":"LegacyCommandArguments","url":"modules/lib_commander.html#LegacyCommandArguments","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commander"},{"id":1158,"kind":2,"name":"lib/commands/ACL_CAT","url":"modules/lib_commands_ACL_CAT.html","classes":"tsd-kind-module"},{"id":1159,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_CAT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_CAT"},{"id":1160,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_CAT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_CAT"},{"id":1161,"kind":2,"name":"lib/commands/ACL_DELUSER","url":"modules/lib_commands_ACL_DELUSER.html","classes":"tsd-kind-module"},{"id":1162,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_DELUSER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_DELUSER"},{"id":1163,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_DELUSER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_DELUSER"},{"id":1164,"kind":2,"name":"lib/commands/ACL_GENPASS","url":"modules/lib_commands_ACL_GENPASS.html","classes":"tsd-kind-module"},{"id":1165,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_GENPASS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_GENPASS"},{"id":1166,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_GENPASS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_GENPASS"},{"id":1167,"kind":2,"name":"lib/commands/ACL_GETUSER","url":"modules/lib_commands_ACL_GETUSER.html","classes":"tsd-kind-module"},{"id":1168,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_GETUSER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_GETUSER"},{"id":1169,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_GETUSER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_GETUSER"},{"id":1170,"kind":2,"name":"lib/commands/ACL_LIST","url":"modules/lib_commands_ACL_LIST.html","classes":"tsd-kind-module"},{"id":1171,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_LIST.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_LIST"},{"id":1172,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_LIST.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_LIST"},{"id":1173,"kind":2,"name":"lib/commands/ACL_LOAD","url":"modules/lib_commands_ACL_LOAD.html","classes":"tsd-kind-module"},{"id":1174,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_LOAD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_LOAD"},{"id":1175,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_LOAD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_LOAD"},{"id":1176,"kind":2,"name":"lib/commands/ACL_LOG","url":"modules/lib_commands_ACL_LOG.html","classes":"tsd-kind-module"},{"id":1177,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_LOG.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_LOG"},{"id":1178,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_LOG.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_LOG"},{"id":1179,"kind":2,"name":"lib/commands/ACL_LOG_RESET","url":"modules/lib_commands_ACL_LOG_RESET.html","classes":"tsd-kind-module"},{"id":1180,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_LOG_RESET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_LOG_RESET"},{"id":1181,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_LOG_RESET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_LOG_RESET"},{"id":1182,"kind":2,"name":"lib/commands/ACL_SAVE","url":"modules/lib_commands_ACL_SAVE.html","classes":"tsd-kind-module"},{"id":1183,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_SAVE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_SAVE"},{"id":1184,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_SAVE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_SAVE"},{"id":1185,"kind":2,"name":"lib/commands/ACL_SETUSER","url":"modules/lib_commands_ACL_SETUSER.html","classes":"tsd-kind-module"},{"id":1186,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_SETUSER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_SETUSER"},{"id":1187,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_SETUSER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_SETUSER"},{"id":1188,"kind":2,"name":"lib/commands/ACL_USERS","url":"modules/lib_commands_ACL_USERS.html","classes":"tsd-kind-module"},{"id":1189,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_USERS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_USERS"},{"id":1190,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_USERS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_USERS"},{"id":1191,"kind":2,"name":"lib/commands/ACL_WHOAMI","url":"modules/lib_commands_ACL_WHOAMI.html","classes":"tsd-kind-module"},{"id":1192,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ACL_WHOAMI.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_WHOAMI"},{"id":1193,"kind":64,"name":"transformReply","url":"modules/lib_commands_ACL_WHOAMI.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ACL_WHOAMI"},{"id":1194,"kind":2,"name":"lib/commands/APPEND","url":"modules/lib_commands_APPEND.html","classes":"tsd-kind-module"},{"id":1195,"kind":64,"name":"transformArguments","url":"modules/lib_commands_APPEND.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/APPEND"},{"id":1196,"kind":64,"name":"transformReply","url":"modules/lib_commands_APPEND.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/APPEND"},{"id":1197,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_APPEND.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/APPEND"},{"id":1198,"kind":2,"name":"lib/commands/ASKING","url":"modules/lib_commands_ASKING.html","classes":"tsd-kind-module"},{"id":1199,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ASKING.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ASKING"},{"id":1200,"kind":64,"name":"transformReply","url":"modules/lib_commands_ASKING.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ASKING"},{"id":1201,"kind":2,"name":"lib/commands/AUTH","url":"modules/lib_commands_AUTH.html","classes":"tsd-kind-module"},{"id":1202,"kind":64,"name":"transformArguments","url":"modules/lib_commands_AUTH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/AUTH"},{"id":1203,"kind":64,"name":"transformReply","url":"modules/lib_commands_AUTH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/AUTH"},{"id":1204,"kind":256,"name":"AuthOptions","url":"interfaces/lib_commands_AUTH.AuthOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/AUTH"},{"id":1205,"kind":1024,"name":"username","url":"interfaces/lib_commands_AUTH.AuthOptions.html#username","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/AUTH.AuthOptions"},{"id":1206,"kind":1024,"name":"password","url":"interfaces/lib_commands_AUTH.AuthOptions.html#password","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/AUTH.AuthOptions"},{"id":1207,"kind":2,"name":"lib/commands/BGREWRITEAOF","url":"modules/lib_commands_BGREWRITEAOF.html","classes":"tsd-kind-module"},{"id":1208,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BGREWRITEAOF.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BGREWRITEAOF"},{"id":1209,"kind":64,"name":"transformReply","url":"modules/lib_commands_BGREWRITEAOF.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BGREWRITEAOF"},{"id":1210,"kind":2,"name":"lib/commands/BGSAVE","url":"modules/lib_commands_BGSAVE.html","classes":"tsd-kind-module"},{"id":1211,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BGSAVE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BGSAVE"},{"id":1212,"kind":64,"name":"transformReply","url":"modules/lib_commands_BGSAVE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BGSAVE"},{"id":1213,"kind":2,"name":"lib/commands/BITCOUNT","url":"modules/lib_commands_BITCOUNT.html","classes":"tsd-kind-module"},{"id":1214,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BITCOUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BITCOUNT"},{"id":1215,"kind":64,"name":"transformReply","url":"modules/lib_commands_BITCOUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BITCOUNT"},{"id":1216,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BITCOUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BITCOUNT"},{"id":1217,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_BITCOUNT.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BITCOUNT"},{"id":1218,"kind":2,"name":"lib/commands/BITFIELD","url":"modules/lib_commands_BITFIELD.html","classes":"tsd-kind-module"},{"id":1219,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BITFIELD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BITFIELD"},{"id":1220,"kind":64,"name":"transformReply","url":"modules/lib_commands_BITFIELD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BITFIELD"},{"id":1221,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BITFIELD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BITFIELD"},{"id":1222,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_BITFIELD.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BITFIELD"},{"id":1223,"kind":2,"name":"lib/commands/BITOP","url":"modules/lib_commands_BITOP.html","classes":"tsd-kind-module"},{"id":1224,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BITOP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BITOP"},{"id":1225,"kind":64,"name":"transformReply","url":"modules/lib_commands_BITOP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BITOP"},{"id":1226,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BITOP.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BITOP"},{"id":1227,"kind":2,"name":"lib/commands/BITPOS","url":"modules/lib_commands_BITPOS.html","classes":"tsd-kind-module"},{"id":1228,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BITPOS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BITPOS"},{"id":1229,"kind":64,"name":"transformReply","url":"modules/lib_commands_BITPOS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BITPOS"},{"id":1230,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BITPOS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BITPOS"},{"id":1231,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_BITPOS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BITPOS"},{"id":1232,"kind":2,"name":"lib/commands/BLMOVE","url":"modules/lib_commands_BLMOVE.html","classes":"tsd-kind-module"},{"id":1233,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BLMOVE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BLMOVE"},{"id":1234,"kind":64,"name":"transformReply","url":"modules/lib_commands_BLMOVE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BLMOVE"},{"id":1235,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BLMOVE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BLMOVE"},{"id":1236,"kind":2,"name":"lib/commands/BLPOP","url":"modules/lib_commands_BLPOP.html","classes":"tsd-kind-module"},{"id":1237,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BLPOP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BLPOP"},{"id":1238,"kind":64,"name":"transformReply","url":"modules/lib_commands_BLPOP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BLPOP"},{"id":1239,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BLPOP.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BLPOP"},{"id":1240,"kind":2,"name":"lib/commands/BRPOP","url":"modules/lib_commands_BRPOP.html","classes":"tsd-kind-module"},{"id":1241,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BRPOP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BRPOP"},{"id":1242,"kind":64,"name":"transformReply","url":"modules/lib_commands_BRPOP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BRPOP"},{"id":1243,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BRPOP.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BRPOP"},{"id":1244,"kind":2,"name":"lib/commands/BRPOPLPUSH","url":"modules/lib_commands_BRPOPLPUSH.html","classes":"tsd-kind-module"},{"id":1245,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BRPOPLPUSH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BRPOPLPUSH"},{"id":1246,"kind":64,"name":"transformReply","url":"modules/lib_commands_BRPOPLPUSH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BRPOPLPUSH"},{"id":1247,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BRPOPLPUSH.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BRPOPLPUSH"},{"id":1248,"kind":2,"name":"lib/commands/BZPOPMAX","url":"modules/lib_commands_BZPOPMAX.html","classes":"tsd-kind-module"},{"id":1249,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BZPOPMAX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BZPOPMAX"},{"id":1250,"kind":64,"name":"transformReply","url":"modules/lib_commands_BZPOPMAX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BZPOPMAX"},{"id":1251,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BZPOPMAX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BZPOPMAX"},{"id":1252,"kind":2,"name":"lib/commands/BZPOPMIN","url":"modules/lib_commands_BZPOPMIN.html","classes":"tsd-kind-module"},{"id":1253,"kind":64,"name":"transformArguments","url":"modules/lib_commands_BZPOPMIN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BZPOPMIN"},{"id":1254,"kind":64,"name":"transformReply","url":"modules/lib_commands_BZPOPMIN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/BZPOPMIN"},{"id":1255,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_BZPOPMIN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/BZPOPMIN"},{"id":1256,"kind":2,"name":"lib/commands/CLIENT_CACHING","url":"modules/lib_commands_CLIENT_CACHING.html","classes":"tsd-kind-module"},{"id":1257,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLIENT_CACHING.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_CACHING"},{"id":1258,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLIENT_CACHING.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_CACHING"},{"id":1259,"kind":2,"name":"lib/commands/CLIENT_GETNAME","url":"modules/lib_commands_CLIENT_GETNAME.html","classes":"tsd-kind-module"},{"id":1260,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLIENT_GETNAME.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_GETNAME"},{"id":1261,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLIENT_GETNAME.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_GETNAME"},{"id":1262,"kind":2,"name":"lib/commands/CLIENT_GETREDIR","url":"modules/lib_commands_CLIENT_GETREDIR.html","classes":"tsd-kind-module"},{"id":1263,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLIENT_GETREDIR.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_GETREDIR"},{"id":1264,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLIENT_GETREDIR.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_GETREDIR"},{"id":1265,"kind":2,"name":"lib/commands/CLIENT_ID","url":"modules/lib_commands_CLIENT_ID.html","classes":"tsd-kind-module"},{"id":1266,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLIENT_ID.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_ID"},{"id":1267,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLIENT_ID.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_ID"},{"id":1268,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_CLIENT_ID.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/CLIENT_ID"},{"id":1269,"kind":2,"name":"lib/commands/CLIENT_INFO","url":"modules/lib_commands_CLIENT_INFO.html","classes":"tsd-kind-module"},{"id":1270,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLIENT_INFO.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_INFO"},{"id":1271,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLIENT_INFO.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_INFO"},{"id":1272,"kind":2,"name":"lib/commands/CLIENT_KILL","url":"modules/lib_commands_CLIENT_KILL.html","classes":"tsd-kind-module"},{"id":1273,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLIENT_KILL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_KILL"},{"id":1274,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLIENT_KILL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_KILL"},{"id":1275,"kind":8,"name":"ClientKillFilters","url":"enums/lib_commands_CLIENT_KILL.ClientKillFilters.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/commands/CLIENT_KILL"},{"id":1276,"kind":16,"name":"ADDRESS","url":"enums/lib_commands_CLIENT_KILL.ClientKillFilters.html#ADDRESS","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLIENT_KILL.ClientKillFilters"},{"id":1277,"kind":16,"name":"LOCAL_ADDRESS","url":"enums/lib_commands_CLIENT_KILL.ClientKillFilters.html#LOCAL_ADDRESS","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLIENT_KILL.ClientKillFilters"},{"id":1278,"kind":16,"name":"ID","url":"enums/lib_commands_CLIENT_KILL.ClientKillFilters.html#ID","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLIENT_KILL.ClientKillFilters"},{"id":1279,"kind":16,"name":"TYPE","url":"enums/lib_commands_CLIENT_KILL.ClientKillFilters.html#TYPE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLIENT_KILL.ClientKillFilters"},{"id":1280,"kind":16,"name":"USER","url":"enums/lib_commands_CLIENT_KILL.ClientKillFilters.html#USER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLIENT_KILL.ClientKillFilters"},{"id":1281,"kind":16,"name":"SKIP_ME","url":"enums/lib_commands_CLIENT_KILL.ClientKillFilters.html#SKIP_ME","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLIENT_KILL.ClientKillFilters"},{"id":1282,"kind":2,"name":"lib/commands/CLIENT_SETNAME","url":"modules/lib_commands_CLIENT_SETNAME.html","classes":"tsd-kind-module"},{"id":1283,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLIENT_SETNAME.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_SETNAME"},{"id":1284,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLIENT_SETNAME.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLIENT_SETNAME"},{"id":1285,"kind":2,"name":"lib/commands/CLUSTER_ADDSLOTS","url":"modules/lib_commands_CLUSTER_ADDSLOTS.html","classes":"tsd-kind-module"},{"id":1286,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_ADDSLOTS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_ADDSLOTS"},{"id":1287,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_ADDSLOTS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_ADDSLOTS"},{"id":1288,"kind":2,"name":"lib/commands/CLUSTER_FLUSHSLOTS","url":"modules/lib_commands_CLUSTER_FLUSHSLOTS.html","classes":"tsd-kind-module"},{"id":1289,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_FLUSHSLOTS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_FLUSHSLOTS"},{"id":1290,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_FLUSHSLOTS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_FLUSHSLOTS"},{"id":1291,"kind":2,"name":"lib/commands/CLUSTER_GETKEYSINSLOT","url":"modules/lib_commands_CLUSTER_GETKEYSINSLOT.html","classes":"tsd-kind-module"},{"id":1292,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_GETKEYSINSLOT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_GETKEYSINSLOT"},{"id":1293,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_GETKEYSINSLOT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_GETKEYSINSLOT"},{"id":1294,"kind":2,"name":"lib/commands/CLUSTER_INFO","url":"modules/lib_commands_CLUSTER_INFO.html","classes":"tsd-kind-module"},{"id":1295,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_INFO.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_INFO"},{"id":1296,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_INFO.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_INFO"},{"id":1297,"kind":64,"name":"extractLineValue","url":"modules/lib_commands_CLUSTER_INFO.html#extractLineValue","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_INFO"},{"id":1298,"kind":2,"name":"lib/commands/CLUSTER_MEET","url":"modules/lib_commands_CLUSTER_MEET.html","classes":"tsd-kind-module"},{"id":1299,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_MEET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_MEET"},{"id":1300,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_MEET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_MEET"},{"id":1301,"kind":2,"name":"lib/commands/CLUSTER_NODES","url":"modules/lib_commands_CLUSTER_NODES.html","classes":"tsd-kind-module"},{"id":1302,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_NODES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_NODES"},{"id":1303,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_NODES.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_NODES"},{"id":1304,"kind":8,"name":"RedisClusterNodeLinkStates","url":"enums/lib_commands_CLUSTER_NODES.RedisClusterNodeLinkStates.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/commands/CLUSTER_NODES"},{"id":1305,"kind":16,"name":"CONNECTED","url":"enums/lib_commands_CLUSTER_NODES.RedisClusterNodeLinkStates.html#CONNECTED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLUSTER_NODES.RedisClusterNodeLinkStates"},{"id":1306,"kind":16,"name":"DISCONNECTED","url":"enums/lib_commands_CLUSTER_NODES.RedisClusterNodeLinkStates.html#DISCONNECTED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLUSTER_NODES.RedisClusterNodeLinkStates"},{"id":1307,"kind":256,"name":"RedisClusterReplicaNode","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/CLUSTER_NODES"},{"id":1308,"kind":1024,"name":"id","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1309,"kind":1024,"name":"url","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#url","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1310,"kind":1024,"name":"flags","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#flags","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1311,"kind":1024,"name":"pingSent","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#pingSent","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1312,"kind":1024,"name":"pongRecv","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#pongRecv","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1313,"kind":1024,"name":"configEpoch","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#configEpoch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1314,"kind":1024,"name":"linkState","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#linkState","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1315,"kind":1024,"name":"host","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#host","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1316,"kind":1024,"name":"port","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#port","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1317,"kind":1024,"name":"cport","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html#cport","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterReplicaNode"},{"id":1318,"kind":256,"name":"RedisClusterMasterNode","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/CLUSTER_NODES"},{"id":1319,"kind":1024,"name":"slots","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#slots","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1320,"kind":1024,"name":"replicas","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#replicas","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1321,"kind":1024,"name":"id","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#id","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1322,"kind":1024,"name":"url","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#url","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1323,"kind":1024,"name":"flags","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#flags","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1324,"kind":1024,"name":"pingSent","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#pingSent","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1325,"kind":1024,"name":"pongRecv","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#pongRecv","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1326,"kind":1024,"name":"configEpoch","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#configEpoch","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1327,"kind":1024,"name":"linkState","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#linkState","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1328,"kind":1024,"name":"host","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#host","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1329,"kind":1024,"name":"port","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#port","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1330,"kind":1024,"name":"cport","url":"interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html#cport","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/CLUSTER_NODES.RedisClusterMasterNode"},{"id":1331,"kind":2,"name":"lib/commands/CLUSTER_RESET","url":"modules/lib_commands_CLUSTER_RESET.html","classes":"tsd-kind-module"},{"id":1332,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_RESET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_RESET"},{"id":1333,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_RESET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_RESET"},{"id":1334,"kind":4194304,"name":"ClusterResetModes","url":"modules/lib_commands_CLUSTER_RESET.html#ClusterResetModes","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/CLUSTER_RESET"},{"id":1335,"kind":2,"name":"lib/commands/CLUSTER_SETSLOT","url":"modules/lib_commands_CLUSTER_SETSLOT.html","classes":"tsd-kind-module"},{"id":1336,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_SETSLOT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_SETSLOT"},{"id":1337,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_SETSLOT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_SETSLOT"},{"id":1338,"kind":8,"name":"ClusterSlotStates","url":"enums/lib_commands_CLUSTER_SETSLOT.ClusterSlotStates.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/commands/CLUSTER_SETSLOT"},{"id":1339,"kind":16,"name":"IMPORTING","url":"enums/lib_commands_CLUSTER_SETSLOT.ClusterSlotStates.html#IMPORTING","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLUSTER_SETSLOT.ClusterSlotStates"},{"id":1340,"kind":16,"name":"MIGRATING","url":"enums/lib_commands_CLUSTER_SETSLOT.ClusterSlotStates.html#MIGRATING","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLUSTER_SETSLOT.ClusterSlotStates"},{"id":1341,"kind":16,"name":"STABLE","url":"enums/lib_commands_CLUSTER_SETSLOT.ClusterSlotStates.html#STABLE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLUSTER_SETSLOT.ClusterSlotStates"},{"id":1342,"kind":16,"name":"NODE","url":"enums/lib_commands_CLUSTER_SETSLOT.ClusterSlotStates.html#NODE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/CLUSTER_SETSLOT.ClusterSlotStates"},{"id":1343,"kind":2,"name":"lib/commands/CLUSTER_SLOTS","url":"modules/lib_commands_CLUSTER_SLOTS.html","classes":"tsd-kind-module"},{"id":1344,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CLUSTER_SLOTS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_SLOTS"},{"id":1345,"kind":64,"name":"transformReply","url":"modules/lib_commands_CLUSTER_SLOTS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CLUSTER_SLOTS"},{"id":1346,"kind":4194304,"name":"ClusterSlotsReply","url":"modules/lib_commands_CLUSTER_SLOTS.html#ClusterSlotsReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/CLUSTER_SLOTS"},{"id":1347,"kind":2,"name":"lib/commands/COMMAND","url":"modules/lib_commands_COMMAND.html","classes":"tsd-kind-module"},{"id":1348,"kind":64,"name":"transformArguments","url":"modules/lib_commands_COMMAND.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COMMAND"},{"id":1349,"kind":64,"name":"transformReply","url":"modules/lib_commands_COMMAND.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COMMAND"},{"id":1350,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_COMMAND.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/COMMAND"},{"id":1351,"kind":2,"name":"lib/commands/COMMAND_COUNT","url":"modules/lib_commands_COMMAND_COUNT.html","classes":"tsd-kind-module"},{"id":1352,"kind":64,"name":"transformArguments","url":"modules/lib_commands_COMMAND_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COMMAND_COUNT"},{"id":1353,"kind":64,"name":"transformReply","url":"modules/lib_commands_COMMAND_COUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COMMAND_COUNT"},{"id":1354,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_COMMAND_COUNT.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/COMMAND_COUNT"},{"id":1355,"kind":2,"name":"lib/commands/COMMAND_GETKEYS","url":"modules/lib_commands_COMMAND_GETKEYS.html","classes":"tsd-kind-module"},{"id":1356,"kind":64,"name":"transformArguments","url":"modules/lib_commands_COMMAND_GETKEYS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COMMAND_GETKEYS"},{"id":1357,"kind":64,"name":"transformReply","url":"modules/lib_commands_COMMAND_GETKEYS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COMMAND_GETKEYS"},{"id":1358,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_COMMAND_GETKEYS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/COMMAND_GETKEYS"},{"id":1359,"kind":2,"name":"lib/commands/COMMAND_INFO","url":"modules/lib_commands_COMMAND_INFO.html","classes":"tsd-kind-module"},{"id":1360,"kind":64,"name":"transformArguments","url":"modules/lib_commands_COMMAND_INFO.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COMMAND_INFO"},{"id":1361,"kind":64,"name":"transformReply","url":"modules/lib_commands_COMMAND_INFO.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COMMAND_INFO"},{"id":1362,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_COMMAND_INFO.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/COMMAND_INFO"},{"id":1363,"kind":2,"name":"lib/commands/CONFIG_GET","url":"modules/lib_commands_CONFIG_GET.html","classes":"tsd-kind-module"},{"id":1364,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CONFIG_GET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CONFIG_GET"},{"id":1365,"kind":2,"name":"lib/commands/CONFIG_RESETSTAT","url":"modules/lib_commands_CONFIG_RESETSTAT.html","classes":"tsd-kind-module"},{"id":1366,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CONFIG_RESETSTAT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CONFIG_RESETSTAT"},{"id":1367,"kind":64,"name":"transformReply","url":"modules/lib_commands_CONFIG_RESETSTAT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CONFIG_RESETSTAT"},{"id":1368,"kind":2,"name":"lib/commands/CONFIG_REWRITE","url":"modules/lib_commands_CONFIG_REWRITE.html","classes":"tsd-kind-module"},{"id":1369,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CONFIG_REWRITE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CONFIG_REWRITE"},{"id":1370,"kind":64,"name":"transformReply","url":"modules/lib_commands_CONFIG_REWRITE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CONFIG_REWRITE"},{"id":1371,"kind":2,"name":"lib/commands/CONFIG_SET","url":"modules/lib_commands_CONFIG_SET.html","classes":"tsd-kind-module"},{"id":1372,"kind":64,"name":"transformArguments","url":"modules/lib_commands_CONFIG_SET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CONFIG_SET"},{"id":1373,"kind":64,"name":"transformReply","url":"modules/lib_commands_CONFIG_SET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/CONFIG_SET"},{"id":1374,"kind":2,"name":"lib/commands/COPY","url":"modules/lib_commands_COPY.html","classes":"tsd-kind-module"},{"id":1375,"kind":64,"name":"transformArguments","url":"modules/lib_commands_COPY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/COPY"},{"id":1376,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_COPY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/COPY"},{"id":1377,"kind":2,"name":"lib/commands/DBSIZE","url":"modules/lib_commands_DBSIZE.html","classes":"tsd-kind-module"},{"id":1378,"kind":64,"name":"transformArguments","url":"modules/lib_commands_DBSIZE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DBSIZE"},{"id":1379,"kind":64,"name":"transformReply","url":"modules/lib_commands_DBSIZE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DBSIZE"},{"id":1380,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_DBSIZE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/DBSIZE"},{"id":1381,"kind":2,"name":"lib/commands/DECR","url":"modules/lib_commands_DECR.html","classes":"tsd-kind-module"},{"id":1382,"kind":64,"name":"transformArguments","url":"modules/lib_commands_DECR.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DECR"},{"id":1383,"kind":64,"name":"transformReply","url":"modules/lib_commands_DECR.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DECR"},{"id":1384,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_DECR.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/DECR"},{"id":1385,"kind":2,"name":"lib/commands/DECRBY","url":"modules/lib_commands_DECRBY.html","classes":"tsd-kind-module"},{"id":1386,"kind":64,"name":"transformArguments","url":"modules/lib_commands_DECRBY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DECRBY"},{"id":1387,"kind":64,"name":"transformReply","url":"modules/lib_commands_DECRBY.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DECRBY"},{"id":1388,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_DECRBY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/DECRBY"},{"id":1389,"kind":2,"name":"lib/commands/DEL","url":"modules/lib_commands_DEL.html","classes":"tsd-kind-module"},{"id":1390,"kind":64,"name":"transformArguments","url":"modules/lib_commands_DEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DEL"},{"id":1391,"kind":64,"name":"transformReply","url":"modules/lib_commands_DEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DEL"},{"id":1392,"kind":2,"name":"lib/commands/DISCARD","url":"modules/lib_commands_DISCARD.html","classes":"tsd-kind-module"},{"id":1393,"kind":64,"name":"transformArguments","url":"modules/lib_commands_DISCARD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DISCARD"},{"id":1394,"kind":64,"name":"transformReply","url":"modules/lib_commands_DISCARD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DISCARD"},{"id":1395,"kind":2,"name":"lib/commands/DUMP","url":"modules/lib_commands_DUMP.html","classes":"tsd-kind-module"},{"id":1396,"kind":64,"name":"transformArguments","url":"modules/lib_commands_DUMP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DUMP"},{"id":1397,"kind":64,"name":"transformReply","url":"modules/lib_commands_DUMP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/DUMP"},{"id":1398,"kind":2,"name":"lib/commands/ECHO","url":"modules/lib_commands_ECHO.html","classes":"tsd-kind-module"},{"id":1399,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ECHO.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ECHO"},{"id":1400,"kind":64,"name":"transformReply","url":"modules/lib_commands_ECHO.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ECHO"},{"id":1401,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ECHO.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ECHO"},{"id":1402,"kind":2,"name":"lib/commands/EVAL","url":"modules/lib_commands_EVAL.html","classes":"tsd-kind-module"},{"id":1403,"kind":64,"name":"transformArguments","url":"modules/lib_commands_EVAL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/EVAL"},{"id":1404,"kind":2,"name":"lib/commands/EVALSHA","url":"modules/lib_commands_EVALSHA.html","classes":"tsd-kind-module"},{"id":1405,"kind":64,"name":"transformArguments","url":"modules/lib_commands_EVALSHA.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/EVALSHA"},{"id":1406,"kind":2,"name":"lib/commands/EXISTS","url":"modules/lib_commands_EXISTS.html","classes":"tsd-kind-module"},{"id":1407,"kind":64,"name":"transformArguments","url":"modules/lib_commands_EXISTS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/EXISTS"},{"id":1408,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_EXISTS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/EXISTS"},{"id":1409,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_EXISTS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/EXISTS"},{"id":1410,"kind":2,"name":"lib/commands/EXPIRE","url":"modules/lib_commands_EXPIRE.html","classes":"tsd-kind-module"},{"id":1411,"kind":64,"name":"transformArguments","url":"modules/lib_commands_EXPIRE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/EXPIRE"},{"id":1412,"kind":2,"name":"lib/commands/EXPIREAT","url":"modules/lib_commands_EXPIREAT.html","classes":"tsd-kind-module"},{"id":1413,"kind":64,"name":"transformArguments","url":"modules/lib_commands_EXPIREAT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/EXPIREAT"},{"id":1414,"kind":2,"name":"lib/commands/FAILOVER","url":"modules/lib_commands_FAILOVER.html","classes":"tsd-kind-module"},{"id":1415,"kind":64,"name":"transformArguments","url":"modules/lib_commands_FAILOVER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/FAILOVER"},{"id":1416,"kind":64,"name":"transformReply","url":"modules/lib_commands_FAILOVER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/FAILOVER"},{"id":1417,"kind":2,"name":"lib/commands/FLUSHALL","url":"modules/lib_commands_FLUSHALL.html","classes":"tsd-kind-module"},{"id":1418,"kind":64,"name":"transformArguments","url":"modules/lib_commands_FLUSHALL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/FLUSHALL"},{"id":1419,"kind":64,"name":"transformReply","url":"modules/lib_commands_FLUSHALL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/FLUSHALL"},{"id":1420,"kind":8,"name":"RedisFlushModes","url":"enums/lib_commands_FLUSHALL.RedisFlushModes.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/commands/FLUSHALL"},{"id":1421,"kind":16,"name":"ASYNC","url":"enums/lib_commands_FLUSHALL.RedisFlushModes.html#ASYNC","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/FLUSHALL.RedisFlushModes"},{"id":1422,"kind":16,"name":"SYNC","url":"enums/lib_commands_FLUSHALL.RedisFlushModes.html#SYNC","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/FLUSHALL.RedisFlushModes"},{"id":1423,"kind":2,"name":"lib/commands/FLUSHDB","url":"modules/lib_commands_FLUSHDB.html","classes":"tsd-kind-module"},{"id":1424,"kind":64,"name":"transformArguments","url":"modules/lib_commands_FLUSHDB.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/FLUSHDB"},{"id":1425,"kind":64,"name":"transformReply","url":"modules/lib_commands_FLUSHDB.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/FLUSHDB"},{"id":1426,"kind":2,"name":"lib/commands/GEOADD","url":"modules/lib_commands_GEOADD.html","classes":"tsd-kind-module"},{"id":1427,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GEOADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOADD"},{"id":1428,"kind":64,"name":"transformReply","url":"modules/lib_commands_GEOADD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOADD"},{"id":1429,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GEOADD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOADD"},{"id":1430,"kind":2,"name":"lib/commands/GEODIST","url":"modules/lib_commands_GEODIST.html","classes":"tsd-kind-module"},{"id":1431,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GEODIST.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEODIST"},{"id":1432,"kind":64,"name":"transformReply","url":"modules/lib_commands_GEODIST.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEODIST"},{"id":1433,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GEODIST.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEODIST"},{"id":1434,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_GEODIST.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEODIST"},{"id":1435,"kind":2,"name":"lib/commands/GEOHASH","url":"modules/lib_commands_GEOHASH.html","classes":"tsd-kind-module"},{"id":1436,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GEOHASH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOHASH"},{"id":1437,"kind":64,"name":"transformReply","url":"modules/lib_commands_GEOHASH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOHASH"},{"id":1438,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GEOHASH.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOHASH"},{"id":1439,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_GEOHASH.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOHASH"},{"id":1440,"kind":2,"name":"lib/commands/GEOPOS","url":"modules/lib_commands_GEOPOS.html","classes":"tsd-kind-module"},{"id":1441,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GEOPOS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOPOS"},{"id":1442,"kind":64,"name":"transformReply","url":"modules/lib_commands_GEOPOS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOPOS"},{"id":1443,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GEOPOS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOPOS"},{"id":1444,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_GEOPOS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOPOS"},{"id":1445,"kind":2,"name":"lib/commands/GEOSEARCH","url":"modules/lib_commands_GEOSEARCH.html","classes":"tsd-kind-module"},{"id":1446,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GEOSEARCH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOSEARCH"},{"id":1447,"kind":64,"name":"transformReply","url":"modules/lib_commands_GEOSEARCH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOSEARCH"},{"id":1448,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GEOSEARCH.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOSEARCH"},{"id":1449,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_GEOSEARCH.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOSEARCH"},{"id":1450,"kind":2,"name":"lib/commands/GEOSEARCHSTORE","url":"modules/lib_commands_GEOSEARCHSTORE.html","classes":"tsd-kind-module"},{"id":1451,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GEOSEARCHSTORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOSEARCHSTORE"},{"id":1452,"kind":64,"name":"transformReply","url":"modules/lib_commands_GEOSEARCHSTORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOSEARCHSTORE"},{"id":1453,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GEOSEARCHSTORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOSEARCHSTORE"},{"id":1454,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_GEOSEARCHSTORE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GEOSEARCHSTORE"},{"id":1455,"kind":2,"name":"lib/commands/GEOSEARCH_WITH","url":"modules/lib_commands_GEOSEARCH_WITH.html","classes":"tsd-kind-module"},{"id":1456,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GEOSEARCH_WITH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GEOSEARCH_WITH"},{"id":1457,"kind":2,"name":"lib/commands/GET","url":"modules/lib_commands_GET.html","classes":"tsd-kind-module"},{"id":1458,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GET"},{"id":1459,"kind":64,"name":"transformReply","url":"modules/lib_commands_GET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GET"},{"id":1460,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GET"},{"id":1461,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_GET.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GET"},{"id":1462,"kind":2,"name":"lib/commands/GETBIT","url":"modules/lib_commands_GETBIT.html","classes":"tsd-kind-module"},{"id":1463,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GETBIT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETBIT"},{"id":1464,"kind":64,"name":"transformReply","url":"modules/lib_commands_GETBIT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETBIT"},{"id":1465,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GETBIT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GETBIT"},{"id":1466,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_GETBIT.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GETBIT"},{"id":1467,"kind":2,"name":"lib/commands/GETDEL","url":"modules/lib_commands_GETDEL.html","classes":"tsd-kind-module"},{"id":1468,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GETDEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETDEL"},{"id":1469,"kind":64,"name":"transformReply","url":"modules/lib_commands_GETDEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETDEL"},{"id":1470,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GETDEL.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GETDEL"},{"id":1471,"kind":2,"name":"lib/commands/GETEX","url":"modules/lib_commands_GETEX.html","classes":"tsd-kind-module"},{"id":1472,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GETEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETEX"},{"id":1473,"kind":64,"name":"transformReply","url":"modules/lib_commands_GETEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETEX"},{"id":1474,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GETEX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GETEX"},{"id":1475,"kind":2,"name":"lib/commands/GETRANGE","url":"modules/lib_commands_GETRANGE.html","classes":"tsd-kind-module"},{"id":1476,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GETRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETRANGE"},{"id":1477,"kind":64,"name":"transformReply","url":"modules/lib_commands_GETRANGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETRANGE"},{"id":1478,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GETRANGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GETRANGE"},{"id":1479,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_GETRANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GETRANGE"},{"id":1480,"kind":2,"name":"lib/commands/GETSET","url":"modules/lib_commands_GETSET.html","classes":"tsd-kind-module"},{"id":1481,"kind":64,"name":"transformArguments","url":"modules/lib_commands_GETSET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETSET"},{"id":1482,"kind":64,"name":"transformReply","url":"modules/lib_commands_GETSET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GETSET"},{"id":1483,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GETSET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GETSET"},{"id":1484,"kind":2,"name":"lib/commands/GET_BUFFER","url":"modules/lib_commands_GET_BUFFER.html","classes":"tsd-kind-module"},{"id":1485,"kind":64,"name":"transformReply","url":"modules/lib_commands_GET_BUFFER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/GET_BUFFER"},{"id":1486,"kind":32,"name":"BUFFER_MODE","url":"modules/lib_commands_GET_BUFFER.html#BUFFER_MODE","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/GET_BUFFER"},{"id":1487,"kind":2,"name":"lib/commands/HDEL","url":"modules/lib_commands_HDEL.html","classes":"tsd-kind-module"},{"id":1488,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HDEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HDEL"},{"id":1489,"kind":64,"name":"transformReply","url":"modules/lib_commands_HDEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HDEL"},{"id":1490,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HDEL.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HDEL"},{"id":1491,"kind":2,"name":"lib/commands/HELLO","url":"modules/lib_commands_HELLO.html","classes":"tsd-kind-module"},{"id":1492,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HELLO.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HELLO"},{"id":1493,"kind":64,"name":"transformReply","url":"modules/lib_commands_HELLO.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HELLO"},{"id":1494,"kind":2,"name":"lib/commands/HEXISTS","url":"modules/lib_commands_HEXISTS.html","classes":"tsd-kind-module"},{"id":1495,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HEXISTS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HEXISTS"},{"id":1496,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HEXISTS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HEXISTS"},{"id":1497,"kind":2,"name":"lib/commands/HGET","url":"modules/lib_commands_HGET.html","classes":"tsd-kind-module"},{"id":1498,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HGET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HGET"},{"id":1499,"kind":64,"name":"transformReply","url":"modules/lib_commands_HGET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HGET"},{"id":1500,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HGET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HGET"},{"id":1501,"kind":2,"name":"lib/commands/HGETALL","url":"modules/lib_commands_HGETALL.html","classes":"tsd-kind-module"},{"id":1502,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HGETALL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HGETALL"},{"id":1503,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HGETALL.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HGETALL"},{"id":1504,"kind":2,"name":"lib/commands/HINCRBY","url":"modules/lib_commands_HINCRBY.html","classes":"tsd-kind-module"},{"id":1505,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HINCRBY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HINCRBY"},{"id":1506,"kind":64,"name":"transformReply","url":"modules/lib_commands_HINCRBY.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HINCRBY"},{"id":1507,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HINCRBY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HINCRBY"},{"id":1508,"kind":2,"name":"lib/commands/HINCRBYFLOAT","url":"modules/lib_commands_HINCRBYFLOAT.html","classes":"tsd-kind-module"},{"id":1509,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HINCRBYFLOAT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HINCRBYFLOAT"},{"id":1510,"kind":64,"name":"transformReply","url":"modules/lib_commands_HINCRBYFLOAT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HINCRBYFLOAT"},{"id":1511,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HINCRBYFLOAT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HINCRBYFLOAT"},{"id":1512,"kind":2,"name":"lib/commands/HKEYS","url":"modules/lib_commands_HKEYS.html","classes":"tsd-kind-module"},{"id":1513,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HKEYS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HKEYS"},{"id":1514,"kind":64,"name":"transformReply","url":"modules/lib_commands_HKEYS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HKEYS"},{"id":1515,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HKEYS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HKEYS"},{"id":1516,"kind":2,"name":"lib/commands/HLEN","url":"modules/lib_commands_HLEN.html","classes":"tsd-kind-module"},{"id":1517,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HLEN"},{"id":1518,"kind":64,"name":"transformReply","url":"modules/lib_commands_HLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HLEN"},{"id":1519,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HLEN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HLEN"},{"id":1520,"kind":2,"name":"lib/commands/HMGET","url":"modules/lib_commands_HMGET.html","classes":"tsd-kind-module"},{"id":1521,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HMGET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HMGET"},{"id":1522,"kind":64,"name":"transformReply","url":"modules/lib_commands_HMGET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HMGET"},{"id":1523,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HMGET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HMGET"},{"id":1524,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_HMGET.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HMGET"},{"id":1525,"kind":2,"name":"lib/commands/HRANDFIELD","url":"modules/lib_commands_HRANDFIELD.html","classes":"tsd-kind-module"},{"id":1526,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HRANDFIELD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD"},{"id":1527,"kind":64,"name":"transformReply","url":"modules/lib_commands_HRANDFIELD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD"},{"id":1528,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HRANDFIELD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD"},{"id":1529,"kind":2,"name":"lib/commands/HRANDFIELD_COUNT","url":"modules/lib_commands_HRANDFIELD_COUNT.html","classes":"tsd-kind-module"},{"id":1530,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HRANDFIELD_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD_COUNT"},{"id":1531,"kind":64,"name":"transformReply","url":"modules/lib_commands_HRANDFIELD_COUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD_COUNT"},{"id":1532,"kind":2,"name":"lib/commands/HRANDFIELD_COUNT_WITHVALUES","url":"modules/lib_commands_HRANDFIELD_COUNT_WITHVALUES.html","classes":"tsd-kind-module"},{"id":1533,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HRANDFIELD_COUNT_WITHVALUES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD_COUNT_WITHVALUES"},{"id":1534,"kind":2,"name":"lib/commands/HSCAN","url":"modules/lib_commands_HSCAN.html","classes":"tsd-kind-module"},{"id":1535,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HSCAN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HSCAN"},{"id":1536,"kind":64,"name":"transformReply","url":"modules/lib_commands_HSCAN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HSCAN"},{"id":1537,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HSCAN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HSCAN"},{"id":1538,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_HSCAN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HSCAN"},{"id":1539,"kind":256,"name":"HScanTuple","url":"interfaces/lib_commands_HSCAN.HScanTuple.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/HSCAN"},{"id":1540,"kind":1024,"name":"field","url":"interfaces/lib_commands_HSCAN.HScanTuple.html#field","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/HSCAN.HScanTuple"},{"id":1541,"kind":1024,"name":"value","url":"interfaces/lib_commands_HSCAN.HScanTuple.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/HSCAN.HScanTuple"},{"id":1542,"kind":2,"name":"lib/commands/HSET","url":"modules/lib_commands_HSET.html","classes":"tsd-kind-module"},{"id":1543,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HSET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HSET"},{"id":1544,"kind":64,"name":"transformReply","url":"modules/lib_commands_HSET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HSET"},{"id":1545,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HSET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HSET"},{"id":1546,"kind":2,"name":"lib/commands/HSETNX","url":"modules/lib_commands_HSETNX.html","classes":"tsd-kind-module"},{"id":1547,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HSETNX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HSETNX"},{"id":1548,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HSETNX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HSETNX"},{"id":1549,"kind":2,"name":"lib/commands/HSTRLEN","url":"modules/lib_commands_HSTRLEN.html","classes":"tsd-kind-module"},{"id":1550,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HSTRLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HSTRLEN"},{"id":1551,"kind":64,"name":"transformReply","url":"modules/lib_commands_HSTRLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HSTRLEN"},{"id":1552,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HSTRLEN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HSTRLEN"},{"id":1553,"kind":2,"name":"lib/commands/HVALS","url":"modules/lib_commands_HVALS.html","classes":"tsd-kind-module"},{"id":1554,"kind":64,"name":"transformArguments","url":"modules/lib_commands_HVALS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HVALS"},{"id":1555,"kind":64,"name":"transformReply","url":"modules/lib_commands_HVALS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/HVALS"},{"id":1556,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HVALS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/HVALS"},{"id":1557,"kind":2,"name":"lib/commands/INCR","url":"modules/lib_commands_INCR.html","classes":"tsd-kind-module"},{"id":1558,"kind":64,"name":"transformArguments","url":"modules/lib_commands_INCR.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/INCR"},{"id":1559,"kind":64,"name":"transformReply","url":"modules/lib_commands_INCR.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/INCR"},{"id":1560,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_INCR.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/INCR"},{"id":1561,"kind":2,"name":"lib/commands/INCRBY","url":"modules/lib_commands_INCRBY.html","classes":"tsd-kind-module"},{"id":1562,"kind":64,"name":"transformArguments","url":"modules/lib_commands_INCRBY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/INCRBY"},{"id":1563,"kind":64,"name":"transformReply","url":"modules/lib_commands_INCRBY.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/INCRBY"},{"id":1564,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_INCRBY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/INCRBY"},{"id":1565,"kind":2,"name":"lib/commands/INCRBYFLOAT","url":"modules/lib_commands_INCRBYFLOAT.html","classes":"tsd-kind-module"},{"id":1566,"kind":64,"name":"transformArguments","url":"modules/lib_commands_INCRBYFLOAT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/INCRBYFLOAT"},{"id":1567,"kind":64,"name":"transformReply","url":"modules/lib_commands_INCRBYFLOAT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/INCRBYFLOAT"},{"id":1568,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_INCRBYFLOAT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/INCRBYFLOAT"},{"id":1569,"kind":2,"name":"lib/commands/INFO","url":"modules/lib_commands_INFO.html","classes":"tsd-kind-module"},{"id":1570,"kind":64,"name":"transformArguments","url":"modules/lib_commands_INFO.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/INFO"},{"id":1571,"kind":64,"name":"transformReply","url":"modules/lib_commands_INFO.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/INFO"},{"id":1572,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_INFO.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/INFO"},{"id":1573,"kind":2,"name":"lib/commands/KEYS","url":"modules/lib_commands_KEYS.html","classes":"tsd-kind-module"},{"id":1574,"kind":64,"name":"transformArguments","url":"modules/lib_commands_KEYS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/KEYS"},{"id":1575,"kind":64,"name":"transformReply","url":"modules/lib_commands_KEYS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/KEYS"},{"id":1576,"kind":2,"name":"lib/commands/LASTSAVE","url":"modules/lib_commands_LASTSAVE.html","classes":"tsd-kind-module"},{"id":1577,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LASTSAVE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LASTSAVE"},{"id":1578,"kind":64,"name":"transformReply","url":"modules/lib_commands_LASTSAVE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LASTSAVE"},{"id":1579,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_LASTSAVE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LASTSAVE"},{"id":1580,"kind":2,"name":"lib/commands/LINDEX","url":"modules/lib_commands_LINDEX.html","classes":"tsd-kind-module"},{"id":1581,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LINDEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LINDEX"},{"id":1582,"kind":64,"name":"transformReply","url":"modules/lib_commands_LINDEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LINDEX"},{"id":1583,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_LINDEX.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LINDEX"},{"id":1584,"kind":2,"name":"lib/commands/LINSERT","url":"modules/lib_commands_LINSERT.html","classes":"tsd-kind-module"},{"id":1585,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LINSERT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LINSERT"},{"id":1586,"kind":64,"name":"transformReply","url":"modules/lib_commands_LINSERT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LINSERT"},{"id":1587,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LINSERT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LINSERT"},{"id":1588,"kind":2,"name":"lib/commands/LLEN","url":"modules/lib_commands_LLEN.html","classes":"tsd-kind-module"},{"id":1589,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LLEN"},{"id":1590,"kind":64,"name":"transformReply","url":"modules/lib_commands_LLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LLEN"},{"id":1591,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LLEN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LLEN"},{"id":1592,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_LLEN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LLEN"},{"id":1593,"kind":2,"name":"lib/commands/LMOVE","url":"modules/lib_commands_LMOVE.html","classes":"tsd-kind-module"},{"id":1594,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LMOVE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LMOVE"},{"id":1595,"kind":64,"name":"transformReply","url":"modules/lib_commands_LMOVE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LMOVE"},{"id":1596,"kind":4194304,"name":"LMoveSide","url":"modules/lib_commands_LMOVE.html#LMoveSide","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/LMOVE"},{"id":1597,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LMOVE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LMOVE"},{"id":1598,"kind":2,"name":"lib/commands/LOLWUT","url":"modules/lib_commands_LOLWUT.html","classes":"tsd-kind-module"},{"id":1599,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LOLWUT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LOLWUT"},{"id":1600,"kind":64,"name":"transformReply","url":"modules/lib_commands_LOLWUT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LOLWUT"},{"id":1601,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_LOLWUT.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LOLWUT"},{"id":1602,"kind":2,"name":"lib/commands/LPOP","url":"modules/lib_commands_LPOP.html","classes":"tsd-kind-module"},{"id":1603,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LPOP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPOP"},{"id":1604,"kind":64,"name":"transformReply","url":"modules/lib_commands_LPOP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPOP"},{"id":1605,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LPOP.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LPOP"},{"id":1606,"kind":2,"name":"lib/commands/LPOP_COUNT","url":"modules/lib_commands_LPOP_COUNT.html","classes":"tsd-kind-module"},{"id":1607,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LPOP_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPOP_COUNT"},{"id":1608,"kind":64,"name":"transformReply","url":"modules/lib_commands_LPOP_COUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPOP_COUNT"},{"id":1609,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LPOP_COUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LPOP_COUNT"},{"id":1610,"kind":2,"name":"lib/commands/LPOS","url":"modules/lib_commands_LPOS.html","classes":"tsd-kind-module"},{"id":1611,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LPOS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPOS"},{"id":1612,"kind":64,"name":"transformReply","url":"modules/lib_commands_LPOS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPOS"},{"id":1613,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LPOS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LPOS"},{"id":1614,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_LPOS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LPOS"},{"id":1615,"kind":256,"name":"LPosOptions","url":"interfaces/lib_commands_LPOS.LPosOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/LPOS"},{"id":1616,"kind":1024,"name":"RANK","url":"interfaces/lib_commands_LPOS.LPosOptions.html#RANK","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/LPOS.LPosOptions"},{"id":1617,"kind":1024,"name":"MAXLEN","url":"interfaces/lib_commands_LPOS.LPosOptions.html#MAXLEN","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/LPOS.LPosOptions"},{"id":1618,"kind":2,"name":"lib/commands/LPOS_COUNT","url":"modules/lib_commands_LPOS_COUNT.html","classes":"tsd-kind-module"},{"id":1619,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LPOS_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPOS_COUNT"},{"id":1620,"kind":64,"name":"transformReply","url":"modules/lib_commands_LPOS_COUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPOS_COUNT"},{"id":1621,"kind":2,"name":"lib/commands/LPUSH","url":"modules/lib_commands_LPUSH.html","classes":"tsd-kind-module"},{"id":1622,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LPUSH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPUSH"},{"id":1623,"kind":64,"name":"transformReply","url":"modules/lib_commands_LPUSH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPUSH"},{"id":1624,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LPUSH.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LPUSH"},{"id":1625,"kind":2,"name":"lib/commands/LPUSHX","url":"modules/lib_commands_LPUSHX.html","classes":"tsd-kind-module"},{"id":1626,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LPUSHX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPUSHX"},{"id":1627,"kind":64,"name":"transformReply","url":"modules/lib_commands_LPUSHX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LPUSHX"},{"id":1628,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LPUSHX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LPUSHX"},{"id":1629,"kind":2,"name":"lib/commands/LRANGE","url":"modules/lib_commands_LRANGE.html","classes":"tsd-kind-module"},{"id":1630,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LRANGE"},{"id":1631,"kind":64,"name":"transformReply","url":"modules/lib_commands_LRANGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LRANGE"},{"id":1632,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LRANGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LRANGE"},{"id":1633,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_LRANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LRANGE"},{"id":1634,"kind":2,"name":"lib/commands/LREM","url":"modules/lib_commands_LREM.html","classes":"tsd-kind-module"},{"id":1635,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LREM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LREM"},{"id":1636,"kind":64,"name":"transformReply","url":"modules/lib_commands_LREM.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LREM"},{"id":1637,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LREM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LREM"},{"id":1638,"kind":2,"name":"lib/commands/LSET","url":"modules/lib_commands_LSET.html","classes":"tsd-kind-module"},{"id":1639,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LSET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LSET"},{"id":1640,"kind":64,"name":"transformReply","url":"modules/lib_commands_LSET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LSET"},{"id":1641,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LSET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LSET"},{"id":1642,"kind":2,"name":"lib/commands/LTRIM","url":"modules/lib_commands_LTRIM.html","classes":"tsd-kind-module"},{"id":1643,"kind":64,"name":"transformArguments","url":"modules/lib_commands_LTRIM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LTRIM"},{"id":1644,"kind":64,"name":"transformReply","url":"modules/lib_commands_LTRIM.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/LTRIM"},{"id":1645,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LTRIM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/LTRIM"},{"id":1646,"kind":2,"name":"lib/commands/MEMORY_DOCTOR","url":"modules/lib_commands_MEMORY_DOCTOR.html","classes":"tsd-kind-module"},{"id":1647,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MEMORY_DOCTOR.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_DOCTOR"},{"id":1648,"kind":64,"name":"transformReply","url":"modules/lib_commands_MEMORY_DOCTOR.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_DOCTOR"},{"id":1649,"kind":2,"name":"lib/commands/MEMORY_MALLOC-STATS","url":"modules/lib_commands_MEMORY_MALLOC_STATS.html","classes":"tsd-kind-module"},{"id":1650,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MEMORY_MALLOC_STATS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_MALLOC-STATS"},{"id":1651,"kind":64,"name":"transformReply","url":"modules/lib_commands_MEMORY_MALLOC_STATS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_MALLOC-STATS"},{"id":1652,"kind":2,"name":"lib/commands/MEMORY_PURGE","url":"modules/lib_commands_MEMORY_PURGE.html","classes":"tsd-kind-module"},{"id":1653,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MEMORY_PURGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_PURGE"},{"id":1654,"kind":64,"name":"transformReply","url":"modules/lib_commands_MEMORY_PURGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_PURGE"},{"id":1655,"kind":2,"name":"lib/commands/MEMORY_STATS","url":"modules/lib_commands_MEMORY_STATS.html","classes":"tsd-kind-module"},{"id":1656,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MEMORY_STATS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_STATS"},{"id":1657,"kind":64,"name":"transformReply","url":"modules/lib_commands_MEMORY_STATS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_STATS"},{"id":1658,"kind":2,"name":"lib/commands/MEMORY_USAGE","url":"modules/lib_commands_MEMORY_USAGE.html","classes":"tsd-kind-module"},{"id":1659,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MEMORY_USAGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_USAGE"},{"id":1660,"kind":64,"name":"transformReply","url":"modules/lib_commands_MEMORY_USAGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MEMORY_USAGE"},{"id":1661,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_MEMORY_USAGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/MEMORY_USAGE"},{"id":1662,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_MEMORY_USAGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/MEMORY_USAGE"},{"id":1663,"kind":2,"name":"lib/commands/MGET","url":"modules/lib_commands_MGET.html","classes":"tsd-kind-module"},{"id":1664,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MGET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MGET"},{"id":1665,"kind":64,"name":"transformReply","url":"modules/lib_commands_MGET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MGET"},{"id":1666,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_MGET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/MGET"},{"id":1667,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_MGET.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/MGET"},{"id":1668,"kind":2,"name":"lib/commands/MIGRATE","url":"modules/lib_commands_MIGRATE.html","classes":"tsd-kind-module"},{"id":1669,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MIGRATE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MIGRATE"},{"id":1670,"kind":64,"name":"transformReply","url":"modules/lib_commands_MIGRATE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MIGRATE"},{"id":1671,"kind":2,"name":"lib/commands/MODULE_LIST","url":"modules/lib_commands_MODULE_LIST.html","classes":"tsd-kind-module"},{"id":1672,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MODULE_LIST.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MODULE_LIST"},{"id":1673,"kind":64,"name":"transformReply","url":"modules/lib_commands_MODULE_LIST.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MODULE_LIST"},{"id":1674,"kind":2,"name":"lib/commands/MODULE_LOAD","url":"modules/lib_commands_MODULE_LOAD.html","classes":"tsd-kind-module"},{"id":1675,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MODULE_LOAD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MODULE_LOAD"},{"id":1676,"kind":64,"name":"transformReply","url":"modules/lib_commands_MODULE_LOAD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MODULE_LOAD"},{"id":1677,"kind":2,"name":"lib/commands/MODULE_UNLOAD","url":"modules/lib_commands_MODULE_UNLOAD.html","classes":"tsd-kind-module"},{"id":1678,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MODULE_UNLOAD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MODULE_UNLOAD"},{"id":1679,"kind":64,"name":"transformReply","url":"modules/lib_commands_MODULE_UNLOAD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MODULE_UNLOAD"},{"id":1680,"kind":2,"name":"lib/commands/MOVE","url":"modules/lib_commands_MOVE.html","classes":"tsd-kind-module"},{"id":1681,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MOVE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MOVE"},{"id":1682,"kind":2,"name":"lib/commands/MSET","url":"modules/lib_commands_MSET.html","classes":"tsd-kind-module"},{"id":1683,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MSET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MSET"},{"id":1684,"kind":64,"name":"transformReply","url":"modules/lib_commands_MSET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MSET"},{"id":1685,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_MSET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/MSET"},{"id":1686,"kind":2,"name":"lib/commands/MSETNX","url":"modules/lib_commands_MSETNX.html","classes":"tsd-kind-module"},{"id":1687,"kind":64,"name":"transformArguments","url":"modules/lib_commands_MSETNX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/MSETNX"},{"id":1688,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_MSETNX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/MSETNX"},{"id":1689,"kind":2,"name":"lib/commands/PERSIST","url":"modules/lib_commands_PERSIST.html","classes":"tsd-kind-module"},{"id":1690,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PERSIST.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PERSIST"},{"id":1691,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_PERSIST.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PERSIST"},{"id":1692,"kind":2,"name":"lib/commands/PEXPIRE","url":"modules/lib_commands_PEXPIRE.html","classes":"tsd-kind-module"},{"id":1693,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PEXPIRE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PEXPIRE"},{"id":1694,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_PEXPIRE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PEXPIRE"},{"id":1695,"kind":2,"name":"lib/commands/PEXPIREAT","url":"modules/lib_commands_PEXPIREAT.html","classes":"tsd-kind-module"},{"id":1696,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PEXPIREAT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PEXPIREAT"},{"id":1697,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_PEXPIREAT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PEXPIREAT"},{"id":1698,"kind":2,"name":"lib/commands/PFADD","url":"modules/lib_commands_PFADD.html","classes":"tsd-kind-module"},{"id":1699,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PFADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PFADD"},{"id":1700,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_PFADD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PFADD"},{"id":1701,"kind":2,"name":"lib/commands/PFCOUNT","url":"modules/lib_commands_PFCOUNT.html","classes":"tsd-kind-module"},{"id":1702,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PFCOUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PFCOUNT"},{"id":1703,"kind":64,"name":"transformReply","url":"modules/lib_commands_PFCOUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PFCOUNT"},{"id":1704,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_PFCOUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PFCOUNT"},{"id":1705,"kind":2,"name":"lib/commands/PFMERGE","url":"modules/lib_commands_PFMERGE.html","classes":"tsd-kind-module"},{"id":1706,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PFMERGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PFMERGE"},{"id":1707,"kind":64,"name":"transformReply","url":"modules/lib_commands_PFMERGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PFMERGE"},{"id":1708,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_PFMERGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PFMERGE"},{"id":1709,"kind":2,"name":"lib/commands/PING","url":"modules/lib_commands_PING.html","classes":"tsd-kind-module"},{"id":1710,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PING.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PING"},{"id":1711,"kind":64,"name":"transformReply","url":"modules/lib_commands_PING.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PING"},{"id":1712,"kind":2,"name":"lib/commands/PSETEX","url":"modules/lib_commands_PSETEX.html","classes":"tsd-kind-module"},{"id":1713,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PSETEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PSETEX"},{"id":1714,"kind":64,"name":"transformReply","url":"modules/lib_commands_PSETEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PSETEX"},{"id":1715,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_PSETEX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PSETEX"},{"id":1716,"kind":2,"name":"lib/commands/PTTL","url":"modules/lib_commands_PTTL.html","classes":"tsd-kind-module"},{"id":1717,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PTTL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PTTL"},{"id":1718,"kind":64,"name":"transformReply","url":"modules/lib_commands_PTTL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PTTL"},{"id":1719,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_PTTL.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PTTL"},{"id":1720,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_PTTL.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PTTL"},{"id":1721,"kind":2,"name":"lib/commands/PUBLISH","url":"modules/lib_commands_PUBLISH.html","classes":"tsd-kind-module"},{"id":1722,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PUBLISH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PUBLISH"},{"id":1723,"kind":64,"name":"transformReply","url":"modules/lib_commands_PUBLISH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PUBLISH"},{"id":1724,"kind":2,"name":"lib/commands/PUBSUB_CHANNELS","url":"modules/lib_commands_PUBSUB_CHANNELS.html","classes":"tsd-kind-module"},{"id":1725,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PUBSUB_CHANNELS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PUBSUB_CHANNELS"},{"id":1726,"kind":64,"name":"transformReply","url":"modules/lib_commands_PUBSUB_CHANNELS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PUBSUB_CHANNELS"},{"id":1727,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_PUBSUB_CHANNELS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PUBSUB_CHANNELS"},{"id":1728,"kind":2,"name":"lib/commands/PUBSUB_NUMPAT","url":"modules/lib_commands_PUBSUB_NUMPAT.html","classes":"tsd-kind-module"},{"id":1729,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PUBSUB_NUMPAT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PUBSUB_NUMPAT"},{"id":1730,"kind":64,"name":"transformReply","url":"modules/lib_commands_PUBSUB_NUMPAT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PUBSUB_NUMPAT"},{"id":1731,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_PUBSUB_NUMPAT.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PUBSUB_NUMPAT"},{"id":1732,"kind":2,"name":"lib/commands/PUBSUB_NUMSUB","url":"modules/lib_commands_PUBSUB_NUMSUB.html","classes":"tsd-kind-module"},{"id":1733,"kind":64,"name":"transformArguments","url":"modules/lib_commands_PUBSUB_NUMSUB.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PUBSUB_NUMSUB"},{"id":1734,"kind":64,"name":"transformReply","url":"modules/lib_commands_PUBSUB_NUMSUB.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/PUBSUB_NUMSUB"},{"id":1735,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_PUBSUB_NUMSUB.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/PUBSUB_NUMSUB"},{"id":1736,"kind":2,"name":"lib/commands/RANDOMKEY","url":"modules/lib_commands_RANDOMKEY.html","classes":"tsd-kind-module"},{"id":1737,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RANDOMKEY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RANDOMKEY"},{"id":1738,"kind":64,"name":"transformReply","url":"modules/lib_commands_RANDOMKEY.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RANDOMKEY"},{"id":1739,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_RANDOMKEY.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/RANDOMKEY"},{"id":1740,"kind":2,"name":"lib/commands/READONLY","url":"modules/lib_commands_READONLY.html","classes":"tsd-kind-module"},{"id":1741,"kind":64,"name":"transformArguments","url":"modules/lib_commands_READONLY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/READONLY"},{"id":1742,"kind":64,"name":"transformReply","url":"modules/lib_commands_READONLY.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/READONLY"},{"id":1743,"kind":2,"name":"lib/commands/READWRITE","url":"modules/lib_commands_READWRITE.html","classes":"tsd-kind-module"},{"id":1744,"kind":64,"name":"transformArguments","url":"modules/lib_commands_READWRITE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/READWRITE"},{"id":1745,"kind":64,"name":"transformReply","url":"modules/lib_commands_READWRITE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/READWRITE"},{"id":1746,"kind":2,"name":"lib/commands/RENAME","url":"modules/lib_commands_RENAME.html","classes":"tsd-kind-module"},{"id":1747,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RENAME.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RENAME"},{"id":1748,"kind":64,"name":"transformReply","url":"modules/lib_commands_RENAME.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RENAME"},{"id":1749,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_RENAME.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/RENAME"},{"id":1750,"kind":2,"name":"lib/commands/RENAMENX","url":"modules/lib_commands_RENAMENX.html","classes":"tsd-kind-module"},{"id":1751,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RENAMENX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RENAMENX"},{"id":1752,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_RENAMENX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/RENAMENX"},{"id":1753,"kind":2,"name":"lib/commands/REPLICAOF","url":"modules/lib_commands_REPLICAOF.html","classes":"tsd-kind-module"},{"id":1754,"kind":64,"name":"transformArguments","url":"modules/lib_commands_REPLICAOF.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/REPLICAOF"},{"id":1755,"kind":64,"name":"transformReply","url":"modules/lib_commands_REPLICAOF.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/REPLICAOF"},{"id":1756,"kind":2,"name":"lib/commands/RESTORE-ASKING","url":"modules/lib_commands_RESTORE_ASKING.html","classes":"tsd-kind-module"},{"id":1757,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RESTORE_ASKING.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RESTORE-ASKING"},{"id":1758,"kind":64,"name":"transformReply","url":"modules/lib_commands_RESTORE_ASKING.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RESTORE-ASKING"},{"id":1759,"kind":2,"name":"lib/commands/ROLE","url":"modules/lib_commands_ROLE.html","classes":"tsd-kind-module"},{"id":1760,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ROLE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ROLE"},{"id":1761,"kind":64,"name":"transformReply","url":"modules/lib_commands_ROLE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ROLE"},{"id":1762,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ROLE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ROLE"},{"id":1763,"kind":2,"name":"lib/commands/RPOP","url":"modules/lib_commands_RPOP.html","classes":"tsd-kind-module"},{"id":1764,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RPOP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPOP"},{"id":1765,"kind":64,"name":"transformReply","url":"modules/lib_commands_RPOP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPOP"},{"id":1766,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_RPOP.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/RPOP"},{"id":1767,"kind":2,"name":"lib/commands/RPOPLPUSH","url":"modules/lib_commands_RPOPLPUSH.html","classes":"tsd-kind-module"},{"id":1768,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RPOPLPUSH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPOPLPUSH"},{"id":1769,"kind":64,"name":"transformReply","url":"modules/lib_commands_RPOPLPUSH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPOPLPUSH"},{"id":1770,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_RPOPLPUSH.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/RPOPLPUSH"},{"id":1771,"kind":2,"name":"lib/commands/RPOP_COUNT","url":"modules/lib_commands_RPOP_COUNT.html","classes":"tsd-kind-module"},{"id":1772,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RPOP_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPOP_COUNT"},{"id":1773,"kind":64,"name":"transformReply","url":"modules/lib_commands_RPOP_COUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPOP_COUNT"},{"id":1774,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_RPOP_COUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/RPOP_COUNT"},{"id":1775,"kind":2,"name":"lib/commands/RPUSH","url":"modules/lib_commands_RPUSH.html","classes":"tsd-kind-module"},{"id":1776,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RPUSH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPUSH"},{"id":1777,"kind":64,"name":"transformReply","url":"modules/lib_commands_RPUSH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPUSH"},{"id":1778,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_RPUSH.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/RPUSH"},{"id":1779,"kind":2,"name":"lib/commands/RPUSHX","url":"modules/lib_commands_RPUSHX.html","classes":"tsd-kind-module"},{"id":1780,"kind":64,"name":"transformArguments","url":"modules/lib_commands_RPUSHX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPUSHX"},{"id":1781,"kind":64,"name":"transformReply","url":"modules/lib_commands_RPUSHX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/RPUSHX"},{"id":1782,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_RPUSHX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/RPUSHX"},{"id":1783,"kind":2,"name":"lib/commands/SADD","url":"modules/lib_commands_SADD.html","classes":"tsd-kind-module"},{"id":1784,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SADD"},{"id":1785,"kind":64,"name":"transformReply","url":"modules/lib_commands_SADD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SADD"},{"id":1786,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SADD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SADD"},{"id":1787,"kind":2,"name":"lib/commands/SAVE","url":"modules/lib_commands_SAVE.html","classes":"tsd-kind-module"},{"id":1788,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SAVE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SAVE"},{"id":1789,"kind":64,"name":"transformReply","url":"modules/lib_commands_SAVE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SAVE"},{"id":1790,"kind":2,"name":"lib/commands/SCAN","url":"modules/lib_commands_SCAN.html","classes":"tsd-kind-module"},{"id":1791,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SCAN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCAN"},{"id":1792,"kind":64,"name":"transformReply","url":"modules/lib_commands_SCAN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCAN"},{"id":1793,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_SCAN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SCAN"},{"id":1794,"kind":256,"name":"ScanCommandOptions","url":"interfaces/lib_commands_SCAN.ScanCommandOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/SCAN"},{"id":1795,"kind":1024,"name":"TYPE","url":"interfaces/lib_commands_SCAN.ScanCommandOptions.html#TYPE","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/SCAN.ScanCommandOptions"},{"id":1796,"kind":1024,"name":"MATCH","url":"interfaces/lib_commands_SCAN.ScanCommandOptions.html#MATCH","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/SCAN.ScanCommandOptions"},{"id":1797,"kind":1024,"name":"COUNT","url":"interfaces/lib_commands_SCAN.ScanCommandOptions.html#COUNT","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/commands/SCAN.ScanCommandOptions"},{"id":1798,"kind":256,"name":"ScanReply","url":"interfaces/lib_commands_SCAN.ScanReply.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/SCAN"},{"id":1799,"kind":1024,"name":"cursor","url":"interfaces/lib_commands_SCAN.ScanReply.html#cursor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/SCAN.ScanReply"},{"id":1800,"kind":1024,"name":"keys","url":"interfaces/lib_commands_SCAN.ScanReply.html#keys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/SCAN.ScanReply"},{"id":1801,"kind":2,"name":"lib/commands/SCARD","url":"modules/lib_commands_SCARD.html","classes":"tsd-kind-module"},{"id":1802,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SCARD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCARD"},{"id":1803,"kind":64,"name":"transformReply","url":"modules/lib_commands_SCARD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCARD"},{"id":1804,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SCARD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SCARD"},{"id":1805,"kind":2,"name":"lib/commands/SCRIPT_DEBUG","url":"modules/lib_commands_SCRIPT_DEBUG.html","classes":"tsd-kind-module"},{"id":1806,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SCRIPT_DEBUG.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_DEBUG"},{"id":1807,"kind":64,"name":"transformReply","url":"modules/lib_commands_SCRIPT_DEBUG.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_DEBUG"},{"id":1808,"kind":2,"name":"lib/commands/SCRIPT_EXISTS","url":"modules/lib_commands_SCRIPT_EXISTS.html","classes":"tsd-kind-module"},{"id":1809,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SCRIPT_EXISTS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_EXISTS"},{"id":1810,"kind":2,"name":"lib/commands/SCRIPT_FLUSH","url":"modules/lib_commands_SCRIPT_FLUSH.html","classes":"tsd-kind-module"},{"id":1811,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SCRIPT_FLUSH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_FLUSH"},{"id":1812,"kind":64,"name":"transformReply","url":"modules/lib_commands_SCRIPT_FLUSH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_FLUSH"},{"id":1813,"kind":2,"name":"lib/commands/SCRIPT_KILL","url":"modules/lib_commands_SCRIPT_KILL.html","classes":"tsd-kind-module"},{"id":1814,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SCRIPT_KILL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_KILL"},{"id":1815,"kind":64,"name":"transformReply","url":"modules/lib_commands_SCRIPT_KILL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_KILL"},{"id":1816,"kind":2,"name":"lib/commands/SCRIPT_LOAD","url":"modules/lib_commands_SCRIPT_LOAD.html","classes":"tsd-kind-module"},{"id":1817,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SCRIPT_LOAD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_LOAD"},{"id":1818,"kind":64,"name":"transformReply","url":"modules/lib_commands_SCRIPT_LOAD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SCRIPT_LOAD"},{"id":1819,"kind":2,"name":"lib/commands/SDIFF","url":"modules/lib_commands_SDIFF.html","classes":"tsd-kind-module"},{"id":1820,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SDIFF.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SDIFF"},{"id":1821,"kind":64,"name":"transformReply","url":"modules/lib_commands_SDIFF.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SDIFF"},{"id":1822,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SDIFF.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SDIFF"},{"id":1823,"kind":2,"name":"lib/commands/SDIFFSTORE","url":"modules/lib_commands_SDIFFSTORE.html","classes":"tsd-kind-module"},{"id":1824,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SDIFFSTORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SDIFFSTORE"},{"id":1825,"kind":64,"name":"transformReply","url":"modules/lib_commands_SDIFFSTORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SDIFFSTORE"},{"id":1826,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SDIFFSTORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SDIFFSTORE"},{"id":1827,"kind":2,"name":"lib/commands/SET","url":"modules/lib_commands_SET.html","classes":"tsd-kind-module"},{"id":1828,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SET"},{"id":1829,"kind":64,"name":"transformReply","url":"modules/lib_commands_SET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SET"},{"id":1830,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SET"},{"id":1831,"kind":2,"name":"lib/commands/SETBIT","url":"modules/lib_commands_SETBIT.html","classes":"tsd-kind-module"},{"id":1832,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SETBIT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SETBIT"},{"id":1833,"kind":64,"name":"transformReply","url":"modules/lib_commands_SETBIT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SETBIT"},{"id":1834,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SETBIT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SETBIT"},{"id":1835,"kind":2,"name":"lib/commands/SETEX","url":"modules/lib_commands_SETEX.html","classes":"tsd-kind-module"},{"id":1836,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SETEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SETEX"},{"id":1837,"kind":64,"name":"transformReply","url":"modules/lib_commands_SETEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SETEX"},{"id":1838,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SETEX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SETEX"},{"id":1839,"kind":2,"name":"lib/commands/SETNX","url":"modules/lib_commands_SETNX.html","classes":"tsd-kind-module"},{"id":1840,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SETNX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SETNX"},{"id":1841,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SETNX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SETNX"},{"id":1842,"kind":2,"name":"lib/commands/SETRANGE","url":"modules/lib_commands_SETRANGE.html","classes":"tsd-kind-module"},{"id":1843,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SETRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SETRANGE"},{"id":1844,"kind":64,"name":"transformReply","url":"modules/lib_commands_SETRANGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SETRANGE"},{"id":1845,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SETRANGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SETRANGE"},{"id":1846,"kind":2,"name":"lib/commands/SHUTDOWN","url":"modules/lib_commands_SHUTDOWN.html","classes":"tsd-kind-module"},{"id":1847,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SHUTDOWN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SHUTDOWN"},{"id":1848,"kind":64,"name":"transformReply","url":"modules/lib_commands_SHUTDOWN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SHUTDOWN"},{"id":1849,"kind":2,"name":"lib/commands/SINTER","url":"modules/lib_commands_SINTER.html","classes":"tsd-kind-module"},{"id":1850,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SINTER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SINTER"},{"id":1851,"kind":64,"name":"transformReply","url":"modules/lib_commands_SINTER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SINTER"},{"id":1852,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SINTER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SINTER"},{"id":1853,"kind":2,"name":"lib/commands/SINTERSTORE","url":"modules/lib_commands_SINTERSTORE.html","classes":"tsd-kind-module"},{"id":1854,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SINTERSTORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SINTERSTORE"},{"id":1855,"kind":64,"name":"transformReply","url":"modules/lib_commands_SINTERSTORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SINTERSTORE"},{"id":1856,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SINTERSTORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SINTERSTORE"},{"id":1857,"kind":2,"name":"lib/commands/SISMEMBER","url":"modules/lib_commands_SISMEMBER.html","classes":"tsd-kind-module"},{"id":1858,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SISMEMBER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SISMEMBER"},{"id":1859,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SISMEMBER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SISMEMBER"},{"id":1860,"kind":2,"name":"lib/commands/SMEMBERS","url":"modules/lib_commands_SMEMBERS.html","classes":"tsd-kind-module"},{"id":1861,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SMEMBERS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SMEMBERS"},{"id":1862,"kind":64,"name":"transformReply","url":"modules/lib_commands_SMEMBERS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SMEMBERS"},{"id":1863,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SMEMBERS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SMEMBERS"},{"id":1864,"kind":2,"name":"lib/commands/SMISMEMBER","url":"modules/lib_commands_SMISMEMBER.html","classes":"tsd-kind-module"},{"id":1865,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SMISMEMBER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SMISMEMBER"},{"id":1866,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SMISMEMBER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SMISMEMBER"},{"id":1867,"kind":2,"name":"lib/commands/SMOVE","url":"modules/lib_commands_SMOVE.html","classes":"tsd-kind-module"},{"id":1868,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SMOVE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SMOVE"},{"id":1869,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SMOVE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SMOVE"},{"id":1870,"kind":2,"name":"lib/commands/SORT","url":"modules/lib_commands_SORT.html","classes":"tsd-kind-module"},{"id":1871,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SORT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SORT"},{"id":1872,"kind":64,"name":"transformReply","url":"modules/lib_commands_SORT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SORT"},{"id":1873,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SORT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SORT"},{"id":1874,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_SORT.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SORT"},{"id":1875,"kind":2,"name":"lib/commands/SPOP","url":"modules/lib_commands_SPOP.html","classes":"tsd-kind-module"},{"id":1876,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SPOP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SPOP"},{"id":1877,"kind":64,"name":"transformReply","url":"modules/lib_commands_SPOP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SPOP"},{"id":1878,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SPOP.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SPOP"},{"id":1879,"kind":2,"name":"lib/commands/SRANDMEMBER","url":"modules/lib_commands_SRANDMEMBER.html","classes":"tsd-kind-module"},{"id":1880,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SRANDMEMBER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SRANDMEMBER"},{"id":1881,"kind":64,"name":"transformReply","url":"modules/lib_commands_SRANDMEMBER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SRANDMEMBER"},{"id":1882,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SRANDMEMBER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SRANDMEMBER"},{"id":1883,"kind":2,"name":"lib/commands/SRANDMEMBER_COUNT","url":"modules/lib_commands_SRANDMEMBER_COUNT.html","classes":"tsd-kind-module"},{"id":1884,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SRANDMEMBER_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SRANDMEMBER_COUNT"},{"id":1885,"kind":64,"name":"transformReply","url":"modules/lib_commands_SRANDMEMBER_COUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SRANDMEMBER_COUNT"},{"id":1886,"kind":2,"name":"lib/commands/SREM","url":"modules/lib_commands_SREM.html","classes":"tsd-kind-module"},{"id":1887,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SREM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SREM"},{"id":1888,"kind":64,"name":"transformReply","url":"modules/lib_commands_SREM.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SREM"},{"id":1889,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SREM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SREM"},{"id":1890,"kind":2,"name":"lib/commands/SSCAN","url":"modules/lib_commands_SSCAN.html","classes":"tsd-kind-module"},{"id":1891,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SSCAN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SSCAN"},{"id":1892,"kind":64,"name":"transformReply","url":"modules/lib_commands_SSCAN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SSCAN"},{"id":1893,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SSCAN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SSCAN"},{"id":1894,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_SSCAN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SSCAN"},{"id":1895,"kind":2,"name":"lib/commands/STRLEN","url":"modules/lib_commands_STRLEN.html","classes":"tsd-kind-module"},{"id":1896,"kind":64,"name":"transformArguments","url":"modules/lib_commands_STRLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/STRLEN"},{"id":1897,"kind":64,"name":"transformReply","url":"modules/lib_commands_STRLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/STRLEN"},{"id":1898,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_STRLEN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/STRLEN"},{"id":1899,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_STRLEN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/STRLEN"},{"id":1900,"kind":2,"name":"lib/commands/SUNION","url":"modules/lib_commands_SUNION.html","classes":"tsd-kind-module"},{"id":1901,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SUNION.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SUNION"},{"id":1902,"kind":64,"name":"transformReply","url":"modules/lib_commands_SUNION.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SUNION"},{"id":1903,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SUNION.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SUNION"},{"id":1904,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_SUNION.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SUNION"},{"id":1905,"kind":2,"name":"lib/commands/SUNIONSTORE","url":"modules/lib_commands_SUNIONSTORE.html","classes":"tsd-kind-module"},{"id":1906,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SUNIONSTORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SUNIONSTORE"},{"id":1907,"kind":64,"name":"transformReply","url":"modules/lib_commands_SUNIONSTORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SUNIONSTORE"},{"id":1908,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SUNIONSTORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/SUNIONSTORE"},{"id":1909,"kind":2,"name":"lib/commands/SWAPDB","url":"modules/lib_commands_SWAPDB.html","classes":"tsd-kind-module"},{"id":1910,"kind":64,"name":"transformArguments","url":"modules/lib_commands_SWAPDB.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SWAPDB"},{"id":1911,"kind":64,"name":"transformReply","url":"modules/lib_commands_SWAPDB.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/SWAPDB"},{"id":1912,"kind":2,"name":"lib/commands/TIME","url":"modules/lib_commands_TIME.html","classes":"tsd-kind-module"},{"id":1913,"kind":64,"name":"transformArguments","url":"modules/lib_commands_TIME.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/TIME"},{"id":1914,"kind":64,"name":"transformReply","url":"modules/lib_commands_TIME.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/TIME"},{"id":1915,"kind":2,"name":"lib/commands/TOUCH","url":"modules/lib_commands_TOUCH.html","classes":"tsd-kind-module"},{"id":1916,"kind":64,"name":"transformArguments","url":"modules/lib_commands_TOUCH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/TOUCH"},{"id":1917,"kind":64,"name":"transformReply","url":"modules/lib_commands_TOUCH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/TOUCH"},{"id":1918,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_TOUCH.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/TOUCH"},{"id":1919,"kind":2,"name":"lib/commands/TTL","url":"modules/lib_commands_TTL.html","classes":"tsd-kind-module"},{"id":1920,"kind":64,"name":"transformArguments","url":"modules/lib_commands_TTL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/TTL"},{"id":1921,"kind":64,"name":"transformReply","url":"modules/lib_commands_TTL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/TTL"},{"id":1922,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_TTL.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/TTL"},{"id":1923,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_TTL.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/TTL"},{"id":1924,"kind":2,"name":"lib/commands/TYPE","url":"modules/lib_commands_TYPE.html","classes":"tsd-kind-module"},{"id":1925,"kind":64,"name":"transformArguments","url":"modules/lib_commands_TYPE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/TYPE"},{"id":1926,"kind":64,"name":"transformReply","url":"modules/lib_commands_TYPE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/TYPE"},{"id":1927,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_TYPE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/TYPE"},{"id":1928,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_TYPE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/TYPE"},{"id":1929,"kind":2,"name":"lib/commands/UNLINK","url":"modules/lib_commands_UNLINK.html","classes":"tsd-kind-module"},{"id":1930,"kind":64,"name":"transformArguments","url":"modules/lib_commands_UNLINK.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/UNLINK"},{"id":1931,"kind":64,"name":"transformReply","url":"modules/lib_commands_UNLINK.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/UNLINK"},{"id":1932,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_UNLINK.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/UNLINK"},{"id":1933,"kind":2,"name":"lib/commands/UNWATCH","url":"modules/lib_commands_UNWATCH.html","classes":"tsd-kind-module"},{"id":1934,"kind":64,"name":"transformArguments","url":"modules/lib_commands_UNWATCH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/UNWATCH"},{"id":1935,"kind":64,"name":"transformReply","url":"modules/lib_commands_UNWATCH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/UNWATCH"},{"id":1936,"kind":2,"name":"lib/commands/WAIT","url":"modules/lib_commands_WAIT.html","classes":"tsd-kind-module"},{"id":1937,"kind":64,"name":"transformArguments","url":"modules/lib_commands_WAIT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/WAIT"},{"id":1938,"kind":64,"name":"transformReply","url":"modules/lib_commands_WAIT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/WAIT"},{"id":1939,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_WAIT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/WAIT"},{"id":1940,"kind":2,"name":"lib/commands/WATCH","url":"modules/lib_commands_WATCH.html","classes":"tsd-kind-module"},{"id":1941,"kind":64,"name":"transformArguments","url":"modules/lib_commands_WATCH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/WATCH"},{"id":1942,"kind":64,"name":"transformReply","url":"modules/lib_commands_WATCH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/WATCH"},{"id":1943,"kind":2,"name":"lib/commands/XACK","url":"modules/lib_commands_XACK.html","classes":"tsd-kind-module"},{"id":1944,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XACK.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XACK"},{"id":1945,"kind":64,"name":"transformReply","url":"modules/lib_commands_XACK.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XACK"},{"id":1946,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XACK.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XACK"},{"id":1947,"kind":2,"name":"lib/commands/XADD","url":"modules/lib_commands_XADD.html","classes":"tsd-kind-module"},{"id":1948,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XADD"},{"id":1949,"kind":64,"name":"transformReply","url":"modules/lib_commands_XADD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XADD"},{"id":1950,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XADD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XADD"},{"id":1951,"kind":2,"name":"lib/commands/XAUTOCLAIM","url":"modules/lib_commands_XAUTOCLAIM.html","classes":"tsd-kind-module"},{"id":1952,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XAUTOCLAIM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XAUTOCLAIM"},{"id":1953,"kind":64,"name":"transformReply","url":"modules/lib_commands_XAUTOCLAIM.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XAUTOCLAIM"},{"id":1954,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XAUTOCLAIM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XAUTOCLAIM"},{"id":1955,"kind":256,"name":"XAutoClaimOptions","url":"interfaces/lib_commands_XAUTOCLAIM.XAutoClaimOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/XAUTOCLAIM"},{"id":1956,"kind":1024,"name":"COUNT","url":"interfaces/lib_commands_XAUTOCLAIM.XAutoClaimOptions.html#COUNT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XAUTOCLAIM.XAutoClaimOptions"},{"id":1957,"kind":2,"name":"lib/commands/XAUTOCLAIM_JUSTID","url":"modules/lib_commands_XAUTOCLAIM_JUSTID.html","classes":"tsd-kind-module"},{"id":1958,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XAUTOCLAIM_JUSTID.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XAUTOCLAIM_JUSTID"},{"id":1959,"kind":64,"name":"transformReply","url":"modules/lib_commands_XAUTOCLAIM_JUSTID.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XAUTOCLAIM_JUSTID"},{"id":1960,"kind":2,"name":"lib/commands/XCLAIM","url":"modules/lib_commands_XCLAIM.html","classes":"tsd-kind-module"},{"id":1961,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XCLAIM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XCLAIM"},{"id":1962,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XCLAIM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XCLAIM"},{"id":1963,"kind":256,"name":"XClaimOptions","url":"interfaces/lib_commands_XCLAIM.XClaimOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/XCLAIM"},{"id":1964,"kind":1024,"name":"IDLE","url":"interfaces/lib_commands_XCLAIM.XClaimOptions.html#IDLE","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XCLAIM.XClaimOptions"},{"id":1965,"kind":1024,"name":"TIME","url":"interfaces/lib_commands_XCLAIM.XClaimOptions.html#TIME","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XCLAIM.XClaimOptions"},{"id":1966,"kind":1024,"name":"RETRYCOUNT","url":"interfaces/lib_commands_XCLAIM.XClaimOptions.html#RETRYCOUNT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XCLAIM.XClaimOptions"},{"id":1967,"kind":1024,"name":"FORCE","url":"interfaces/lib_commands_XCLAIM.XClaimOptions.html#FORCE","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XCLAIM.XClaimOptions"},{"id":1968,"kind":2,"name":"lib/commands/XCLAIM_JUSTID","url":"modules/lib_commands_XCLAIM_JUSTID.html","classes":"tsd-kind-module"},{"id":1969,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XCLAIM_JUSTID.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XCLAIM_JUSTID"},{"id":1970,"kind":64,"name":"transformReply","url":"modules/lib_commands_XCLAIM_JUSTID.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XCLAIM_JUSTID"},{"id":1971,"kind":2,"name":"lib/commands/XDEL","url":"modules/lib_commands_XDEL.html","classes":"tsd-kind-module"},{"id":1972,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XDEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XDEL"},{"id":1973,"kind":64,"name":"transformReply","url":"modules/lib_commands_XDEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XDEL"},{"id":1974,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XDEL.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XDEL"},{"id":1975,"kind":2,"name":"lib/commands/XGROUP_CREATE","url":"modules/lib_commands_XGROUP_CREATE.html","classes":"tsd-kind-module"},{"id":1976,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XGROUP_CREATE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XGROUP_CREATE"},{"id":1977,"kind":64,"name":"transformReply","url":"modules/lib_commands_XGROUP_CREATE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XGROUP_CREATE"},{"id":1978,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XGROUP_CREATE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XGROUP_CREATE"},{"id":1979,"kind":2,"name":"lib/commands/XGROUP_CREATECONSUMER","url":"modules/lib_commands_XGROUP_CREATECONSUMER.html","classes":"tsd-kind-module"},{"id":1980,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XGROUP_CREATECONSUMER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XGROUP_CREATECONSUMER"},{"id":1981,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XGROUP_CREATECONSUMER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XGROUP_CREATECONSUMER"},{"id":1982,"kind":2,"name":"lib/commands/XGROUP_DELCONSUMER","url":"modules/lib_commands_XGROUP_DELCONSUMER.html","classes":"tsd-kind-module"},{"id":1983,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XGROUP_DELCONSUMER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XGROUP_DELCONSUMER"},{"id":1984,"kind":64,"name":"transformReply","url":"modules/lib_commands_XGROUP_DELCONSUMER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XGROUP_DELCONSUMER"},{"id":1985,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XGROUP_DELCONSUMER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XGROUP_DELCONSUMER"},{"id":1986,"kind":2,"name":"lib/commands/XGROUP_DESTROY","url":"modules/lib_commands_XGROUP_DESTROY.html","classes":"tsd-kind-module"},{"id":1987,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XGROUP_DESTROY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XGROUP_DESTROY"},{"id":1988,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XGROUP_DESTROY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XGROUP_DESTROY"},{"id":1989,"kind":2,"name":"lib/commands/XGROUP_SETID","url":"modules/lib_commands_XGROUP_SETID.html","classes":"tsd-kind-module"},{"id":1990,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XGROUP_SETID.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XGROUP_SETID"},{"id":1991,"kind":64,"name":"transformReply","url":"modules/lib_commands_XGROUP_SETID.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XGROUP_SETID"},{"id":1992,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XGROUP_SETID.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XGROUP_SETID"},{"id":1993,"kind":2,"name":"lib/commands/XINFO_CONSUMERS","url":"modules/lib_commands_XINFO_CONSUMERS.html","classes":"tsd-kind-module"},{"id":1994,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XINFO_CONSUMERS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XINFO_CONSUMERS"},{"id":1995,"kind":64,"name":"transformReply","url":"modules/lib_commands_XINFO_CONSUMERS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XINFO_CONSUMERS"},{"id":1996,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XINFO_CONSUMERS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XINFO_CONSUMERS"},{"id":1997,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XINFO_CONSUMERS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XINFO_CONSUMERS"},{"id":1998,"kind":2,"name":"lib/commands/XINFO_GROUPS","url":"modules/lib_commands_XINFO_GROUPS.html","classes":"tsd-kind-module"},{"id":1999,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XINFO_GROUPS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XINFO_GROUPS"},{"id":2000,"kind":64,"name":"transformReply","url":"modules/lib_commands_XINFO_GROUPS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XINFO_GROUPS"},{"id":2001,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XINFO_GROUPS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XINFO_GROUPS"},{"id":2002,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XINFO_GROUPS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XINFO_GROUPS"},{"id":2003,"kind":2,"name":"lib/commands/XINFO_STREAM","url":"modules/lib_commands_XINFO_STREAM.html","classes":"tsd-kind-module"},{"id":2004,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XINFO_STREAM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XINFO_STREAM"},{"id":2005,"kind":64,"name":"transformReply","url":"modules/lib_commands_XINFO_STREAM.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XINFO_STREAM"},{"id":2006,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XINFO_STREAM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XINFO_STREAM"},{"id":2007,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XINFO_STREAM.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XINFO_STREAM"},{"id":2008,"kind":2,"name":"lib/commands/XLEN","url":"modules/lib_commands_XLEN.html","classes":"tsd-kind-module"},{"id":2009,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XLEN"},{"id":2010,"kind":64,"name":"transformReply","url":"modules/lib_commands_XLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XLEN"},{"id":2011,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XLEN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XLEN"},{"id":2012,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XLEN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XLEN"},{"id":2013,"kind":2,"name":"lib/commands/XPENDING","url":"modules/lib_commands_XPENDING.html","classes":"tsd-kind-module"},{"id":2014,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XPENDING.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XPENDING"},{"id":2015,"kind":64,"name":"transformReply","url":"modules/lib_commands_XPENDING.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XPENDING"},{"id":2016,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XPENDING.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XPENDING"},{"id":2017,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XPENDING.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XPENDING"},{"id":2018,"kind":2,"name":"lib/commands/XPENDING_RANGE","url":"modules/lib_commands_XPENDING_RANGE.html","classes":"tsd-kind-module"},{"id":2019,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XPENDING_RANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XPENDING_RANGE"},{"id":2020,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XPENDING_RANGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XPENDING_RANGE"},{"id":2021,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XPENDING_RANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XPENDING_RANGE"},{"id":2022,"kind":2,"name":"lib/commands/XRANGE","url":"modules/lib_commands_XRANGE.html","classes":"tsd-kind-module"},{"id":2023,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XRANGE"},{"id":2024,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XRANGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XRANGE"},{"id":2025,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XRANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XRANGE"},{"id":2026,"kind":2,"name":"lib/commands/XREAD","url":"modules/lib_commands_XREAD.html","classes":"tsd-kind-module"},{"id":2027,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XREAD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XREAD"},{"id":2028,"kind":64,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XREAD.html#FIRST_KEY_INDEX","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XREAD"},{"id":2029,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XREAD.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XREAD"},{"id":2030,"kind":2,"name":"lib/commands/XREADGROUP","url":"modules/lib_commands_XREADGROUP.html","classes":"tsd-kind-module"},{"id":2031,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XREADGROUP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XREADGROUP"},{"id":2032,"kind":256,"name":"XReadGroupStream","url":"interfaces/lib_commands_XREADGROUP.XReadGroupStream.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/XREADGROUP"},{"id":2033,"kind":1024,"name":"key","url":"interfaces/lib_commands_XREADGROUP.XReadGroupStream.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XREADGROUP.XReadGroupStream"},{"id":2034,"kind":1024,"name":"id","url":"interfaces/lib_commands_XREADGROUP.XReadGroupStream.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XREADGROUP.XReadGroupStream"},{"id":2035,"kind":256,"name":"XReadGroupOptions","url":"interfaces/lib_commands_XREADGROUP.XReadGroupOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/XREADGROUP"},{"id":2036,"kind":1024,"name":"COUNT","url":"interfaces/lib_commands_XREADGROUP.XReadGroupOptions.html#COUNT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XREADGROUP.XReadGroupOptions"},{"id":2037,"kind":1024,"name":"BLOCK","url":"interfaces/lib_commands_XREADGROUP.XReadGroupOptions.html#BLOCK","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XREADGROUP.XReadGroupOptions"},{"id":2038,"kind":1024,"name":"NOACK","url":"interfaces/lib_commands_XREADGROUP.XReadGroupOptions.html#NOACK","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/XREADGROUP.XReadGroupOptions"},{"id":2039,"kind":64,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XREADGROUP.html#FIRST_KEY_INDEX","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XREADGROUP"},{"id":2040,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_XREADGROUP.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XREADGROUP"},{"id":2041,"kind":2,"name":"lib/commands/XREVRANGE","url":"modules/lib_commands_XREVRANGE.html","classes":"tsd-kind-module"},{"id":2042,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XREVRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XREVRANGE"},{"id":2043,"kind":2,"name":"lib/commands/XTRIM","url":"modules/lib_commands_XTRIM.html","classes":"tsd-kind-module"},{"id":2044,"kind":64,"name":"transformArguments","url":"modules/lib_commands_XTRIM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XTRIM"},{"id":2045,"kind":64,"name":"transformReply","url":"modules/lib_commands_XTRIM.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/XTRIM"},{"id":2046,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XTRIM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/XTRIM"},{"id":2047,"kind":2,"name":"lib/commands/ZADD","url":"modules/lib_commands_ZADD.html","classes":"tsd-kind-module"},{"id":2048,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZADD"},{"id":2049,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZADD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZADD"},{"id":2050,"kind":2,"name":"lib/commands/ZCARD","url":"modules/lib_commands_ZCARD.html","classes":"tsd-kind-module"},{"id":2051,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZCARD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZCARD"},{"id":2052,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZCARD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZCARD"},{"id":2053,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZCARD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZCARD"},{"id":2054,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZCARD.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZCARD"},{"id":2055,"kind":2,"name":"lib/commands/ZCOUNT","url":"modules/lib_commands_ZCOUNT.html","classes":"tsd-kind-module"},{"id":2056,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZCOUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZCOUNT"},{"id":2057,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZCOUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZCOUNT"},{"id":2058,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZCOUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZCOUNT"},{"id":2059,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZCOUNT.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZCOUNT"},{"id":2060,"kind":2,"name":"lib/commands/ZDIFF","url":"modules/lib_commands_ZDIFF.html","classes":"tsd-kind-module"},{"id":2061,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZDIFF.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZDIFF"},{"id":2062,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZDIFF.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZDIFF"},{"id":2063,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZDIFF.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZDIFF"},{"id":2064,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZDIFF.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZDIFF"},{"id":2065,"kind":2,"name":"lib/commands/ZDIFFSTORE","url":"modules/lib_commands_ZDIFFSTORE.html","classes":"tsd-kind-module"},{"id":2066,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZDIFFSTORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZDIFFSTORE"},{"id":2067,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZDIFFSTORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZDIFFSTORE"},{"id":2068,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZDIFFSTORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZDIFFSTORE"},{"id":2069,"kind":2,"name":"lib/commands/ZDIFF_WITHSCORES","url":"modules/lib_commands_ZDIFF_WITHSCORES.html","classes":"tsd-kind-module"},{"id":2070,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZDIFF_WITHSCORES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZDIFF_WITHSCORES"},{"id":2071,"kind":2,"name":"lib/commands/ZINCRBY","url":"modules/lib_commands_ZINCRBY.html","classes":"tsd-kind-module"},{"id":2072,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZINCRBY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZINCRBY"},{"id":2073,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZINCRBY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZINCRBY"},{"id":2074,"kind":2,"name":"lib/commands/ZINTER","url":"modules/lib_commands_ZINTER.html","classes":"tsd-kind-module"},{"id":2075,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZINTER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZINTER"},{"id":2076,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZINTER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZINTER"},{"id":2077,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZINTER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZINTER"},{"id":2078,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZINTER.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZINTER"},{"id":2079,"kind":2,"name":"lib/commands/ZINTERSTORE","url":"modules/lib_commands_ZINTERSTORE.html","classes":"tsd-kind-module"},{"id":2080,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZINTERSTORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZINTERSTORE"},{"id":2081,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZINTERSTORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZINTERSTORE"},{"id":2082,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZINTERSTORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZINTERSTORE"},{"id":2083,"kind":2,"name":"lib/commands/ZINTER_WITHSCORES","url":"modules/lib_commands_ZINTER_WITHSCORES.html","classes":"tsd-kind-module"},{"id":2084,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZINTER_WITHSCORES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZINTER_WITHSCORES"},{"id":2085,"kind":2,"name":"lib/commands/ZLEXCOUNT","url":"modules/lib_commands_ZLEXCOUNT.html","classes":"tsd-kind-module"},{"id":2086,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZLEXCOUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZLEXCOUNT"},{"id":2087,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZLEXCOUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZLEXCOUNT"},{"id":2088,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZLEXCOUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZLEXCOUNT"},{"id":2089,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZLEXCOUNT.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZLEXCOUNT"},{"id":2090,"kind":2,"name":"lib/commands/ZMSCORE","url":"modules/lib_commands_ZMSCORE.html","classes":"tsd-kind-module"},{"id":2091,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZMSCORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZMSCORE"},{"id":2092,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZMSCORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZMSCORE"},{"id":2093,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZMSCORE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZMSCORE"},{"id":2094,"kind":2,"name":"lib/commands/ZPOPMAX","url":"modules/lib_commands_ZPOPMAX.html","classes":"tsd-kind-module"},{"id":2095,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZPOPMAX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZPOPMAX"},{"id":2096,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZPOPMAX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZPOPMAX"},{"id":2097,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZPOPMAX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZPOPMAX"},{"id":2098,"kind":2,"name":"lib/commands/ZPOPMAX_COUNT","url":"modules/lib_commands_ZPOPMAX_COUNT.html","classes":"tsd-kind-module"},{"id":2099,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZPOPMAX_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZPOPMAX_COUNT"},{"id":2100,"kind":2,"name":"lib/commands/ZPOPMIN","url":"modules/lib_commands_ZPOPMIN.html","classes":"tsd-kind-module"},{"id":2101,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZPOPMIN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZPOPMIN"},{"id":2102,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZPOPMIN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZPOPMIN"},{"id":2103,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZPOPMIN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZPOPMIN"},{"id":2104,"kind":2,"name":"lib/commands/ZPOPMIN_COUNT","url":"modules/lib_commands_ZPOPMIN_COUNT.html","classes":"tsd-kind-module"},{"id":2105,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZPOPMIN_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZPOPMIN_COUNT"},{"id":2106,"kind":2,"name":"lib/commands/ZRANDMEMBER","url":"modules/lib_commands_ZRANDMEMBER.html","classes":"tsd-kind-module"},{"id":2107,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANDMEMBER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER"},{"id":2108,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZRANDMEMBER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER"},{"id":2109,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANDMEMBER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER"},{"id":2110,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANDMEMBER.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER"},{"id":2111,"kind":2,"name":"lib/commands/ZRANDMEMBER_COUNT","url":"modules/lib_commands_ZRANDMEMBER_COUNT.html","classes":"tsd-kind-module"},{"id":2112,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANDMEMBER_COUNT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER_COUNT"},{"id":2113,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZRANDMEMBER_COUNT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER_COUNT"},{"id":2114,"kind":2,"name":"lib/commands/ZRANDMEMBER_COUNT_WITHSCORES","url":"modules/lib_commands_ZRANDMEMBER_COUNT_WITHSCORES.html","classes":"tsd-kind-module"},{"id":2115,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANDMEMBER_COUNT_WITHSCORES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER_COUNT_WITHSCORES"},{"id":2116,"kind":2,"name":"lib/commands/ZRANGE","url":"modules/lib_commands_ZRANGE.html","classes":"tsd-kind-module"},{"id":2117,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGE"},{"id":2118,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZRANGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGE"},{"id":2119,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANGE"},{"id":2120,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANGE"},{"id":2121,"kind":2,"name":"lib/commands/ZRANGEBYLEX","url":"modules/lib_commands_ZRANGEBYLEX.html","classes":"tsd-kind-module"},{"id":2122,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANGEBYLEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYLEX"},{"id":2123,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZRANGEBYLEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYLEX"},{"id":2124,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANGEBYLEX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYLEX"},{"id":2125,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANGEBYLEX.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYLEX"},{"id":2126,"kind":256,"name":"ZRangeByLexOptions","url":"interfaces/lib_commands_ZRANGEBYLEX.ZRangeByLexOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYLEX"},{"id":2127,"kind":1024,"name":"LIMIT","url":"interfaces/lib_commands_ZRANGEBYLEX.ZRangeByLexOptions.html#LIMIT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/ZRANGEBYLEX.ZRangeByLexOptions"},{"id":2128,"kind":65536,"name":"__type","url":"interfaces/lib_commands_ZRANGEBYLEX.ZRangeByLexOptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"lib/commands/ZRANGEBYLEX.ZRangeByLexOptions"},{"id":2129,"kind":1024,"name":"offset","url":"interfaces/lib_commands_ZRANGEBYLEX.ZRangeByLexOptions.html#__type.offset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/ZRANGEBYLEX.ZRangeByLexOptions.__type"},{"id":2130,"kind":1024,"name":"count","url":"interfaces/lib_commands_ZRANGEBYLEX.ZRangeByLexOptions.html#__type.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/ZRANGEBYLEX.ZRangeByLexOptions.__type"},{"id":2131,"kind":2,"name":"lib/commands/ZRANGEBYSCORE","url":"modules/lib_commands_ZRANGEBYSCORE.html","classes":"tsd-kind-module"},{"id":2132,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANGEBYSCORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE"},{"id":2133,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZRANGEBYSCORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE"},{"id":2134,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANGEBYSCORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE"},{"id":2135,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANGEBYSCORE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE"},{"id":2136,"kind":256,"name":"ZRangeByScoreOptions","url":"interfaces/lib_commands_ZRANGEBYSCORE.ZRangeByScoreOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE"},{"id":2137,"kind":1024,"name":"LIMIT","url":"interfaces/lib_commands_ZRANGEBYSCORE.ZRangeByScoreOptions.html#LIMIT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/ZRANGEBYSCORE.ZRangeByScoreOptions"},{"id":2138,"kind":65536,"name":"__type","url":"interfaces/lib_commands_ZRANGEBYSCORE.ZRangeByScoreOptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"lib/commands/ZRANGEBYSCORE.ZRangeByScoreOptions"},{"id":2139,"kind":1024,"name":"offset","url":"interfaces/lib_commands_ZRANGEBYSCORE.ZRangeByScoreOptions.html#__type.offset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/ZRANGEBYSCORE.ZRangeByScoreOptions.__type"},{"id":2140,"kind":1024,"name":"count","url":"interfaces/lib_commands_ZRANGEBYSCORE.ZRangeByScoreOptions.html#__type.count","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/ZRANGEBYSCORE.ZRangeByScoreOptions.__type"},{"id":2141,"kind":2,"name":"lib/commands/ZRANGEBYSCORE_WITHSCORES","url":"modules/lib_commands_ZRANGEBYSCORE_WITHSCORES.html","classes":"tsd-kind-module"},{"id":2142,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANGEBYSCORE_WITHSCORES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE_WITHSCORES"},{"id":2143,"kind":2,"name":"lib/commands/ZRANGESTORE","url":"modules/lib_commands_ZRANGESTORE.html","classes":"tsd-kind-module"},{"id":2144,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANGESTORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGESTORE"},{"id":2145,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZRANGESTORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGESTORE"},{"id":2146,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANGESTORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANGESTORE"},{"id":2147,"kind":2,"name":"lib/commands/ZRANGE_WITHSCORES","url":"modules/lib_commands_ZRANGE_WITHSCORES.html","classes":"tsd-kind-module"},{"id":2148,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANGE_WITHSCORES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANGE_WITHSCORES"},{"id":2149,"kind":2,"name":"lib/commands/ZRANK","url":"modules/lib_commands_ZRANK.html","classes":"tsd-kind-module"},{"id":2150,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZRANK.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANK"},{"id":2151,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZRANK.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZRANK"},{"id":2152,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANK.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANK"},{"id":2153,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANK.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZRANK"},{"id":2154,"kind":2,"name":"lib/commands/ZREM","url":"modules/lib_commands_ZREM.html","classes":"tsd-kind-module"},{"id":2155,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZREM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREM"},{"id":2156,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZREM.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREM"},{"id":2157,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZREM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZREM"},{"id":2158,"kind":2,"name":"lib/commands/ZREMRANGEBYLEX","url":"modules/lib_commands_ZREMRANGEBYLEX.html","classes":"tsd-kind-module"},{"id":2159,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZREMRANGEBYLEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYLEX"},{"id":2160,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZREMRANGEBYLEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYLEX"},{"id":2161,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZREMRANGEBYLEX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYLEX"},{"id":2162,"kind":2,"name":"lib/commands/ZREMRANGEBYRANK","url":"modules/lib_commands_ZREMRANGEBYRANK.html","classes":"tsd-kind-module"},{"id":2163,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZREMRANGEBYRANK.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYRANK"},{"id":2164,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZREMRANGEBYRANK.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYRANK"},{"id":2165,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZREMRANGEBYRANK.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYRANK"},{"id":2166,"kind":2,"name":"lib/commands/ZREMRANGEBYSCORE","url":"modules/lib_commands_ZREMRANGEBYSCORE.html","classes":"tsd-kind-module"},{"id":2167,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZREMRANGEBYSCORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYSCORE"},{"id":2168,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZREMRANGEBYSCORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYSCORE"},{"id":2169,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZREMRANGEBYSCORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZREMRANGEBYSCORE"},{"id":2170,"kind":2,"name":"lib/commands/ZREVRANK","url":"modules/lib_commands_ZREVRANK.html","classes":"tsd-kind-module"},{"id":2171,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZREVRANK.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREVRANK"},{"id":2172,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZREVRANK.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZREVRANK"},{"id":2173,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZREVRANK.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZREVRANK"},{"id":2174,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZREVRANK.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZREVRANK"},{"id":2175,"kind":2,"name":"lib/commands/ZSCAN","url":"modules/lib_commands_ZSCAN.html","classes":"tsd-kind-module"},{"id":2176,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZSCAN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZSCAN"},{"id":2177,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZSCAN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZSCAN"},{"id":2178,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZSCAN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZSCAN"},{"id":2179,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZSCAN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZSCAN"},{"id":2180,"kind":2,"name":"lib/commands/ZSCORE","url":"modules/lib_commands_ZSCORE.html","classes":"tsd-kind-module"},{"id":2181,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZSCORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZSCORE"},{"id":2182,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZSCORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZSCORE"},{"id":2183,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZSCORE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZSCORE"},{"id":2184,"kind":2,"name":"lib/commands/ZUNION","url":"modules/lib_commands_ZUNION.html","classes":"tsd-kind-module"},{"id":2185,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZUNION.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZUNION"},{"id":2186,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZUNION.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZUNION"},{"id":2187,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZUNION.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZUNION"},{"id":2188,"kind":32,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZUNION.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZUNION"},{"id":2189,"kind":2,"name":"lib/commands/ZUNIONSTORE","url":"modules/lib_commands_ZUNIONSTORE.html","classes":"tsd-kind-module"},{"id":2190,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZUNIONSTORE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZUNIONSTORE"},{"id":2191,"kind":64,"name":"transformReply","url":"modules/lib_commands_ZUNIONSTORE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZUNIONSTORE"},{"id":2192,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZUNIONSTORE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"lib/commands/ZUNIONSTORE"},{"id":2193,"kind":2,"name":"lib/commands/ZUNION_WITHSCORES","url":"modules/lib_commands_ZUNION_WITHSCORES.html","classes":"tsd-kind-module"},{"id":2194,"kind":64,"name":"transformArguments","url":"modules/lib_commands_ZUNION_WITHSCORES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/ZUNION_WITHSCORES"},{"id":2195,"kind":2,"name":"lib/commands/generic-transformers","url":"modules/lib_commands_generic_transformers.html","classes":"tsd-kind-module"},{"id":2196,"kind":64,"name":"transformReplyBoolean","url":"modules/lib_commands_generic_transformers.html#transformReplyBoolean","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2197,"kind":64,"name":"transformReplyBooleanArray","url":"modules/lib_commands_generic_transformers.html#transformReplyBooleanArray","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2198,"kind":64,"name":"pushScanArguments","url":"modules/lib_commands_generic_transformers.html#pushScanArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2199,"kind":64,"name":"transformReplyNumberInfinity","url":"modules/lib_commands_generic_transformers.html#transformReplyNumberInfinity","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2200,"kind":64,"name":"transformReplyNumberInfinityArray","url":"modules/lib_commands_generic_transformers.html#transformReplyNumberInfinityArray","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2201,"kind":64,"name":"transformReplyNumberInfinityNull","url":"modules/lib_commands_generic_transformers.html#transformReplyNumberInfinityNull","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2202,"kind":64,"name":"transformReplyNumberInfinityNullArray","url":"modules/lib_commands_generic_transformers.html#transformReplyNumberInfinityNullArray","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2203,"kind":64,"name":"transformArgumentNumberInfinity","url":"modules/lib_commands_generic_transformers.html#transformArgumentNumberInfinity","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2204,"kind":64,"name":"transformArgumentStringNumberInfinity","url":"modules/lib_commands_generic_transformers.html#transformArgumentStringNumberInfinity","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2205,"kind":64,"name":"transformReplyTuples","url":"modules/lib_commands_generic_transformers.html#transformReplyTuples","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2206,"kind":64,"name":"transformReplyStreamMessages","url":"modules/lib_commands_generic_transformers.html#transformReplyStreamMessages","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2207,"kind":64,"name":"transformReplyStreamsMessages","url":"modules/lib_commands_generic_transformers.html#transformReplyStreamsMessages","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2208,"kind":64,"name":"transformReplySortedSetWithScores","url":"modules/lib_commands_generic_transformers.html#transformReplySortedSetWithScores","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2209,"kind":64,"name":"pushGeoCountArgument","url":"modules/lib_commands_generic_transformers.html#pushGeoCountArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2210,"kind":64,"name":"pushGeoSearchArguments","url":"modules/lib_commands_generic_transformers.html#pushGeoSearchArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2211,"kind":64,"name":"transformGeoMembersWithReply","url":"modules/lib_commands_generic_transformers.html#transformGeoMembersWithReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2212,"kind":64,"name":"transformEXAT","url":"modules/lib_commands_generic_transformers.html#transformEXAT","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2213,"kind":64,"name":"transformPXAT","url":"modules/lib_commands_generic_transformers.html#transformPXAT","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2214,"kind":64,"name":"pushEvalArguments","url":"modules/lib_commands_generic_transformers.html#pushEvalArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2215,"kind":64,"name":"pushStringTuplesArguments","url":"modules/lib_commands_generic_transformers.html#pushStringTuplesArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2216,"kind":64,"name":"pushVerdictArguments","url":"modules/lib_commands_generic_transformers.html#pushVerdictArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2217,"kind":64,"name":"pushVerdictArgument","url":"modules/lib_commands_generic_transformers.html#pushVerdictArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2218,"kind":64,"name":"pushOptionalVerdictArgument","url":"modules/lib_commands_generic_transformers.html#pushOptionalVerdictArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2219,"kind":64,"name":"transformCommandReply","url":"modules/lib_commands_generic_transformers.html#transformCommandReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2220,"kind":4194304,"name":"BitValue","url":"modules/lib_commands_generic_transformers.html#BitValue","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2221,"kind":256,"name":"ScanOptions","url":"interfaces/lib_commands_generic_transformers.ScanOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2222,"kind":1024,"name":"MATCH","url":"interfaces/lib_commands_generic_transformers.ScanOptions.html#MATCH","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.ScanOptions"},{"id":2223,"kind":1024,"name":"COUNT","url":"interfaces/lib_commands_generic_transformers.ScanOptions.html#COUNT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.ScanOptions"},{"id":2224,"kind":256,"name":"TuplesObject","url":"interfaces/lib_commands_generic_transformers.TuplesObject.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2225,"kind":256,"name":"StreamMessageReply","url":"interfaces/lib_commands_generic_transformers.StreamMessageReply.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2226,"kind":1024,"name":"id","url":"interfaces/lib_commands_generic_transformers.StreamMessageReply.html#id","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.StreamMessageReply"},{"id":2227,"kind":1024,"name":"message","url":"interfaces/lib_commands_generic_transformers.StreamMessageReply.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.StreamMessageReply"},{"id":2228,"kind":4194304,"name":"StreamMessagesReply","url":"modules/lib_commands_generic_transformers.html#StreamMessagesReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2229,"kind":4194304,"name":"StreamsMessagesReply","url":"modules/lib_commands_generic_transformers.html#StreamsMessagesReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2230,"kind":256,"name":"ZMember","url":"interfaces/lib_commands_generic_transformers.ZMember.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2231,"kind":1024,"name":"score","url":"interfaces/lib_commands_generic_transformers.ZMember.html#score","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.ZMember"},{"id":2232,"kind":1024,"name":"value","url":"interfaces/lib_commands_generic_transformers.ZMember.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.ZMember"},{"id":2233,"kind":4194304,"name":"GeoUnits","url":"modules/lib_commands_generic_transformers.html#GeoUnits","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2234,"kind":256,"name":"GeoCoordinates","url":"interfaces/lib_commands_generic_transformers.GeoCoordinates.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2235,"kind":1024,"name":"longitude","url":"interfaces/lib_commands_generic_transformers.GeoCoordinates.html#longitude","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoCoordinates"},{"id":2236,"kind":1024,"name":"latitude","url":"interfaces/lib_commands_generic_transformers.GeoCoordinates.html#latitude","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoCoordinates"},{"id":2237,"kind":4194304,"name":"GeoSearchFrom","url":"modules/lib_commands_generic_transformers.html#GeoSearchFrom","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2238,"kind":4194304,"name":"GeoSearchBy","url":"modules/lib_commands_generic_transformers.html#GeoSearchBy","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2239,"kind":256,"name":"GeoSearchOptions","url":"interfaces/lib_commands_generic_transformers.GeoSearchOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2240,"kind":1024,"name":"SORT","url":"interfaces/lib_commands_generic_transformers.GeoSearchOptions.html#SORT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoSearchOptions"},{"id":2241,"kind":1024,"name":"COUNT","url":"interfaces/lib_commands_generic_transformers.GeoSearchOptions.html#COUNT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoSearchOptions"},{"id":2242,"kind":8,"name":"GeoReplyWith","url":"enums/lib_commands_generic_transformers.GeoReplyWith.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2243,"kind":16,"name":"DISTANCE","url":"enums/lib_commands_generic_transformers.GeoReplyWith.html#DISTANCE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.GeoReplyWith"},{"id":2244,"kind":16,"name":"HASH","url":"enums/lib_commands_generic_transformers.GeoReplyWith.html#HASH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.GeoReplyWith"},{"id":2245,"kind":16,"name":"COORDINATES","url":"enums/lib_commands_generic_transformers.GeoReplyWith.html#COORDINATES","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.GeoReplyWith"},{"id":2246,"kind":256,"name":"GeoReplyWithMember","url":"interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2247,"kind":1024,"name":"member","url":"interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html#member","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoReplyWithMember"},{"id":2248,"kind":1024,"name":"distance","url":"interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html#distance","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoReplyWithMember"},{"id":2249,"kind":1024,"name":"hash","url":"interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html#hash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoReplyWithMember"},{"id":2250,"kind":1024,"name":"coordinates","url":"interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html#coordinates","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoReplyWithMember"},{"id":2251,"kind":65536,"name":"__type","url":"interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.GeoReplyWithMember"},{"id":2252,"kind":1024,"name":"longitude","url":"interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html#__type.longitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.GeoReplyWithMember.__type"},{"id":2253,"kind":1024,"name":"latitude","url":"interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html#__type.latitude","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.GeoReplyWithMember.__type"},{"id":2254,"kind":256,"name":"EvalOptions","url":"interfaces/lib_commands_generic_transformers.EvalOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2255,"kind":1024,"name":"keys","url":"interfaces/lib_commands_generic_transformers.EvalOptions.html#keys","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.EvalOptions"},{"id":2256,"kind":1024,"name":"arguments","url":"interfaces/lib_commands_generic_transformers.EvalOptions.html#arguments","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands/generic-transformers.EvalOptions"},{"id":2257,"kind":4194304,"name":"StringTuplesArguments","url":"modules/lib_commands_generic_transformers.html#StringTuplesArguments","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2258,"kind":8,"name":"CommandFlags","url":"enums/lib_commands_generic_transformers.CommandFlags.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2259,"kind":16,"name":"WRITE","url":"enums/lib_commands_generic_transformers.CommandFlags.html#WRITE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2260,"kind":16,"name":"READONLY","url":"enums/lib_commands_generic_transformers.CommandFlags.html#READONLY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2261,"kind":16,"name":"DENYOOM","url":"enums/lib_commands_generic_transformers.CommandFlags.html#DENYOOM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2262,"kind":16,"name":"ADMIN","url":"enums/lib_commands_generic_transformers.CommandFlags.html#ADMIN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2263,"kind":16,"name":"PUBSUB","url":"enums/lib_commands_generic_transformers.CommandFlags.html#PUBSUB","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2264,"kind":16,"name":"NOSCRIPT","url":"enums/lib_commands_generic_transformers.CommandFlags.html#NOSCRIPT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2265,"kind":16,"name":"RANDOM","url":"enums/lib_commands_generic_transformers.CommandFlags.html#RANDOM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2266,"kind":16,"name":"SORT_FOR_SCRIPT","url":"enums/lib_commands_generic_transformers.CommandFlags.html#SORT_FOR_SCRIPT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2267,"kind":16,"name":"LOADING","url":"enums/lib_commands_generic_transformers.CommandFlags.html#LOADING","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2268,"kind":16,"name":"STALE","url":"enums/lib_commands_generic_transformers.CommandFlags.html#STALE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2269,"kind":16,"name":"SKIP_MONITOR","url":"enums/lib_commands_generic_transformers.CommandFlags.html#SKIP_MONITOR","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2270,"kind":16,"name":"ASKING","url":"enums/lib_commands_generic_transformers.CommandFlags.html#ASKING","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2271,"kind":16,"name":"FAST","url":"enums/lib_commands_generic_transformers.CommandFlags.html#FAST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2272,"kind":16,"name":"MOVABLEKEYS","url":"enums/lib_commands_generic_transformers.CommandFlags.html#MOVABLEKEYS","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandFlags"},{"id":2273,"kind":8,"name":"CommandCategories","url":"enums/lib_commands_generic_transformers.CommandCategories.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2274,"kind":16,"name":"KEYSPACE","url":"enums/lib_commands_generic_transformers.CommandCategories.html#KEYSPACE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2275,"kind":16,"name":"READ","url":"enums/lib_commands_generic_transformers.CommandCategories.html#READ","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2276,"kind":16,"name":"WRITE","url":"enums/lib_commands_generic_transformers.CommandCategories.html#WRITE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2277,"kind":16,"name":"SET","url":"enums/lib_commands_generic_transformers.CommandCategories.html#SET","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2278,"kind":16,"name":"SORTEDSET","url":"enums/lib_commands_generic_transformers.CommandCategories.html#SORTEDSET","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2279,"kind":16,"name":"LIST","url":"enums/lib_commands_generic_transformers.CommandCategories.html#LIST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2280,"kind":16,"name":"HASH","url":"enums/lib_commands_generic_transformers.CommandCategories.html#HASH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2281,"kind":16,"name":"STRING","url":"enums/lib_commands_generic_transformers.CommandCategories.html#STRING","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2282,"kind":16,"name":"BITMAP","url":"enums/lib_commands_generic_transformers.CommandCategories.html#BITMAP","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2283,"kind":16,"name":"HYPERLOGLOG","url":"enums/lib_commands_generic_transformers.CommandCategories.html#HYPERLOGLOG","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2284,"kind":16,"name":"GEO","url":"enums/lib_commands_generic_transformers.CommandCategories.html#GEO","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2285,"kind":16,"name":"STREAM","url":"enums/lib_commands_generic_transformers.CommandCategories.html#STREAM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2286,"kind":16,"name":"PUBSUB","url":"enums/lib_commands_generic_transformers.CommandCategories.html#PUBSUB","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2287,"kind":16,"name":"ADMIN","url":"enums/lib_commands_generic_transformers.CommandCategories.html#ADMIN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2288,"kind":16,"name":"FAST","url":"enums/lib_commands_generic_transformers.CommandCategories.html#FAST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2289,"kind":16,"name":"SLOW","url":"enums/lib_commands_generic_transformers.CommandCategories.html#SLOW","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2290,"kind":16,"name":"BLOCKING","url":"enums/lib_commands_generic_transformers.CommandCategories.html#BLOCKING","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2291,"kind":16,"name":"DANGEROUS","url":"enums/lib_commands_generic_transformers.CommandCategories.html#DANGEROUS","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2292,"kind":16,"name":"CONNECTION","url":"enums/lib_commands_generic_transformers.CommandCategories.html#CONNECTION","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2293,"kind":16,"name":"TRANSACTION","url":"enums/lib_commands_generic_transformers.CommandCategories.html#TRANSACTION","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2294,"kind":16,"name":"SCRIPTING","url":"enums/lib_commands_generic_transformers.CommandCategories.html#SCRIPTING","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"lib/commands/generic-transformers.CommandCategories"},{"id":2295,"kind":4194304,"name":"CommandRawReply","url":"modules/lib_commands_generic_transformers.html#CommandRawReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2296,"kind":4194304,"name":"CommandReply","url":"modules/lib_commands_generic_transformers.html#CommandReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands/generic-transformers"},{"id":2297,"kind":65536,"name":"__type","url":"modules/lib_commands_generic_transformers.html#CommandReply.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"lib/commands/generic-transformers.CommandReply"},{"id":2298,"kind":1024,"name":"name","url":"modules/lib_commands_generic_transformers.html#CommandReply.__type.name","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.CommandReply.__type"},{"id":2299,"kind":1024,"name":"arity","url":"modules/lib_commands_generic_transformers.html#CommandReply.__type.arity","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.CommandReply.__type"},{"id":2300,"kind":1024,"name":"flags","url":"modules/lib_commands_generic_transformers.html#CommandReply.__type.flags","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.CommandReply.__type"},{"id":2301,"kind":1024,"name":"firstKeyIndex","url":"modules/lib_commands_generic_transformers.html#CommandReply.__type.firstKeyIndex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.CommandReply.__type"},{"id":2302,"kind":1024,"name":"lastKeyIndex","url":"modules/lib_commands_generic_transformers.html#CommandReply.__type.lastKeyIndex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.CommandReply.__type"},{"id":2303,"kind":1024,"name":"step","url":"modules/lib_commands_generic_transformers.html#CommandReply.__type.step","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.CommandReply.__type"},{"id":2304,"kind":1024,"name":"categories","url":"modules/lib_commands_generic_transformers.html#CommandReply.__type.categories","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"lib/commands/generic-transformers.CommandReply.__type"},{"id":2305,"kind":2,"name":"lib/commands","url":"modules/lib_commands.html","classes":"tsd-kind-module"},{"id":2306,"kind":4194304,"name":"RedisCommandRawReply","url":"modules/lib_commands.html#RedisCommandRawReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands"},{"id":2307,"kind":4194304,"name":"RedisCommandArguments","url":"modules/lib_commands.html#RedisCommandArguments","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands"},{"id":2308,"kind":256,"name":"RedisCommand","url":"interfaces/lib_commands.RedisCommand.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands"},{"id":2309,"kind":1024,"name":"FIRST_KEY_INDEX","url":"interfaces/lib_commands.RedisCommand.html#FIRST_KEY_INDEX","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands.RedisCommand"},{"id":2310,"kind":1024,"name":"IS_READ_ONLY","url":"interfaces/lib_commands.RedisCommand.html#IS_READ_ONLY","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands.RedisCommand"},{"id":2311,"kind":2048,"name":"transformArguments","url":"interfaces/lib_commands.RedisCommand.html#transformArguments","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"lib/commands.RedisCommand"},{"id":2312,"kind":1024,"name":"BUFFER_MODE","url":"interfaces/lib_commands.RedisCommand.html#BUFFER_MODE","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands.RedisCommand"},{"id":2313,"kind":2048,"name":"transformReply","url":"interfaces/lib_commands.RedisCommand.html#transformReply","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"lib/commands.RedisCommand"},{"id":2314,"kind":4194304,"name":"RedisCommandReply","url":"modules/lib_commands.html#RedisCommandReply","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/commands"},{"id":2315,"kind":256,"name":"RedisCommands","url":"interfaces/lib_commands.RedisCommands.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands"},{"id":2316,"kind":256,"name":"RedisModule","url":"interfaces/lib_commands.RedisModule.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands"},{"id":2317,"kind":256,"name":"RedisModules","url":"interfaces/lib_commands.RedisModules.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands"},{"id":2318,"kind":4194304,"name":"RedisScript","url":"modules/lib_commands.html#RedisScript","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"lib/commands"},{"id":2319,"kind":256,"name":"RedisScripts","url":"interfaces/lib_commands.RedisScripts.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/commands"},{"id":2320,"kind":256,"name":"RedisPlugins","url":"interfaces/lib_commands.RedisPlugins.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter","parent":"lib/commands"},{"id":2321,"kind":1024,"name":"modules","url":"interfaces/lib_commands.RedisPlugins.html#modules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands.RedisPlugins"},{"id":2322,"kind":1024,"name":"scripts","url":"interfaces/lib_commands.RedisPlugins.html#scripts","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/commands.RedisPlugins"},{"id":2323,"kind":2,"name":"lib/errors","url":"modules/lib_errors.html","classes":"tsd-kind-module"},{"id":2324,"kind":128,"name":"AbortError","url":"classes/lib_errors.AbortError.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/errors"},{"id":2325,"kind":65536,"name":"__type","url":"classes/lib_errors.AbortError.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/errors.AbortError"},{"id":2326,"kind":512,"name":"constructor","url":"classes/lib_errors.AbortError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/errors.AbortError"},{"id":2327,"kind":128,"name":"WatchError","url":"classes/lib_errors.WatchError.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/errors"},{"id":2328,"kind":65536,"name":"__type","url":"classes/lib_errors.WatchError.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/errors.WatchError"},{"id":2329,"kind":512,"name":"constructor","url":"classes/lib_errors.WatchError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/errors.WatchError"},{"id":2330,"kind":128,"name":"ConnectionTimeoutError","url":"classes/lib_errors.ConnectionTimeoutError.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/errors"},{"id":2331,"kind":65536,"name":"__type","url":"classes/lib_errors.ConnectionTimeoutError.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/errors.ConnectionTimeoutError"},{"id":2332,"kind":512,"name":"constructor","url":"classes/lib_errors.ConnectionTimeoutError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/errors.ConnectionTimeoutError"},{"id":2333,"kind":128,"name":"ClientClosedError","url":"classes/lib_errors.ClientClosedError.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/errors"},{"id":2334,"kind":65536,"name":"__type","url":"classes/lib_errors.ClientClosedError.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/errors.ClientClosedError"},{"id":2335,"kind":512,"name":"constructor","url":"classes/lib_errors.ClientClosedError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/errors.ClientClosedError"},{"id":2336,"kind":128,"name":"DisconnectsClientError","url":"classes/lib_errors.DisconnectsClientError.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/errors"},{"id":2337,"kind":65536,"name":"__type","url":"classes/lib_errors.DisconnectsClientError.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/errors.DisconnectsClientError"},{"id":2338,"kind":512,"name":"constructor","url":"classes/lib_errors.DisconnectsClientError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/errors.DisconnectsClientError"},{"id":2339,"kind":128,"name":"SocketClosedUnexpectedlyError","url":"classes/lib_errors.SocketClosedUnexpectedlyError.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/errors"},{"id":2340,"kind":65536,"name":"__type","url":"classes/lib_errors.SocketClosedUnexpectedlyError.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/errors.SocketClosedUnexpectedlyError"},{"id":2341,"kind":512,"name":"constructor","url":"classes/lib_errors.SocketClosedUnexpectedlyError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/errors.SocketClosedUnexpectedlyError"},{"id":2342,"kind":128,"name":"AuthError","url":"classes/lib_errors.AuthError.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/errors"},{"id":2343,"kind":65536,"name":"__type","url":"classes/lib_errors.AuthError.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"lib/errors.AuthError"},{"id":2344,"kind":512,"name":"constructor","url":"classes/lib_errors.AuthError.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"lib/errors.AuthError"},{"id":2345,"kind":2,"name":"lib/lua-script","url":"modules/lib_lua_script.html","classes":"tsd-kind-module"},{"id":2346,"kind":64,"name":"defineScript","url":"modules/lib_lua_script.html#defineScript","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/lua-script"},{"id":2347,"kind":64,"name":"scriptSha1","url":"modules/lib_lua_script.html#scriptSha1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/lua-script"},{"id":2348,"kind":256,"name":"RedisScriptConfig","url":"interfaces/lib_lua_script.RedisScriptConfig.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/lua-script"},{"id":2349,"kind":1024,"name":"SCRIPT","url":"interfaces/lib_lua_script.RedisScriptConfig.html#SCRIPT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/lua-script.RedisScriptConfig"},{"id":2350,"kind":1024,"name":"NUMBER_OF_KEYS","url":"interfaces/lib_lua_script.RedisScriptConfig.html#NUMBER_OF_KEYS","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/lua-script.RedisScriptConfig"},{"id":2351,"kind":1024,"name":"FIRST_KEY_INDEX","url":"interfaces/lib_lua_script.RedisScriptConfig.html#FIRST_KEY_INDEX","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/lua-script.RedisScriptConfig"},{"id":2352,"kind":1024,"name":"IS_READ_ONLY","url":"interfaces/lib_lua_script.RedisScriptConfig.html#IS_READ_ONLY","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/lua-script.RedisScriptConfig"},{"id":2353,"kind":2048,"name":"transformArguments","url":"interfaces/lib_lua_script.RedisScriptConfig.html#transformArguments","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited","parent":"lib/lua-script.RedisScriptConfig"},{"id":2354,"kind":1024,"name":"BUFFER_MODE","url":"interfaces/lib_lua_script.RedisScriptConfig.html#BUFFER_MODE","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"lib/lua-script.RedisScriptConfig"},{"id":2355,"kind":2048,"name":"transformReply","url":"interfaces/lib_lua_script.RedisScriptConfig.html#transformReply","classes":"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited","parent":"lib/lua-script.RedisScriptConfig"},{"id":2356,"kind":256,"name":"SHA1","url":"interfaces/lib_lua_script.SHA1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/lua-script"},{"id":2357,"kind":1024,"name":"SHA1","url":"interfaces/lib_lua_script.SHA1.html#SHA1","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/lua-script.SHA1"},{"id":2358,"kind":2,"name":"lib/multi-command","url":"modules/lib_multi_command.html","classes":"tsd-kind-module"},{"id":2359,"kind":256,"name":"RedisMultiQueuedCommand","url":"interfaces/lib_multi_command.RedisMultiQueuedCommand.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"lib/multi-command"},{"id":2360,"kind":1024,"name":"args","url":"interfaces/lib_multi_command.RedisMultiQueuedCommand.html#args","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/multi-command.RedisMultiQueuedCommand"},{"id":2361,"kind":1024,"name":"transformReply","url":"interfaces/lib_multi_command.RedisMultiQueuedCommand.html#transformReply","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"lib/multi-command.RedisMultiQueuedCommand"},{"id":2362,"kind":65536,"name":"__type","url":"interfaces/lib_multi_command.RedisMultiQueuedCommand.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"lib/multi-command.RedisMultiQueuedCommand"},{"id":2363,"kind":128,"name":"default","url":"classes/lib_multi_command.default.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"lib/multi-command"},{"id":2364,"kind":2048,"name":"generateChainId","url":"classes/lib_multi_command.default.html#generateChainId","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"lib/multi-command.default"},{"id":2365,"kind":512,"name":"constructor","url":"classes/lib_multi_command.default.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"lib/multi-command.default"},{"id":2366,"kind":1024,"name":"queue","url":"classes/lib_multi_command.default.html#queue","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/multi-command.default"},{"id":2367,"kind":1024,"name":"scriptsInUse","url":"classes/lib_multi_command.default.html#scriptsInUse","classes":"tsd-kind-property tsd-parent-kind-class","parent":"lib/multi-command.default"},{"id":2368,"kind":2048,"name":"addCommand","url":"classes/lib_multi_command.default.html#addCommand","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/multi-command.default"},{"id":2369,"kind":2048,"name":"addScript","url":"classes/lib_multi_command.default.html#addScript","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/multi-command.default"},{"id":2370,"kind":2048,"name":"exec","url":"classes/lib_multi_command.default.html#exec","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/multi-command.default"},{"id":2371,"kind":2048,"name":"handleExecReplies","url":"classes/lib_multi_command.default.html#handleExecReplies","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/multi-command.default"},{"id":2372,"kind":2048,"name":"transformReplies","url":"classes/lib_multi_command.default.html#transformReplies","classes":"tsd-kind-method tsd-parent-kind-class","parent":"lib/multi-command.default"},{"id":2373,"kind":2,"name":"lib/ts-declarations/cluster-key-slot","url":"modules/lib_ts_declarations_cluster_key_slot.html","classes":"tsd-kind-module"},{"id":2374,"kind":64,"name":"default","url":"modules/lib_ts_declarations_cluster_key_slot.html#default","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/ts-declarations/cluster-key-slot"},{"id":2375,"kind":2,"name":"lib/utils","url":"modules/lib_utils.html","classes":"tsd-kind-module"},{"id":2376,"kind":64,"name":"promiseTimeout","url":"modules/lib_utils.html#promiseTimeout","classes":"tsd-kind-function tsd-parent-kind-module","parent":"lib/utils"},{"id":2377,"kind":16777216,"name":"RedisClientType","url":"modules/index.html#RedisClientType","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2378,"kind":16777216,"name":"RedisClientOptions","url":"modules/index.html#RedisClientOptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2379,"kind":16777216,"name":"RedisModules","url":"modules/index.html#RedisModules","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2380,"kind":16777216,"name":"RedisScripts","url":"modules/index.html#RedisScripts","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2381,"kind":16777216,"name":"RedisClusterType","url":"modules/index.html#RedisClusterType","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2382,"kind":16777216,"name":"RedisClusterOptions","url":"modules/index.html#RedisClusterOptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2383,"kind":16777216,"name":"defineScript","url":"modules/index.html#defineScript","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2384,"kind":16777216,"name":"AbortError","url":"modules/index.html#AbortError","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2385,"kind":16777216,"name":"WatchError","url":"modules/index.html#WatchError","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2386,"kind":16777216,"name":"ConnectionTimeoutError","url":"modules/index.html#ConnectionTimeoutError","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2387,"kind":16777216,"name":"ClientClosedError","url":"modules/index.html#ClientClosedError","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2388,"kind":16777216,"name":"DisconnectsClientError","url":"modules/index.html#DisconnectsClientError","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2389,"kind":16777216,"name":"SocketClosedUnexpectedlyError","url":"modules/index.html#SocketClosedUnexpectedlyError","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2390,"kind":16777216,"name":"AuthError","url":"modules/index.html#AuthError","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":2391,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_CONFIG_GET.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/CONFIG_GET"},{"id":2392,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_COPY.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/COPY"},{"id":2393,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_EXISTS.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/EXISTS"},{"id":2394,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_EXPIRE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/EXPIRE"},{"id":2395,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_EXPIREAT.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/EXPIREAT"},{"id":2396,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GEOSEARCH_WITH.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/GEOSEARCH_WITH"},{"id":2397,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_GEOSEARCH_WITH.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/GEOSEARCH_WITH"},{"id":2398,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_GEOSEARCH_WITH.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/GEOSEARCH_WITH"},{"id":2399,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_GET_BUFFER.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/GET_BUFFER"},{"id":2400,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_GET_BUFFER.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/GET_BUFFER"},{"id":2401,"kind":16777216,"name":"transformArguments","url":"modules/lib_commands_GET_BUFFER.html#transformArguments","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/GET_BUFFER"},{"id":2402,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_HEXISTS.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/HEXISTS"},{"id":2403,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_HGETALL.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/HGETALL"},{"id":2404,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HRANDFIELD_COUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD_COUNT"},{"id":2405,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_HRANDFIELD_COUNT_WITHVALUES.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD_COUNT_WITHVALUES"},{"id":2406,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_HRANDFIELD_COUNT_WITHVALUES.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/HRANDFIELD_COUNT_WITHVALUES"},{"id":2407,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_HSETNX.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/HSETNX"},{"id":2408,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_LPOS_COUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/LPOS_COUNT"},{"id":2409,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_LPOS_COUNT.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/LPOS_COUNT"},{"id":2410,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_MOVE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/MOVE"},{"id":2411,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_MSETNX.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/MSETNX"},{"id":2412,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_PERSIST.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/PERSIST"},{"id":2413,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_PEXPIRE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/PEXPIRE"},{"id":2414,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_PEXPIREAT.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/PEXPIREAT"},{"id":2415,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_PFADD.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/PFADD"},{"id":2416,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_RENAMENX.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/RENAMENX"},{"id":2417,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_SCRIPT_EXISTS.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/SCRIPT_EXISTS"},{"id":2418,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_SETNX.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/SETNX"},{"id":2419,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_SISMEMBER.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/SISMEMBER"},{"id":2420,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_SMISMEMBER.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/SMISMEMBER"},{"id":2421,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_SMOVE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/SMOVE"},{"id":2422,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_SRANDMEMBER_COUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/SRANDMEMBER_COUNT"},{"id":2423,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XAUTOCLAIM_JUSTID.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XAUTOCLAIM_JUSTID"},{"id":2424,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_XCLAIM.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XCLAIM"},{"id":2425,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_XCLAIM_JUSTID.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XCLAIM_JUSTID"},{"id":2426,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_XGROUP_CREATECONSUMER.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XGROUP_CREATECONSUMER"},{"id":2427,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_XGROUP_DESTROY.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XGROUP_DESTROY"},{"id":2428,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_XPENDING_RANGE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XPENDING_RANGE"},{"id":2429,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_XRANGE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XRANGE"},{"id":2430,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_XREAD.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XREAD"},{"id":2431,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_XREADGROUP.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XREADGROUP"},{"id":2432,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_XREVRANGE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/XREVRANGE"},{"id":2433,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZADD.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZADD"},{"id":2434,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZDIFF_WITHSCORES.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZDIFF_WITHSCORES"},{"id":2435,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZDIFF_WITHSCORES.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZDIFF_WITHSCORES"},{"id":2436,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZDIFF_WITHSCORES.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZDIFF_WITHSCORES"},{"id":2437,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZINCRBY.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZINCRBY"},{"id":2438,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZINTER_WITHSCORES.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZINTER_WITHSCORES"},{"id":2439,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZINTER_WITHSCORES.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZINTER_WITHSCORES"},{"id":2440,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZINTER_WITHSCORES.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZINTER_WITHSCORES"},{"id":2441,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZMSCORE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZMSCORE"},{"id":2442,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZPOPMAX_COUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZPOPMAX_COUNT"},{"id":2443,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZPOPMAX_COUNT.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZPOPMAX_COUNT"},{"id":2444,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZPOPMIN_COUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZPOPMIN_COUNT"},{"id":2445,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZPOPMIN_COUNT.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZPOPMIN_COUNT"},{"id":2446,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANDMEMBER_COUNT.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER_COUNT"},{"id":2447,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANDMEMBER_COUNT.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER_COUNT"},{"id":2448,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANDMEMBER_COUNT_WITHSCORES.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER_COUNT_WITHSCORES"},{"id":2449,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANDMEMBER_COUNT_WITHSCORES.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER_COUNT_WITHSCORES"},{"id":2450,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZRANDMEMBER_COUNT_WITHSCORES.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANDMEMBER_COUNT_WITHSCORES"},{"id":2451,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANGEBYSCORE_WITHSCORES.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE_WITHSCORES"},{"id":2452,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANGEBYSCORE_WITHSCORES.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE_WITHSCORES"},{"id":2453,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZRANGEBYSCORE_WITHSCORES.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANGEBYSCORE_WITHSCORES"},{"id":2454,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZRANGE_WITHSCORES.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANGE_WITHSCORES"},{"id":2455,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZRANGE_WITHSCORES.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANGE_WITHSCORES"},{"id":2456,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZRANGE_WITHSCORES.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZRANGE_WITHSCORES"},{"id":2457,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZSCORE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZSCORE"},{"id":2458,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/lib_commands_ZUNION_WITHSCORES.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZUNION_WITHSCORES"},{"id":2459,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/lib_commands_ZUNION_WITHSCORES.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZUNION_WITHSCORES"},{"id":2460,"kind":16777216,"name":"transformReply","url":"modules/lib_commands_ZUNION_WITHSCORES.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"lib/commands/ZUNION_WITHSCORES"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,49.031]],["parent/0",[]],["name/1",[1,74.217]],["parent/1",[0,4.867]],["name/2",[2,63.203]],["parent/2",[0,4.867]],["name/3",[3,74.217]],["parent/3",[0,4.867]],["name/4",[4,28.269,5,40.371]],["parent/4",[]],["name/5",[6,74.217]],["parent/5",[4,2.798,5,3.995]],["name/6",[7,69.096]],["parent/6",[4,2.798,8,4.444]],["name/7",[9,69.096]],["parent/7",[4,2.798,8,4.444]],["name/8",[10,69.096]],["parent/8",[4,2.798,8,4.444]],["name/9",[11,69.096]],["parent/9",[4,2.798,8,4.444]],["name/10",[12,74.217]],["parent/10",[4,2.798,5,3.995]],["name/11",[13,59.517]],["parent/11",[4,2.798,14,4.858]],["name/12",[15,63.203]],["parent/12",[4,2.798,14,4.858]],["name/13",[16,74.217]],["parent/13",[4,2.798,5,3.995]],["name/14",[17,59.517]],["parent/14",[4,2.798,18,4.858]],["name/15",[19,63.203]],["parent/15",[4,2.798,18,4.858]],["name/16",[20,74.217]],["parent/16",[4,2.798,5,3.995]],["name/17",[21,43.382]],["parent/17",[4,2.798,22,5.218]],["name/18",[23,53.797]],["parent/18",[4,2.798,5,3.995]],["name/19",[24,74.217]],["parent/19",[4,2.798,25,3.309]],["name/20",[26,74.217]],["parent/20",[4,2.798,25,3.309]],["name/21",[27,74.217]],["parent/21",[4,2.798,25,3.309]],["name/22",[21,43.382]],["parent/22",[4,2.798,25,3.309]],["name/23",[28,69.096]],["parent/23",[4,2.798,29,4.184]],["name/24",[30,74.217]],["parent/24",[4,2.798,29,4.184]],["name/25",[13,59.517]],["parent/25",[4,2.798,29,4.184]],["name/26",[15,63.203]],["parent/26",[4,2.798,29,4.184]],["name/27",[17,59.517]],["parent/27",[4,2.798,29,4.184]],["name/28",[19,63.203]],["parent/28",[4,2.798,29,4.184]],["name/29",[31,50.805]],["parent/29",[4,2.798,25,3.309]],["name/30",[32,74.217]],["parent/30",[4,2.798,25,3.309]],["name/31",[33,74.217]],["parent/31",[4,2.798,25,3.309]],["name/32",[34,74.217]],["parent/32",[4,2.798,25,3.309]],["name/33",[35,74.217]],["parent/33",[4,2.798,25,3.309]],["name/34",[36,74.217]],["parent/34",[4,2.798,25,3.309]],["name/35",[37,74.217]],["parent/35",[4,2.798,25,3.309]],["name/36",[38,63.203]],["parent/36",[4,2.798,25,3.309]],["name/37",[39,74.217]],["parent/37",[4,2.798,25,3.309]],["name/38",[13,59.517]],["parent/38",[4,2.798,25,3.309]],["name/39",[17,59.517]],["parent/39",[4,2.798,25,3.309]],["name/40",[40,74.217]],["parent/40",[4,2.798,25,3.309]],["name/41",[41,74.217]],["parent/41",[4,2.798,25,3.309]],["name/42",[42,74.217]],["parent/42",[4,2.798,25,3.309]],["name/43",[43,74.217]],["parent/43",[4,2.798,25,3.309]],["name/44",[44,74.217]],["parent/44",[4,2.798,25,3.309]],["name/45",[45,74.217]],["parent/45",[4,2.798,25,3.309]],["name/46",[46,65.723]],["parent/46",[4,2.798,25,3.309]],["name/47",[4,39.791]],["parent/47",[]],["name/48",[23,53.797]],["parent/48",[4,3.95]],["name/49",[21,43.382]],["parent/49",[4,3.95]],["name/50",[47,74.217]],["parent/50",[48,1.554]],["name/51",[49,74.217]],["parent/51",[48,1.554]],["name/52",[50,74.217]],["parent/52",[48,1.554]],["name/53",[51,74.217]],["parent/53",[48,1.554]],["name/54",[52,74.217]],["parent/54",[48,1.554]],["name/55",[53,74.217]],["parent/55",[48,1.554]],["name/56",[54,74.217]],["parent/56",[48,1.554]],["name/57",[55,74.217]],["parent/57",[48,1.554]],["name/58",[56,74.217]],["parent/58",[48,1.554]],["name/59",[57,74.217]],["parent/59",[48,1.554]],["name/60",[58,74.217]],["parent/60",[48,1.554]],["name/61",[59,74.217]],["parent/61",[48,1.554]],["name/62",[60,74.217]],["parent/62",[48,1.554]],["name/63",[61,74.217]],["parent/63",[48,1.554]],["name/64",[62,74.217]],["parent/64",[48,1.554]],["name/65",[63,74.217]],["parent/65",[48,1.554]],["name/66",[64,74.217]],["parent/66",[48,1.554]],["name/67",[65,74.217]],["parent/67",[48,1.554]],["name/68",[66,74.217]],["parent/68",[48,1.554]],["name/69",[67,74.217]],["parent/69",[48,1.554]],["name/70",[68,74.217]],["parent/70",[48,1.554]],["name/71",[69,74.217]],["parent/71",[48,1.554]],["name/72",[70,74.217]],["parent/72",[48,1.554]],["name/73",[71,74.217]],["parent/73",[48,1.554]],["name/74",[72,58.082]],["parent/74",[48,1.554]],["name/75",[72,58.082]],["parent/75",[48,1.554]],["name/76",[73,69.096]],["parent/76",[48,1.554]],["name/77",[73,69.096]],["parent/77",[48,1.554]],["name/78",[74,69.096]],["parent/78",[48,1.554]],["name/79",[74,69.096]],["parent/79",[48,1.554]],["name/80",[75,69.096]],["parent/80",[48,1.554]],["name/81",[75,69.096]],["parent/81",[48,1.554]],["name/82",[76,74.217]],["parent/82",[48,1.554]],["name/83",[77,74.217]],["parent/83",[48,1.554]],["name/84",[78,74.217]],["parent/84",[48,1.554]],["name/85",[79,74.217]],["parent/85",[48,1.554]],["name/86",[80,74.217]],["parent/86",[48,1.554]],["name/87",[81,74.217]],["parent/87",[48,1.554]],["name/88",[82,74.217]],["parent/88",[48,1.554]],["name/89",[83,74.217]],["parent/89",[48,1.554]],["name/90",[84,74.217]],["parent/90",[48,1.554]],["name/91",[85,74.217]],["parent/91",[48,1.554]],["name/92",[86,74.217]],["parent/92",[48,1.554]],["name/93",[87,74.217]],["parent/93",[48,1.554]],["name/94",[88,74.217]],["parent/94",[48,1.554]],["name/95",[89,74.217]],["parent/95",[48,1.554]],["name/96",[90,74.217]],["parent/96",[48,1.554]],["name/97",[91,74.217]],["parent/97",[48,1.554]],["name/98",[92,74.217]],["parent/98",[48,1.554]],["name/99",[93,74.217]],["parent/99",[48,1.554]],["name/100",[94,74.217]],["parent/100",[48,1.554]],["name/101",[95,74.217]],["parent/101",[48,1.554]],["name/102",[96,74.217]],["parent/102",[48,1.554]],["name/103",[97,74.217]],["parent/103",[48,1.554]],["name/104",[98,74.217]],["parent/104",[48,1.554]],["name/105",[99,74.217]],["parent/105",[48,1.554]],["name/106",[100,74.217]],["parent/106",[48,1.554]],["name/107",[101,74.217]],["parent/107",[48,1.554]],["name/108",[102,74.217]],["parent/108",[48,1.554]],["name/109",[103,74.217]],["parent/109",[48,1.554]],["name/110",[104,74.217]],["parent/110",[48,1.554]],["name/111",[105,74.217]],["parent/111",[48,1.554]],["name/112",[106,74.217]],["parent/112",[48,1.554]],["name/113",[107,74.217]],["parent/113",[48,1.554]],["name/114",[108,74.217]],["parent/114",[48,1.554]],["name/115",[109,74.217]],["parent/115",[48,1.554]],["name/116",[110,74.217]],["parent/116",[48,1.554]],["name/117",[111,74.217]],["parent/117",[48,1.554]],["name/118",[112,52.19]],["parent/118",[48,1.554]],["name/119",[112,52.19]],["parent/119",[48,1.554]],["name/120",[113,74.217]],["parent/120",[48,1.554]],["name/121",[114,74.217]],["parent/121",[48,1.554]],["name/122",[115,74.217]],["parent/122",[48,1.554]],["name/123",[116,74.217]],["parent/123",[48,1.554]],["name/124",[117,74.217]],["parent/124",[48,1.554]],["name/125",[118,74.217]],["parent/125",[48,1.554]],["name/126",[119,74.217]],["parent/126",[48,1.554]],["name/127",[120,74.217]],["parent/127",[48,1.554]],["name/128",[121,69.096]],["parent/128",[48,1.554]],["name/129",[121,69.096]],["parent/129",[48,1.554]],["name/130",[122,69.096]],["parent/130",[48,1.554]],["name/131",[122,69.096]],["parent/131",[48,1.554]],["name/132",[123,69.096]],["parent/132",[48,1.554]],["name/133",[123,69.096]],["parent/133",[48,1.554]],["name/134",[124,69.096]],["parent/134",[48,1.554]],["name/135",[124,69.096]],["parent/135",[48,1.554]],["name/136",[46,65.723]],["parent/136",[48,1.554]],["name/137",[46,65.723]],["parent/137",[48,1.554]],["name/138",[125,69.096]],["parent/138",[48,1.554]],["name/139",[125,69.096]],["parent/139",[48,1.554]],["name/140",[126,69.096]],["parent/140",[48,1.554]],["name/141",[126,69.096]],["parent/141",[48,1.554]],["name/142",[127,69.096]],["parent/142",[48,1.554]],["name/143",[127,69.096]],["parent/143",[48,1.554]],["name/144",[128,63.203]],["parent/144",[48,1.554]],["name/145",[128,63.203]],["parent/145",[48,1.554]],["name/146",[129,69.096]],["parent/146",[48,1.554]],["name/147",[129,69.096]],["parent/147",[48,1.554]],["name/148",[130,69.096]],["parent/148",[48,1.554]],["name/149",[130,69.096]],["parent/149",[48,1.554]],["name/150",[131,74.217]],["parent/150",[48,1.554]],["name/151",[132,74.217]],["parent/151",[48,1.554]],["name/152",[133,52.725,134,44.901]],["parent/152",[48,1.554]],["name/153",[135,74.217]],["parent/153",[48,1.554]],["name/154",[136,74.217]],["parent/154",[48,1.554]],["name/155",[137,74.217]],["parent/155",[48,1.554]],["name/156",[138,74.217]],["parent/156",[48,1.554]],["name/157",[139,74.217]],["parent/157",[48,1.554]],["name/158",[140,74.217]],["parent/158",[48,1.554]],["name/159",[141,74.217]],["parent/159",[48,1.554]],["name/160",[142,74.217]],["parent/160",[48,1.554]],["name/161",[143,74.217]],["parent/161",[48,1.554]],["name/162",[144,74.217]],["parent/162",[48,1.554]],["name/163",[145,74.217]],["parent/163",[48,1.554]],["name/164",[146,74.217]],["parent/164",[48,1.554]],["name/165",[147,74.217]],["parent/165",[48,1.554]],["name/166",[148,69.096]],["parent/166",[48,1.554]],["name/167",[148,69.096]],["parent/167",[48,1.554]],["name/168",[149,69.096]],["parent/168",[48,1.554]],["name/169",[149,69.096]],["parent/169",[48,1.554]],["name/170",[150,74.217]],["parent/170",[48,1.554]],["name/171",[151,74.217]],["parent/171",[48,1.554]],["name/172",[152,74.217]],["parent/172",[48,1.554]],["name/173",[153,74.217]],["parent/173",[48,1.554]],["name/174",[154,74.217]],["parent/174",[48,1.554]],["name/175",[155,74.217]],["parent/175",[48,1.554]],["name/176",[156,69.096]],["parent/176",[48,1.554]],["name/177",[156,69.096]],["parent/177",[48,1.554]],["name/178",[157,63.203]],["parent/178",[48,1.554]],["name/179",[157,63.203]],["parent/179",[48,1.554]],["name/180",[158,69.096]],["parent/180",[48,1.554]],["name/181",[158,69.096]],["parent/181",[48,1.554]],["name/182",[159,69.096]],["parent/182",[48,1.554]],["name/183",[159,69.096]],["parent/183",[48,1.554]],["name/184",[72,41.263,160,52.725]],["parent/184",[48,1.554]],["name/185",[161,74.217]],["parent/185",[48,1.554]],["name/186",[162,69.096]],["parent/186",[48,1.554]],["name/187",[162,69.096]],["parent/187",[48,1.554]],["name/188",[163,69.096]],["parent/188",[48,1.554]],["name/189",[163,69.096]],["parent/189",[48,1.554]],["name/190",[164,69.096]],["parent/190",[48,1.554]],["name/191",[164,69.096]],["parent/191",[48,1.554]],["name/192",[165,74.217]],["parent/192",[48,1.554]],["name/193",[166,74.217]],["parent/193",[48,1.554]],["name/194",[167,74.217]],["parent/194",[48,1.554]],["name/195",[168,74.217]],["parent/195",[48,1.554]],["name/196",[169,74.217]],["parent/196",[48,1.554]],["name/197",[170,74.217]],["parent/197",[48,1.554]],["name/198",[171,74.217]],["parent/198",[48,1.554]],["name/199",[172,74.217]],["parent/199",[48,1.554]],["name/200",[173,74.217]],["parent/200",[48,1.554]],["name/201",[174,74.217]],["parent/201",[48,1.554]],["name/202",[175,69.096]],["parent/202",[48,1.554]],["name/203",[175,69.096]],["parent/203",[48,1.554]],["name/204",[176,69.096]],["parent/204",[48,1.554]],["name/205",[176,69.096]],["parent/205",[48,1.554]],["name/206",[177,65.723]],["parent/206",[48,1.554]],["name/207",[177,65.723]],["parent/207",[48,1.554]],["name/208",[178,69.096]],["parent/208",[48,1.554]],["name/209",[178,69.096]],["parent/209",[48,1.554]],["name/210",[179,69.096]],["parent/210",[48,1.554]],["name/211",[179,69.096]],["parent/211",[48,1.554]],["name/212",[180,63.203]],["parent/212",[48,1.554]],["name/213",[180,63.203]],["parent/213",[48,1.554]],["name/214",[181,63.203]],["parent/214",[48,1.554]],["name/215",[181,63.203]],["parent/215",[48,1.554]],["name/216",[182,63.203]],["parent/216",[48,1.554]],["name/217",[182,63.203]],["parent/217",[48,1.554]],["name/218",[183,63.203]],["parent/218",[48,1.554]],["name/219",[183,63.203]],["parent/219",[48,1.554]],["name/220",[184,63.203]],["parent/220",[48,1.554]],["name/221",[184,63.203]],["parent/221",[48,1.554]],["name/222",[185,63.203]],["parent/222",[48,1.554]],["name/223",[185,63.203]],["parent/223",[48,1.554]],["name/224",[186,63.203]],["parent/224",[48,1.554]],["name/225",[186,63.203]],["parent/225",[48,1.554]],["name/226",[187,63.203]],["parent/226",[48,1.554]],["name/227",[187,63.203]],["parent/227",[48,1.554]],["name/228",[188,63.203]],["parent/228",[48,1.554]],["name/229",[188,63.203]],["parent/229",[48,1.554]],["name/230",[189,63.203]],["parent/230",[48,1.554]],["name/231",[189,63.203]],["parent/231",[48,1.554]],["name/232",[190,63.203]],["parent/232",[48,1.554]],["name/233",[190,63.203]],["parent/233",[48,1.554]],["name/234",[191,63.203]],["parent/234",[48,1.554]],["name/235",[191,63.203]],["parent/235",[48,1.554]],["name/236",[192,63.203]],["parent/236",[48,1.554]],["name/237",[192,63.203]],["parent/237",[48,1.554]],["name/238",[193,63.203]],["parent/238",[48,1.554]],["name/239",[193,63.203]],["parent/239",[48,1.554]],["name/240",[194,63.203]],["parent/240",[48,1.554]],["name/241",[194,63.203]],["parent/241",[48,1.554]],["name/242",[195,63.203]],["parent/242",[48,1.554]],["name/243",[195,63.203]],["parent/243",[48,1.554]],["name/244",[196,63.203]],["parent/244",[48,1.554]],["name/245",[196,63.203]],["parent/245",[48,1.554]],["name/246",[197,63.203]],["parent/246",[48,1.554]],["name/247",[197,63.203]],["parent/247",[48,1.554]],["name/248",[198,63.203]],["parent/248",[48,1.554]],["name/249",[198,63.203]],["parent/249",[48,1.554]],["name/250",[199,63.203]],["parent/250",[48,1.554]],["name/251",[199,63.203]],["parent/251",[48,1.554]],["name/252",[200,63.203]],["parent/252",[48,1.554]],["name/253",[200,63.203]],["parent/253",[48,1.554]],["name/254",[201,63.203]],["parent/254",[48,1.554]],["name/255",[201,63.203]],["parent/255",[48,1.554]],["name/256",[202,63.203]],["parent/256",[48,1.554]],["name/257",[202,63.203]],["parent/257",[48,1.554]],["name/258",[203,63.203]],["parent/258",[48,1.554]],["name/259",[203,63.203]],["parent/259",[48,1.554]],["name/260",[204,63.203]],["parent/260",[48,1.554]],["name/261",[204,63.203]],["parent/261",[48,1.554]],["name/262",[205,69.096]],["parent/262",[48,1.554]],["name/263",[206,69.096]],["parent/263",[48,1.554]],["name/264",[207,63.203]],["parent/264",[48,1.554]],["name/265",[207,63.203]],["parent/265",[48,1.554]],["name/266",[208,63.203]],["parent/266",[48,1.554]],["name/267",[208,63.203]],["parent/267",[48,1.554]],["name/268",[209,69.096]],["parent/268",[48,1.554]],["name/269",[210,69.096]],["parent/269",[48,1.554]],["name/270",[211,63.203]],["parent/270",[48,1.554]],["name/271",[211,63.203]],["parent/271",[48,1.554]],["name/272",[212,63.203]],["parent/272",[48,1.554]],["name/273",[212,63.203]],["parent/273",[48,1.554]],["name/274",[213,63.203]],["parent/274",[48,1.554]],["name/275",[213,63.203]],["parent/275",[48,1.554]],["name/276",[214,63.203]],["parent/276",[48,1.554]],["name/277",[214,63.203]],["parent/277",[48,1.554]],["name/278",[215,63.203]],["parent/278",[48,1.554]],["name/279",[215,63.203]],["parent/279",[48,1.554]],["name/280",[216,63.203]],["parent/280",[48,1.554]],["name/281",[216,63.203]],["parent/281",[48,1.554]],["name/282",[217,63.203]],["parent/282",[48,1.554]],["name/283",[217,63.203]],["parent/283",[48,1.554]],["name/284",[218,63.203]],["parent/284",[48,1.554]],["name/285",[218,63.203]],["parent/285",[48,1.554]],["name/286",[219,63.203]],["parent/286",[48,1.554]],["name/287",[219,63.203]],["parent/287",[48,1.554]],["name/288",[220,63.203]],["parent/288",[48,1.554]],["name/289",[220,63.203]],["parent/289",[48,1.554]],["name/290",[221,63.203]],["parent/290",[48,1.554]],["name/291",[221,63.203]],["parent/291",[48,1.554]],["name/292",[222,63.203]],["parent/292",[48,1.554]],["name/293",[222,63.203]],["parent/293",[48,1.554]],["name/294",[223,63.203]],["parent/294",[48,1.554]],["name/295",[223,63.203]],["parent/295",[48,1.554]],["name/296",[224,63.203]],["parent/296",[48,1.554]],["name/297",[224,63.203]],["parent/297",[48,1.554]],["name/298",[225,63.203]],["parent/298",[48,1.554]],["name/299",[225,63.203]],["parent/299",[48,1.554]],["name/300",[226,69.096]],["parent/300",[48,1.554]],["name/301",[227,69.096]],["parent/301",[48,1.554]],["name/302",[228,69.096]],["parent/302",[48,1.554]],["name/303",[229,69.096]],["parent/303",[48,1.554]],["name/304",[230,63.203]],["parent/304",[48,1.554]],["name/305",[230,63.203]],["parent/305",[48,1.554]],["name/306",[231,63.203]],["parent/306",[48,1.554]],["name/307",[231,63.203]],["parent/307",[48,1.554]],["name/308",[232,63.203]],["parent/308",[48,1.554]],["name/309",[232,63.203]],["parent/309",[48,1.554]],["name/310",[233,63.203]],["parent/310",[48,1.554]],["name/311",[233,63.203]],["parent/311",[48,1.554]],["name/312",[234,63.203]],["parent/312",[48,1.554]],["name/313",[234,63.203]],["parent/313",[48,1.554]],["name/314",[235,63.203]],["parent/314",[48,1.554]],["name/315",[235,63.203]],["parent/315",[48,1.554]],["name/316",[236,63.203]],["parent/316",[48,1.554]],["name/317",[236,63.203]],["parent/317",[48,1.554]],["name/318",[237,63.203]],["parent/318",[48,1.554]],["name/319",[237,63.203]],["parent/319",[48,1.554]],["name/320",[238,63.203]],["parent/320",[48,1.554]],["name/321",[238,63.203]],["parent/321",[48,1.554]],["name/322",[239,63.203]],["parent/322",[48,1.554]],["name/323",[239,63.203]],["parent/323",[48,1.554]],["name/324",[240,63.203]],["parent/324",[48,1.554]],["name/325",[240,63.203]],["parent/325",[48,1.554]],["name/326",[241,63.203]],["parent/326",[48,1.554]],["name/327",[241,63.203]],["parent/327",[48,1.554]],["name/328",[242,63.203]],["parent/328",[48,1.554]],["name/329",[242,63.203]],["parent/329",[48,1.554]],["name/330",[243,69.096]],["parent/330",[48,1.554]],["name/331",[244,69.096]],["parent/331",[48,1.554]],["name/332",[245,63.203]],["parent/332",[48,1.554]],["name/333",[245,63.203]],["parent/333",[48,1.554]],["name/334",[246,69.096]],["parent/334",[48,1.554]],["name/335",[247,69.096]],["parent/335",[48,1.554]],["name/336",[248,63.203]],["parent/336",[48,1.554]],["name/337",[248,63.203]],["parent/337",[48,1.554]],["name/338",[249,63.203]],["parent/338",[48,1.554]],["name/339",[249,63.203]],["parent/339",[48,1.554]],["name/340",[250,63.203]],["parent/340",[48,1.554]],["name/341",[250,63.203]],["parent/341",[48,1.554]],["name/342",[251,63.203]],["parent/342",[48,1.554]],["name/343",[251,63.203]],["parent/343",[48,1.554]],["name/344",[252,63.203]],["parent/344",[48,1.554]],["name/345",[252,63.203]],["parent/345",[48,1.554]],["name/346",[253,63.203]],["parent/346",[48,1.554]],["name/347",[253,63.203]],["parent/347",[48,1.554]],["name/348",[254,63.203]],["parent/348",[48,1.554]],["name/349",[254,63.203]],["parent/349",[48,1.554]],["name/350",[255,63.203]],["parent/350",[48,1.554]],["name/351",[255,63.203]],["parent/351",[48,1.554]],["name/352",[256,63.203]],["parent/352",[48,1.554]],["name/353",[256,63.203]],["parent/353",[48,1.554]],["name/354",[257,63.203]],["parent/354",[48,1.554]],["name/355",[257,63.203]],["parent/355",[48,1.554]],["name/356",[258,63.203]],["parent/356",[48,1.554]],["name/357",[258,63.203]],["parent/357",[48,1.554]],["name/358",[259,63.203]],["parent/358",[48,1.554]],["name/359",[259,63.203]],["parent/359",[48,1.554]],["name/360",[260,63.203]],["parent/360",[48,1.554]],["name/361",[260,63.203]],["parent/361",[48,1.554]],["name/362",[261,63.203]],["parent/362",[48,1.554]],["name/363",[261,63.203]],["parent/363",[48,1.554]],["name/364",[262,63.203]],["parent/364",[48,1.554]],["name/365",[262,63.203]],["parent/365",[48,1.554]],["name/366",[263,63.203]],["parent/366",[48,1.554]],["name/367",[263,63.203]],["parent/367",[48,1.554]],["name/368",[264,63.203]],["parent/368",[48,1.554]],["name/369",[264,63.203]],["parent/369",[48,1.554]],["name/370",[265,63.203]],["parent/370",[48,1.554]],["name/371",[265,63.203]],["parent/371",[48,1.554]],["name/372",[266,63.203]],["parent/372",[48,1.554]],["name/373",[266,63.203]],["parent/373",[48,1.554]],["name/374",[267,63.203]],["parent/374",[48,1.554]],["name/375",[267,63.203]],["parent/375",[48,1.554]],["name/376",[268,63.203]],["parent/376",[48,1.554]],["name/377",[268,63.203]],["parent/377",[48,1.554]],["name/378",[269,63.203]],["parent/378",[48,1.554]],["name/379",[269,63.203]],["parent/379",[48,1.554]],["name/380",[270,69.096]],["parent/380",[48,1.554]],["name/381",[271,69.096]],["parent/381",[48,1.554]],["name/382",[272,63.203]],["parent/382",[48,1.554]],["name/383",[272,63.203]],["parent/383",[48,1.554]],["name/384",[273,63.203]],["parent/384",[48,1.554]],["name/385",[273,63.203]],["parent/385",[48,1.554]],["name/386",[274,63.203]],["parent/386",[48,1.554]],["name/387",[274,63.203]],["parent/387",[48,1.554]],["name/388",[275,63.203]],["parent/388",[48,1.554]],["name/389",[275,63.203]],["parent/389",[48,1.554]],["name/390",[276,63.203]],["parent/390",[48,1.554]],["name/391",[276,63.203]],["parent/391",[48,1.554]],["name/392",[277,63.203]],["parent/392",[48,1.554]],["name/393",[277,63.203]],["parent/393",[48,1.554]],["name/394",[278,63.203]],["parent/394",[48,1.554]],["name/395",[278,63.203]],["parent/395",[48,1.554]],["name/396",[279,63.203]],["parent/396",[48,1.554]],["name/397",[279,63.203]],["parent/397",[48,1.554]],["name/398",[280,63.203]],["parent/398",[48,1.554]],["name/399",[280,63.203]],["parent/399",[48,1.554]],["name/400",[281,63.203]],["parent/400",[48,1.554]],["name/401",[281,63.203]],["parent/401",[48,1.554]],["name/402",[282,61.191]],["parent/402",[48,1.554]],["name/403",[282,61.191]],["parent/403",[48,1.554]],["name/404",[283,63.203]],["parent/404",[48,1.554]],["name/405",[283,63.203]],["parent/405",[48,1.554]],["name/406",[284,63.203]],["parent/406",[48,1.554]],["name/407",[284,63.203]],["parent/407",[48,1.554]],["name/408",[285,63.203]],["parent/408",[48,1.554]],["name/409",[285,63.203]],["parent/409",[48,1.554]],["name/410",[286,63.203]],["parent/410",[48,1.554]],["name/411",[286,63.203]],["parent/411",[48,1.554]],["name/412",[287,63.203]],["parent/412",[48,1.554]],["name/413",[287,63.203]],["parent/413",[48,1.554]],["name/414",[288,63.203]],["parent/414",[48,1.554]],["name/415",[288,63.203]],["parent/415",[48,1.554]],["name/416",[289,63.203]],["parent/416",[48,1.554]],["name/417",[289,63.203]],["parent/417",[48,1.554]],["name/418",[290,63.203]],["parent/418",[48,1.554]],["name/419",[290,63.203]],["parent/419",[48,1.554]],["name/420",[291,61.191]],["parent/420",[48,1.554]],["name/421",[291,61.191]],["parent/421",[48,1.554]],["name/422",[292,63.203]],["parent/422",[48,1.554]],["name/423",[292,63.203]],["parent/423",[48,1.554]],["name/424",[293,69.096]],["parent/424",[48,1.554]],["name/425",[294,69.096]],["parent/425",[48,1.554]],["name/426",[295,63.203]],["parent/426",[48,1.554]],["name/427",[295,63.203]],["parent/427",[48,1.554]],["name/428",[296,63.203]],["parent/428",[48,1.554]],["name/429",[296,63.203]],["parent/429",[48,1.554]],["name/430",[297,63.203]],["parent/430",[48,1.554]],["name/431",[297,63.203]],["parent/431",[48,1.554]],["name/432",[298,63.203]],["parent/432",[48,1.554]],["name/433",[298,63.203]],["parent/433",[48,1.554]],["name/434",[299,63.203]],["parent/434",[48,1.554]],["name/435",[299,63.203]],["parent/435",[48,1.554]],["name/436",[300,63.203]],["parent/436",[48,1.554]],["name/437",[300,63.203]],["parent/437",[48,1.554]],["name/438",[301,63.203]],["parent/438",[48,1.554]],["name/439",[301,63.203]],["parent/439",[48,1.554]],["name/440",[302,63.203]],["parent/440",[48,1.554]],["name/441",[302,63.203]],["parent/441",[48,1.554]],["name/442",[303,59.517]],["parent/442",[48,1.554]],["name/443",[303,59.517]],["parent/443",[48,1.554]],["name/444",[304,63.203]],["parent/444",[48,1.554]],["name/445",[304,63.203]],["parent/445",[48,1.554]],["name/446",[305,63.203]],["parent/446",[48,1.554]],["name/447",[305,63.203]],["parent/447",[48,1.554]],["name/448",[306,63.203]],["parent/448",[48,1.554]],["name/449",[306,63.203]],["parent/449",[48,1.554]],["name/450",[307,63.203]],["parent/450",[48,1.554]],["name/451",[307,63.203]],["parent/451",[48,1.554]],["name/452",[308,69.096]],["parent/452",[48,1.554]],["name/453",[309,69.096]],["parent/453",[48,1.554]],["name/454",[310,63.203]],["parent/454",[48,1.554]],["name/455",[310,63.203]],["parent/455",[48,1.554]],["name/456",[311,63.203]],["parent/456",[48,1.554]],["name/457",[311,63.203]],["parent/457",[48,1.554]],["name/458",[312,69.096]],["parent/458",[48,1.554]],["name/459",[313,69.096]],["parent/459",[48,1.554]],["name/460",[314,63.203]],["parent/460",[48,1.554]],["name/461",[314,63.203]],["parent/461",[48,1.554]],["name/462",[315,69.096]],["parent/462",[48,1.554]],["name/463",[316,69.096]],["parent/463",[48,1.554]],["name/464",[317,69.096]],["parent/464",[48,1.554]],["name/465",[318,69.096]],["parent/465",[48,1.554]],["name/466",[319,69.096]],["parent/466",[48,1.554]],["name/467",[320,69.096]],["parent/467",[48,1.554]],["name/468",[321,69.096]],["parent/468",[48,1.554]],["name/469",[322,69.096]],["parent/469",[48,1.554]],["name/470",[323,69.096]],["parent/470",[48,1.554]],["name/471",[324,69.096]],["parent/471",[48,1.554]],["name/472",[325,69.096]],["parent/472",[48,1.554]],["name/473",[326,69.096]],["parent/473",[48,1.554]],["name/474",[327,69.096]],["parent/474",[48,1.554]],["name/475",[328,69.096]],["parent/475",[48,1.554]],["name/476",[329,69.096]],["parent/476",[48,1.554]],["name/477",[330,69.096]],["parent/477",[48,1.554]],["name/478",[331,63.203]],["parent/478",[48,1.554]],["name/479",[331,63.203]],["parent/479",[48,1.554]],["name/480",[332,69.096]],["parent/480",[48,1.554]],["name/481",[333,69.096]],["parent/481",[48,1.554]],["name/482",[334,63.203]],["parent/482",[48,1.554]],["name/483",[334,63.203]],["parent/483",[48,1.554]],["name/484",[335,63.203]],["parent/484",[48,1.554]],["name/485",[335,63.203]],["parent/485",[48,1.554]],["name/486",[336,63.203]],["parent/486",[48,1.554]],["name/487",[336,63.203]],["parent/487",[48,1.554]],["name/488",[337,63.203]],["parent/488",[48,1.554]],["name/489",[337,63.203]],["parent/489",[48,1.554]],["name/490",[338,63.203]],["parent/490",[48,1.554]],["name/491",[338,63.203]],["parent/491",[48,1.554]],["name/492",[339,63.203]],["parent/492",[48,1.554]],["name/493",[339,63.203]],["parent/493",[48,1.554]],["name/494",[340,63.203]],["parent/494",[48,1.554]],["name/495",[340,63.203]],["parent/495",[48,1.554]],["name/496",[341,63.203]],["parent/496",[48,1.554]],["name/497",[341,63.203]],["parent/497",[48,1.554]],["name/498",[342,63.203]],["parent/498",[48,1.554]],["name/499",[342,63.203]],["parent/499",[48,1.554]],["name/500",[343,69.096]],["parent/500",[48,1.554]],["name/501",[344,69.096]],["parent/501",[48,1.554]],["name/502",[345,63.203]],["parent/502",[48,1.554]],["name/503",[345,63.203]],["parent/503",[48,1.554]],["name/504",[346,63.203]],["parent/504",[48,1.554]],["name/505",[346,63.203]],["parent/505",[48,1.554]],["name/506",[347,63.203]],["parent/506",[48,1.554]],["name/507",[347,63.203]],["parent/507",[48,1.554]],["name/508",[348,69.096]],["parent/508",[48,1.554]],["name/509",[349,69.096]],["parent/509",[48,1.554]],["name/510",[350,63.203]],["parent/510",[48,1.554]],["name/511",[350,63.203]],["parent/511",[48,1.554]],["name/512",[351,63.203]],["parent/512",[48,1.554]],["name/513",[351,63.203]],["parent/513",[48,1.554]],["name/514",[352,63.203]],["parent/514",[48,1.554]],["name/515",[352,63.203]],["parent/515",[48,1.554]],["name/516",[353,63.203]],["parent/516",[48,1.554]],["name/517",[353,63.203]],["parent/517",[48,1.554]],["name/518",[354,69.096]],["parent/518",[48,1.554]],["name/519",[355,69.096]],["parent/519",[48,1.554]],["name/520",[356,63.203]],["parent/520",[48,1.554]],["name/521",[356,63.203]],["parent/521",[48,1.554]],["name/522",[357,69.096]],["parent/522",[48,1.554]],["name/523",[358,69.096]],["parent/523",[48,1.554]],["name/524",[359,63.203]],["parent/524",[48,1.554]],["name/525",[359,63.203]],["parent/525",[48,1.554]],["name/526",[360,69.096]],["parent/526",[48,1.554]],["name/527",[361,69.096]],["parent/527",[48,1.554]],["name/528",[362,69.096]],["parent/528",[48,1.554]],["name/529",[363,69.096]],["parent/529",[48,1.554]],["name/530",[364,63.203]],["parent/530",[48,1.554]],["name/531",[364,63.203]],["parent/531",[48,1.554]],["name/532",[365,69.096]],["parent/532",[48,1.554]],["name/533",[366,69.096]],["parent/533",[48,1.554]],["name/534",[367,63.203]],["parent/534",[48,1.554]],["name/535",[367,63.203]],["parent/535",[48,1.554]],["name/536",[368,63.203]],["parent/536",[48,1.554]],["name/537",[368,63.203]],["parent/537",[48,1.554]],["name/538",[369,69.096]],["parent/538",[48,1.554]],["name/539",[370,69.096]],["parent/539",[48,1.554]],["name/540",[371,63.203]],["parent/540",[48,1.554]],["name/541",[371,63.203]],["parent/541",[48,1.554]],["name/542",[372,63.203]],["parent/542",[48,1.554]],["name/543",[372,63.203]],["parent/543",[48,1.554]],["name/544",[373,63.203]],["parent/544",[48,1.554]],["name/545",[373,63.203]],["parent/545",[48,1.554]],["name/546",[374,63.203]],["parent/546",[48,1.554]],["name/547",[374,63.203]],["parent/547",[48,1.554]],["name/548",[375,63.203]],["parent/548",[48,1.554]],["name/549",[375,63.203]],["parent/549",[48,1.554]],["name/550",[376,63.203]],["parent/550",[48,1.554]],["name/551",[376,63.203]],["parent/551",[48,1.554]],["name/552",[377,63.203]],["parent/552",[48,1.554]],["name/553",[377,63.203]],["parent/553",[48,1.554]],["name/554",[378,63.203]],["parent/554",[48,1.554]],["name/555",[378,63.203]],["parent/555",[48,1.554]],["name/556",[379,63.203]],["parent/556",[48,1.554]],["name/557",[379,63.203]],["parent/557",[48,1.554]],["name/558",[380,63.203]],["parent/558",[48,1.554]],["name/559",[380,63.203]],["parent/559",[48,1.554]],["name/560",[381,69.096]],["parent/560",[48,1.554]],["name/561",[382,69.096]],["parent/561",[48,1.554]],["name/562",[383,63.203]],["parent/562",[48,1.554]],["name/563",[383,63.203]],["parent/563",[48,1.554]],["name/564",[384,63.203]],["parent/564",[48,1.554]],["name/565",[384,63.203]],["parent/565",[48,1.554]],["name/566",[385,54.709]],["parent/566",[]],["name/567",[386,69.096]],["parent/567",[385,5.431]],["name/568",[387,65.723]],["parent/568",[388,5.257]],["name/569",[389,65.723]],["parent/569",[388,5.257]],["name/570",[390,69.096]],["parent/570",[388,5.257]],["name/571",[391,69.096]],["parent/571",[388,5.257]],["name/572",[392,69.096]],["parent/572",[388,5.257]],["name/573",[393,74.217]],["parent/573",[388,5.257]],["name/574",[394,74.217]],["parent/574",[388,5.257]],["name/575",[157,63.203]],["parent/575",[388,5.257]],["name/576",[395,65.723]],["parent/576",[388,5.257]],["name/577",[396,74.217]],["parent/577",[388,5.257]],["name/578",[397,65.723]],["parent/578",[388,5.257]],["name/579",[398,65.723]],["parent/579",[388,5.257]],["name/580",[399,74.217]],["parent/580",[385,5.431]],["name/581",[21,43.382]],["parent/581",[400,7.367]],["name/582",[401,74.217]],["parent/582",[385,5.431]],["name/583",[402,74.217]],["parent/583",[385,5.431]],["name/584",[403,69.096]],["parent/584",[385,5.431]],["name/585",[404,74.217]],["parent/585",[385,5.431]],["name/586",[21,43.382]],["parent/586",[405,7.367]],["name/587",[406,74.217]],["parent/587",[385,5.431]],["name/588",[407,74.217]],["parent/588",[408,6.074]],["name/589",[7,69.096]],["parent/589",[408,6.074]],["name/590",[9,69.096]],["parent/590",[408,6.074]],["name/591",[10,69.096]],["parent/591",[408,6.074]],["name/592",[11,69.096]],["parent/592",[408,6.074]],["name/593",[409,74.217]],["parent/593",[385,5.431]],["name/594",[23,53.797]],["parent/594",[385,5.431]],["name/595",[2,63.203]],["parent/595",[410,3.756]],["name/596",[411,65.723]],["parent/596",[410,3.756]],["name/597",[412,69.096]],["parent/597",[410,3.756]],["name/598",[413,74.217]],["parent/598",[410,3.756]],["name/599",[31,50.805]],["parent/599",[410,3.756]],["name/600",[414,55.712]],["parent/600",[410,3.756]],["name/601",[389,65.723]],["parent/601",[410,3.756]],["name/602",[5,56.827]],["parent/602",[410,3.756]],["name/603",[415,74.217]],["parent/603",[410,3.756]],["name/604",[416,65.723]],["parent/604",[410,3.756]],["name/605",[417,74.217]],["parent/605",[410,3.756]],["name/606",[414,55.712]],["parent/606",[410,3.756]],["name/607",[418,65.723]],["parent/607",[410,3.756]],["name/608",[416,65.723]],["parent/608",[410,3.756]],["name/609",[419,69.096]],["parent/609",[410,3.756]],["name/610",[420,74.217]],["parent/610",[410,3.756]],["name/611",[421,74.217]],["parent/611",[410,3.756]],["name/612",[395,65.723]],["parent/612",[410,3.756]],["name/613",[422,69.096]],["parent/613",[410,3.756]],["name/614",[423,69.096]],["parent/614",[410,3.756]],["name/615",[424,61.191]],["parent/615",[410,3.756]],["name/616",[425,63.203]],["parent/616",[410,3.756]],["name/617",[426,65.723]],["parent/617",[410,3.756]],["name/618",[426,65.723]],["parent/618",[410,3.756]],["name/619",[427,63.203]],["parent/619",[410,3.756]],["name/620",[428,69.096]],["parent/620",[410,3.756]],["name/621",[429,69.096]],["parent/621",[410,3.756]],["name/622",[429,69.096]],["parent/622",[410,3.756]],["name/623",[21,43.382]],["parent/623",[410,3.756]],["name/624",[13,59.517]],["parent/624",[410,3.756]],["name/625",[13,59.517]],["parent/625",[410,3.756]],["name/626",[13,59.517]],["parent/626",[410,3.756]],["name/627",[21,43.382]],["parent/627",[410,3.756]],["name/628",[15,63.203]],["parent/628",[410,3.756]],["name/629",[15,63.203]],["parent/629",[410,3.756]],["name/630",[21,43.382]],["parent/630",[410,3.756]],["name/631",[17,59.517]],["parent/631",[410,3.756]],["name/632",[17,59.517]],["parent/632",[410,3.756]],["name/633",[17,59.517]],["parent/633",[410,3.756]],["name/634",[21,43.382]],["parent/634",[410,3.756]],["name/635",[19,63.203]],["parent/635",[410,3.756]],["name/636",[19,63.203]],["parent/636",[410,3.756]],["name/637",[21,43.382]],["parent/637",[410,3.756]],["name/638",[430,65.723]],["parent/638",[410,3.756]],["name/639",[430,65.723]],["parent/639",[410,3.756]],["name/640",[21,43.382]],["parent/640",[410,3.756]],["name/641",[431,74.217]],["parent/641",[410,3.756]],["name/642",[432,74.217]],["parent/642",[410,3.756]],["name/643",[433,61.191]],["parent/643",[410,3.756]],["name/644",[434,74.217]],["parent/644",[410,3.756]],["name/645",[435,74.217]],["parent/645",[410,3.756]],["name/646",[436,74.217]],["parent/646",[410,3.756]],["name/647",[437,74.217]],["parent/647",[410,3.756]],["name/648",[438,74.217]],["parent/648",[410,3.756]],["name/649",[439,63.203]],["parent/649",[410,3.756]],["name/650",[440,74.217]],["parent/650",[410,3.756]],["name/651",[112,37.077,441,34.458]],["parent/651",[]],["name/652",[442,74.217]],["parent/652",[112,3.669,441,3.41]],["name/653",[443,74.217]],["parent/653",[112,3.669,441,3.41]],["name/654",[21,43.382]],["parent/654",[441,3.41,444,5.218]],["name/655",[23,53.797]],["parent/655",[112,3.669,441,3.41]],["name/656",[411,65.723]],["parent/656",[441,3.41,445,2.988]],["name/657",[31,50.805]],["parent/657",[441,3.41,445,2.988]],["name/658",[433,61.191]],["parent/658",[441,3.41,445,2.988]],["name/659",[446,69.096]],["parent/659",[441,3.41,445,2.988]],["name/660",[416,65.723]],["parent/660",[441,3.41,445,2.988]],["name/661",[395,65.723]],["parent/661",[441,3.41,445,2.988]],["name/662",[422,69.096]],["parent/662",[441,3.41,445,2.988]],["name/663",[425,63.203]],["parent/663",[441,3.41,445,2.988]],["name/664",[38,63.203]],["parent/664",[441,3.41,445,2.988]],["name/665",[427,63.203]],["parent/665",[441,3.41,445,2.988]],["name/666",[447,61.191]],["parent/666",[441,3.41,445,2.988]],["name/667",[447,61.191]],["parent/667",[441,3.41,445,2.988]],["name/668",[21,43.382]],["parent/668",[441,3.41,445,2.988]],["name/669",[448,69.096]],["parent/669",[441,3.41,445,2.988]],["name/670",[449,58.082]],["parent/670",[]],["name/671",[450,74.217]],["parent/671",[449,5.766]],["name/672",[451,69.096]],["parent/672",[452,6.274]],["name/673",[453,69.096]],["parent/673",[452,6.274]],["name/674",[454,69.096]],["parent/674",[452,6.274]],["name/675",[455,69.096]],["parent/675",[452,6.274]],["name/676",[456,74.217]],["parent/676",[449,5.766]],["name/677",[457,74.217]],["parent/677",[449,5.766]],["name/678",[458,74.217]],["parent/678",[459,5.766]],["name/679",[451,69.096]],["parent/679",[459,5.766]],["name/680",[453,69.096]],["parent/680",[459,5.766]],["name/681",[454,69.096]],["parent/681",[459,5.766]],["name/682",[455,69.096]],["parent/682",[459,5.766]],["name/683",[21,43.382]],["parent/683",[459,5.766]],["name/684",[21,43.382]],["parent/684",[459,5.766]],["name/685",[460,74.217]],["parent/685",[449,5.766]],["name/686",[461,74.217]],["parent/686",[449,5.766]],["name/687",[21,43.382]],["parent/687",[462,7.367]],["name/688",[23,53.797]],["parent/688",[449,5.766]],["name/689",[419,69.096]],["parent/689",[463,4.548]],["name/690",[464,74.217]],["parent/690",[463,4.548]],["name/691",[465,74.217]],["parent/691",[463,4.548]],["name/692",[31,50.805]],["parent/692",[463,4.548]],["name/693",[466,74.217]],["parent/693",[463,4.548]],["name/694",[414,55.712]],["parent/694",[463,4.548]],["name/695",[389,65.723]],["parent/695",[463,4.548]],["name/696",[418,65.723]],["parent/696",[463,4.548]],["name/697",[418,65.723]],["parent/697",[463,4.548]],["name/698",[467,69.096]],["parent/698",[463,4.548]],["name/699",[467,69.096]],["parent/699",[463,4.548]],["name/700",[468,69.096]],["parent/700",[463,4.548]],["name/701",[468,69.096]],["parent/701",[463,4.548]],["name/702",[424,61.191]],["parent/702",[463,4.548]],["name/703",[424,61.191]],["parent/703",[463,4.548]],["name/704",[469,74.217]],["parent/704",[463,4.548]],["name/705",[470,74.217]],["parent/705",[463,4.548]],["name/706",[471,74.217]],["parent/706",[463,4.548]],["name/707",[472,74.217]],["parent/707",[463,4.548]],["name/708",[473,74.217]],["parent/708",[463,4.548]],["name/709",[474,74.217]],["parent/709",[463,4.548]],["name/710",[439,63.203]],["parent/710",[463,4.548]],["name/711",[430,65.723]],["parent/711",[463,4.548]],["name/712",[475,74.217]],["parent/712",[463,4.548]],["name/713",[476,74.217]],["parent/713",[463,4.548]],["name/714",[477,31.509,478,42.282]],["parent/714",[]],["name/715",[479,74.217]],["parent/715",[477,3.118,478,4.184]],["name/716",[480,59.517]],["parent/716",[477,3.118,481,4.858]],["name/717",[482,69.096]],["parent/717",[477,3.118,481,4.858]],["name/718",[23,53.797]],["parent/718",[477,3.118,478,4.184]],["name/719",[31,50.805]],["parent/719",[477,3.118,483,3.249]],["name/720",[414,55.712]],["parent/720",[477,3.118,483,3.249]],["name/721",[482,69.096]],["parent/721",[477,3.118,483,3.249]],["name/722",[484,74.217]],["parent/722",[477,3.118,483,3.249]],["name/723",[485,74.217]],["parent/723",[477,3.118,483,3.249]],["name/724",[478,59.517]],["parent/724",[477,3.118,483,3.249]],["name/725",[424,61.191]],["parent/725",[477,3.118,483,3.249]],["name/726",[486,74.217]],["parent/726",[477,3.118,483,3.249]],["name/727",[487,74.217]],["parent/727",[477,3.118,483,3.249]],["name/728",[488,69.096]],["parent/728",[477,3.118,483,3.249]],["name/729",[488,69.096]],["parent/729",[477,3.118,483,3.249]],["name/730",[489,74.217]],["parent/730",[477,3.118,483,3.249]],["name/731",[490,74.217]],["parent/731",[477,3.118,483,3.249]],["name/732",[491,74.217]],["parent/732",[477,3.118,483,3.249]],["name/733",[492,74.217]],["parent/733",[477,3.118,483,3.249]],["name/734",[493,69.096]],["parent/734",[477,3.118,483,3.249]],["name/735",[494,74.217]],["parent/735",[477,3.118,483,3.249]],["name/736",[495,74.217]],["parent/736",[477,3.118,483,3.249]],["name/737",[496,74.217]],["parent/737",[477,3.118,483,3.249]],["name/738",[497,74.217]],["parent/738",[477,3.118,483,3.249]],["name/739",[498,74.217]],["parent/739",[477,3.118,483,3.249]],["name/740",[499,69.096]],["parent/740",[477,3.118,483,3.249]],["name/741",[500,74.217]],["parent/741",[477,3.118,483,3.249]],["name/742",[439,63.203]],["parent/742",[477,3.118,483,3.249]],["name/743",[501,65.723]],["parent/743",[]],["name/744",[23,53.797]],["parent/744",[501,6.524]],["name/745",[21,43.382]],["parent/745",[501,6.524]],["name/746",[180,63.203]],["parent/746",[502,1.929]],["name/747",[180,63.203]],["parent/747",[502,1.929]],["name/748",[181,63.203]],["parent/748",[502,1.929]],["name/749",[181,63.203]],["parent/749",[502,1.929]],["name/750",[182,63.203]],["parent/750",[502,1.929]],["name/751",[182,63.203]],["parent/751",[502,1.929]],["name/752",[183,63.203]],["parent/752",[502,1.929]],["name/753",[183,63.203]],["parent/753",[502,1.929]],["name/754",[184,63.203]],["parent/754",[502,1.929]],["name/755",[184,63.203]],["parent/755",[502,1.929]],["name/756",[185,63.203]],["parent/756",[502,1.929]],["name/757",[185,63.203]],["parent/757",[502,1.929]],["name/758",[186,63.203]],["parent/758",[502,1.929]],["name/759",[186,63.203]],["parent/759",[502,1.929]],["name/760",[187,63.203]],["parent/760",[502,1.929]],["name/761",[187,63.203]],["parent/761",[502,1.929]],["name/762",[188,63.203]],["parent/762",[502,1.929]],["name/763",[188,63.203]],["parent/763",[502,1.929]],["name/764",[189,63.203]],["parent/764",[502,1.929]],["name/765",[189,63.203]],["parent/765",[502,1.929]],["name/766",[190,63.203]],["parent/766",[502,1.929]],["name/767",[190,63.203]],["parent/767",[502,1.929]],["name/768",[191,63.203]],["parent/768",[502,1.929]],["name/769",[191,63.203]],["parent/769",[502,1.929]],["name/770",[192,63.203]],["parent/770",[502,1.929]],["name/771",[192,63.203]],["parent/771",[502,1.929]],["name/772",[193,63.203]],["parent/772",[502,1.929]],["name/773",[193,63.203]],["parent/773",[502,1.929]],["name/774",[194,63.203]],["parent/774",[502,1.929]],["name/775",[194,63.203]],["parent/775",[502,1.929]],["name/776",[195,63.203]],["parent/776",[502,1.929]],["name/777",[195,63.203]],["parent/777",[502,1.929]],["name/778",[196,63.203]],["parent/778",[502,1.929]],["name/779",[196,63.203]],["parent/779",[502,1.929]],["name/780",[197,63.203]],["parent/780",[502,1.929]],["name/781",[197,63.203]],["parent/781",[502,1.929]],["name/782",[198,63.203]],["parent/782",[502,1.929]],["name/783",[198,63.203]],["parent/783",[502,1.929]],["name/784",[199,63.203]],["parent/784",[502,1.929]],["name/785",[199,63.203]],["parent/785",[502,1.929]],["name/786",[200,63.203]],["parent/786",[502,1.929]],["name/787",[200,63.203]],["parent/787",[502,1.929]],["name/788",[201,63.203]],["parent/788",[502,1.929]],["name/789",[201,63.203]],["parent/789",[502,1.929]],["name/790",[202,63.203]],["parent/790",[502,1.929]],["name/791",[202,63.203]],["parent/791",[502,1.929]],["name/792",[203,63.203]],["parent/792",[502,1.929]],["name/793",[203,63.203]],["parent/793",[502,1.929]],["name/794",[204,63.203]],["parent/794",[502,1.929]],["name/795",[204,63.203]],["parent/795",[502,1.929]],["name/796",[205,69.096]],["parent/796",[502,1.929]],["name/797",[206,69.096]],["parent/797",[502,1.929]],["name/798",[207,63.203]],["parent/798",[502,1.929]],["name/799",[207,63.203]],["parent/799",[502,1.929]],["name/800",[208,63.203]],["parent/800",[502,1.929]],["name/801",[208,63.203]],["parent/801",[502,1.929]],["name/802",[209,69.096]],["parent/802",[502,1.929]],["name/803",[210,69.096]],["parent/803",[502,1.929]],["name/804",[211,63.203]],["parent/804",[502,1.929]],["name/805",[211,63.203]],["parent/805",[502,1.929]],["name/806",[212,63.203]],["parent/806",[502,1.929]],["name/807",[212,63.203]],["parent/807",[502,1.929]],["name/808",[213,63.203]],["parent/808",[502,1.929]],["name/809",[213,63.203]],["parent/809",[502,1.929]],["name/810",[214,63.203]],["parent/810",[502,1.929]],["name/811",[214,63.203]],["parent/811",[502,1.929]],["name/812",[215,63.203]],["parent/812",[502,1.929]],["name/813",[215,63.203]],["parent/813",[502,1.929]],["name/814",[216,63.203]],["parent/814",[502,1.929]],["name/815",[216,63.203]],["parent/815",[502,1.929]],["name/816",[217,63.203]],["parent/816",[502,1.929]],["name/817",[217,63.203]],["parent/817",[502,1.929]],["name/818",[218,63.203]],["parent/818",[502,1.929]],["name/819",[218,63.203]],["parent/819",[502,1.929]],["name/820",[219,63.203]],["parent/820",[502,1.929]],["name/821",[219,63.203]],["parent/821",[502,1.929]],["name/822",[220,63.203]],["parent/822",[502,1.929]],["name/823",[220,63.203]],["parent/823",[502,1.929]],["name/824",[221,63.203]],["parent/824",[502,1.929]],["name/825",[221,63.203]],["parent/825",[502,1.929]],["name/826",[222,63.203]],["parent/826",[502,1.929]],["name/827",[222,63.203]],["parent/827",[502,1.929]],["name/828",[223,63.203]],["parent/828",[502,1.929]],["name/829",[223,63.203]],["parent/829",[502,1.929]],["name/830",[224,63.203]],["parent/830",[502,1.929]],["name/831",[224,63.203]],["parent/831",[502,1.929]],["name/832",[225,63.203]],["parent/832",[502,1.929]],["name/833",[225,63.203]],["parent/833",[502,1.929]],["name/834",[226,69.096]],["parent/834",[502,1.929]],["name/835",[227,69.096]],["parent/835",[502,1.929]],["name/836",[228,69.096]],["parent/836",[502,1.929]],["name/837",[229,69.096]],["parent/837",[502,1.929]],["name/838",[230,63.203]],["parent/838",[502,1.929]],["name/839",[230,63.203]],["parent/839",[502,1.929]],["name/840",[231,63.203]],["parent/840",[502,1.929]],["name/841",[231,63.203]],["parent/841",[502,1.929]],["name/842",[232,63.203]],["parent/842",[502,1.929]],["name/843",[232,63.203]],["parent/843",[502,1.929]],["name/844",[233,63.203]],["parent/844",[502,1.929]],["name/845",[233,63.203]],["parent/845",[502,1.929]],["name/846",[234,63.203]],["parent/846",[502,1.929]],["name/847",[234,63.203]],["parent/847",[502,1.929]],["name/848",[235,63.203]],["parent/848",[502,1.929]],["name/849",[235,63.203]],["parent/849",[502,1.929]],["name/850",[236,63.203]],["parent/850",[502,1.929]],["name/851",[236,63.203]],["parent/851",[502,1.929]],["name/852",[237,63.203]],["parent/852",[502,1.929]],["name/853",[237,63.203]],["parent/853",[502,1.929]],["name/854",[238,63.203]],["parent/854",[502,1.929]],["name/855",[238,63.203]],["parent/855",[502,1.929]],["name/856",[239,63.203]],["parent/856",[502,1.929]],["name/857",[239,63.203]],["parent/857",[502,1.929]],["name/858",[240,63.203]],["parent/858",[502,1.929]],["name/859",[240,63.203]],["parent/859",[502,1.929]],["name/860",[241,63.203]],["parent/860",[502,1.929]],["name/861",[241,63.203]],["parent/861",[502,1.929]],["name/862",[242,63.203]],["parent/862",[502,1.929]],["name/863",[242,63.203]],["parent/863",[502,1.929]],["name/864",[243,69.096]],["parent/864",[502,1.929]],["name/865",[244,69.096]],["parent/865",[502,1.929]],["name/866",[245,63.203]],["parent/866",[502,1.929]],["name/867",[245,63.203]],["parent/867",[502,1.929]],["name/868",[246,69.096]],["parent/868",[502,1.929]],["name/869",[247,69.096]],["parent/869",[502,1.929]],["name/870",[248,63.203]],["parent/870",[502,1.929]],["name/871",[248,63.203]],["parent/871",[502,1.929]],["name/872",[249,63.203]],["parent/872",[502,1.929]],["name/873",[249,63.203]],["parent/873",[502,1.929]],["name/874",[250,63.203]],["parent/874",[502,1.929]],["name/875",[250,63.203]],["parent/875",[502,1.929]],["name/876",[251,63.203]],["parent/876",[502,1.929]],["name/877",[251,63.203]],["parent/877",[502,1.929]],["name/878",[252,63.203]],["parent/878",[502,1.929]],["name/879",[252,63.203]],["parent/879",[502,1.929]],["name/880",[253,63.203]],["parent/880",[502,1.929]],["name/881",[253,63.203]],["parent/881",[502,1.929]],["name/882",[254,63.203]],["parent/882",[502,1.929]],["name/883",[254,63.203]],["parent/883",[502,1.929]],["name/884",[255,63.203]],["parent/884",[502,1.929]],["name/885",[255,63.203]],["parent/885",[502,1.929]],["name/886",[256,63.203]],["parent/886",[502,1.929]],["name/887",[256,63.203]],["parent/887",[502,1.929]],["name/888",[257,63.203]],["parent/888",[502,1.929]],["name/889",[257,63.203]],["parent/889",[502,1.929]],["name/890",[258,63.203]],["parent/890",[502,1.929]],["name/891",[258,63.203]],["parent/891",[502,1.929]],["name/892",[259,63.203]],["parent/892",[502,1.929]],["name/893",[259,63.203]],["parent/893",[502,1.929]],["name/894",[260,63.203]],["parent/894",[502,1.929]],["name/895",[260,63.203]],["parent/895",[502,1.929]],["name/896",[261,63.203]],["parent/896",[502,1.929]],["name/897",[261,63.203]],["parent/897",[502,1.929]],["name/898",[262,63.203]],["parent/898",[502,1.929]],["name/899",[262,63.203]],["parent/899",[502,1.929]],["name/900",[263,63.203]],["parent/900",[502,1.929]],["name/901",[263,63.203]],["parent/901",[502,1.929]],["name/902",[264,63.203]],["parent/902",[502,1.929]],["name/903",[264,63.203]],["parent/903",[502,1.929]],["name/904",[265,63.203]],["parent/904",[502,1.929]],["name/905",[265,63.203]],["parent/905",[502,1.929]],["name/906",[266,63.203]],["parent/906",[502,1.929]],["name/907",[266,63.203]],["parent/907",[502,1.929]],["name/908",[267,63.203]],["parent/908",[502,1.929]],["name/909",[267,63.203]],["parent/909",[502,1.929]],["name/910",[268,63.203]],["parent/910",[502,1.929]],["name/911",[268,63.203]],["parent/911",[502,1.929]],["name/912",[269,63.203]],["parent/912",[502,1.929]],["name/913",[269,63.203]],["parent/913",[502,1.929]],["name/914",[270,69.096]],["parent/914",[502,1.929]],["name/915",[271,69.096]],["parent/915",[502,1.929]],["name/916",[272,63.203]],["parent/916",[502,1.929]],["name/917",[272,63.203]],["parent/917",[502,1.929]],["name/918",[273,63.203]],["parent/918",[502,1.929]],["name/919",[273,63.203]],["parent/919",[502,1.929]],["name/920",[274,63.203]],["parent/920",[502,1.929]],["name/921",[274,63.203]],["parent/921",[502,1.929]],["name/922",[275,63.203]],["parent/922",[502,1.929]],["name/923",[275,63.203]],["parent/923",[502,1.929]],["name/924",[276,63.203]],["parent/924",[502,1.929]],["name/925",[276,63.203]],["parent/925",[502,1.929]],["name/926",[277,63.203]],["parent/926",[502,1.929]],["name/927",[277,63.203]],["parent/927",[502,1.929]],["name/928",[278,63.203]],["parent/928",[502,1.929]],["name/929",[278,63.203]],["parent/929",[502,1.929]],["name/930",[279,63.203]],["parent/930",[502,1.929]],["name/931",[279,63.203]],["parent/931",[502,1.929]],["name/932",[280,63.203]],["parent/932",[502,1.929]],["name/933",[280,63.203]],["parent/933",[502,1.929]],["name/934",[281,63.203]],["parent/934",[502,1.929]],["name/935",[281,63.203]],["parent/935",[502,1.929]],["name/936",[282,61.191]],["parent/936",[502,1.929]],["name/937",[282,61.191]],["parent/937",[502,1.929]],["name/938",[283,63.203]],["parent/938",[502,1.929]],["name/939",[283,63.203]],["parent/939",[502,1.929]],["name/940",[284,63.203]],["parent/940",[502,1.929]],["name/941",[284,63.203]],["parent/941",[502,1.929]],["name/942",[285,63.203]],["parent/942",[502,1.929]],["name/943",[285,63.203]],["parent/943",[502,1.929]],["name/944",[286,63.203]],["parent/944",[502,1.929]],["name/945",[286,63.203]],["parent/945",[502,1.929]],["name/946",[287,63.203]],["parent/946",[502,1.929]],["name/947",[287,63.203]],["parent/947",[502,1.929]],["name/948",[288,63.203]],["parent/948",[502,1.929]],["name/949",[288,63.203]],["parent/949",[502,1.929]],["name/950",[289,63.203]],["parent/950",[502,1.929]],["name/951",[289,63.203]],["parent/951",[502,1.929]],["name/952",[290,63.203]],["parent/952",[502,1.929]],["name/953",[290,63.203]],["parent/953",[502,1.929]],["name/954",[291,61.191]],["parent/954",[502,1.929]],["name/955",[291,61.191]],["parent/955",[502,1.929]],["name/956",[292,63.203]],["parent/956",[502,1.929]],["name/957",[292,63.203]],["parent/957",[502,1.929]],["name/958",[293,69.096]],["parent/958",[502,1.929]],["name/959",[294,69.096]],["parent/959",[502,1.929]],["name/960",[295,63.203]],["parent/960",[502,1.929]],["name/961",[295,63.203]],["parent/961",[502,1.929]],["name/962",[296,63.203]],["parent/962",[502,1.929]],["name/963",[296,63.203]],["parent/963",[502,1.929]],["name/964",[297,63.203]],["parent/964",[502,1.929]],["name/965",[297,63.203]],["parent/965",[502,1.929]],["name/966",[298,63.203]],["parent/966",[502,1.929]],["name/967",[298,63.203]],["parent/967",[502,1.929]],["name/968",[299,63.203]],["parent/968",[502,1.929]],["name/969",[299,63.203]],["parent/969",[502,1.929]],["name/970",[300,63.203]],["parent/970",[502,1.929]],["name/971",[300,63.203]],["parent/971",[502,1.929]],["name/972",[301,63.203]],["parent/972",[502,1.929]],["name/973",[301,63.203]],["parent/973",[502,1.929]],["name/974",[302,63.203]],["parent/974",[502,1.929]],["name/975",[302,63.203]],["parent/975",[502,1.929]],["name/976",[303,59.517]],["parent/976",[502,1.929]],["name/977",[303,59.517]],["parent/977",[502,1.929]],["name/978",[304,63.203]],["parent/978",[502,1.929]],["name/979",[304,63.203]],["parent/979",[502,1.929]],["name/980",[305,63.203]],["parent/980",[502,1.929]],["name/981",[305,63.203]],["parent/981",[502,1.929]],["name/982",[306,63.203]],["parent/982",[502,1.929]],["name/983",[306,63.203]],["parent/983",[502,1.929]],["name/984",[307,63.203]],["parent/984",[502,1.929]],["name/985",[307,63.203]],["parent/985",[502,1.929]],["name/986",[308,69.096]],["parent/986",[502,1.929]],["name/987",[309,69.096]],["parent/987",[502,1.929]],["name/988",[310,63.203]],["parent/988",[502,1.929]],["name/989",[310,63.203]],["parent/989",[502,1.929]],["name/990",[311,63.203]],["parent/990",[502,1.929]],["name/991",[311,63.203]],["parent/991",[502,1.929]],["name/992",[312,69.096]],["parent/992",[502,1.929]],["name/993",[313,69.096]],["parent/993",[502,1.929]],["name/994",[314,63.203]],["parent/994",[502,1.929]],["name/995",[314,63.203]],["parent/995",[502,1.929]],["name/996",[315,69.096]],["parent/996",[502,1.929]],["name/997",[316,69.096]],["parent/997",[502,1.929]],["name/998",[317,69.096]],["parent/998",[502,1.929]],["name/999",[318,69.096]],["parent/999",[502,1.929]],["name/1000",[319,69.096]],["parent/1000",[502,1.929]],["name/1001",[320,69.096]],["parent/1001",[502,1.929]],["name/1002",[321,69.096]],["parent/1002",[502,1.929]],["name/1003",[322,69.096]],["parent/1003",[502,1.929]],["name/1004",[323,69.096]],["parent/1004",[502,1.929]],["name/1005",[324,69.096]],["parent/1005",[502,1.929]],["name/1006",[325,69.096]],["parent/1006",[502,1.929]],["name/1007",[326,69.096]],["parent/1007",[502,1.929]],["name/1008",[327,69.096]],["parent/1008",[502,1.929]],["name/1009",[328,69.096]],["parent/1009",[502,1.929]],["name/1010",[329,69.096]],["parent/1010",[502,1.929]],["name/1011",[330,69.096]],["parent/1011",[502,1.929]],["name/1012",[331,63.203]],["parent/1012",[502,1.929]],["name/1013",[331,63.203]],["parent/1013",[502,1.929]],["name/1014",[332,69.096]],["parent/1014",[502,1.929]],["name/1015",[333,69.096]],["parent/1015",[502,1.929]],["name/1016",[334,63.203]],["parent/1016",[502,1.929]],["name/1017",[334,63.203]],["parent/1017",[502,1.929]],["name/1018",[335,63.203]],["parent/1018",[502,1.929]],["name/1019",[335,63.203]],["parent/1019",[502,1.929]],["name/1020",[336,63.203]],["parent/1020",[502,1.929]],["name/1021",[336,63.203]],["parent/1021",[502,1.929]],["name/1022",[337,63.203]],["parent/1022",[502,1.929]],["name/1023",[337,63.203]],["parent/1023",[502,1.929]],["name/1024",[338,63.203]],["parent/1024",[502,1.929]],["name/1025",[338,63.203]],["parent/1025",[502,1.929]],["name/1026",[339,63.203]],["parent/1026",[502,1.929]],["name/1027",[339,63.203]],["parent/1027",[502,1.929]],["name/1028",[340,63.203]],["parent/1028",[502,1.929]],["name/1029",[340,63.203]],["parent/1029",[502,1.929]],["name/1030",[341,63.203]],["parent/1030",[502,1.929]],["name/1031",[341,63.203]],["parent/1031",[502,1.929]],["name/1032",[342,63.203]],["parent/1032",[502,1.929]],["name/1033",[342,63.203]],["parent/1033",[502,1.929]],["name/1034",[343,69.096]],["parent/1034",[502,1.929]],["name/1035",[344,69.096]],["parent/1035",[502,1.929]],["name/1036",[345,63.203]],["parent/1036",[502,1.929]],["name/1037",[345,63.203]],["parent/1037",[502,1.929]],["name/1038",[346,63.203]],["parent/1038",[502,1.929]],["name/1039",[346,63.203]],["parent/1039",[502,1.929]],["name/1040",[347,63.203]],["parent/1040",[502,1.929]],["name/1041",[347,63.203]],["parent/1041",[502,1.929]],["name/1042",[348,69.096]],["parent/1042",[502,1.929]],["name/1043",[349,69.096]],["parent/1043",[502,1.929]],["name/1044",[350,63.203]],["parent/1044",[502,1.929]],["name/1045",[350,63.203]],["parent/1045",[502,1.929]],["name/1046",[351,63.203]],["parent/1046",[502,1.929]],["name/1047",[351,63.203]],["parent/1047",[502,1.929]],["name/1048",[352,63.203]],["parent/1048",[502,1.929]],["name/1049",[352,63.203]],["parent/1049",[502,1.929]],["name/1050",[353,63.203]],["parent/1050",[502,1.929]],["name/1051",[353,63.203]],["parent/1051",[502,1.929]],["name/1052",[354,69.096]],["parent/1052",[502,1.929]],["name/1053",[355,69.096]],["parent/1053",[502,1.929]],["name/1054",[356,63.203]],["parent/1054",[502,1.929]],["name/1055",[356,63.203]],["parent/1055",[502,1.929]],["name/1056",[357,69.096]],["parent/1056",[502,1.929]],["name/1057",[358,69.096]],["parent/1057",[502,1.929]],["name/1058",[359,63.203]],["parent/1058",[502,1.929]],["name/1059",[359,63.203]],["parent/1059",[502,1.929]],["name/1060",[360,69.096]],["parent/1060",[502,1.929]],["name/1061",[361,69.096]],["parent/1061",[502,1.929]],["name/1062",[362,69.096]],["parent/1062",[502,1.929]],["name/1063",[363,69.096]],["parent/1063",[502,1.929]],["name/1064",[364,63.203]],["parent/1064",[502,1.929]],["name/1065",[364,63.203]],["parent/1065",[502,1.929]],["name/1066",[365,69.096]],["parent/1066",[502,1.929]],["name/1067",[366,69.096]],["parent/1067",[502,1.929]],["name/1068",[367,63.203]],["parent/1068",[502,1.929]],["name/1069",[367,63.203]],["parent/1069",[502,1.929]],["name/1070",[368,63.203]],["parent/1070",[502,1.929]],["name/1071",[368,63.203]],["parent/1071",[502,1.929]],["name/1072",[369,69.096]],["parent/1072",[502,1.929]],["name/1073",[370,69.096]],["parent/1073",[502,1.929]],["name/1074",[371,63.203]],["parent/1074",[502,1.929]],["name/1075",[371,63.203]],["parent/1075",[502,1.929]],["name/1076",[372,63.203]],["parent/1076",[502,1.929]],["name/1077",[372,63.203]],["parent/1077",[502,1.929]],["name/1078",[373,63.203]],["parent/1078",[502,1.929]],["name/1079",[373,63.203]],["parent/1079",[502,1.929]],["name/1080",[374,63.203]],["parent/1080",[502,1.929]],["name/1081",[374,63.203]],["parent/1081",[502,1.929]],["name/1082",[375,63.203]],["parent/1082",[502,1.929]],["name/1083",[375,63.203]],["parent/1083",[502,1.929]],["name/1084",[376,63.203]],["parent/1084",[502,1.929]],["name/1085",[376,63.203]],["parent/1085",[502,1.929]],["name/1086",[377,63.203]],["parent/1086",[502,1.929]],["name/1087",[377,63.203]],["parent/1087",[502,1.929]],["name/1088",[378,63.203]],["parent/1088",[502,1.929]],["name/1089",[378,63.203]],["parent/1089",[502,1.929]],["name/1090",[379,63.203]],["parent/1090",[502,1.929]],["name/1091",[379,63.203]],["parent/1091",[502,1.929]],["name/1092",[380,63.203]],["parent/1092",[502,1.929]],["name/1093",[380,63.203]],["parent/1093",[502,1.929]],["name/1094",[381,69.096]],["parent/1094",[502,1.929]],["name/1095",[382,69.096]],["parent/1095",[502,1.929]],["name/1096",[383,63.203]],["parent/1096",[502,1.929]],["name/1097",[383,63.203]],["parent/1097",[502,1.929]],["name/1098",[384,63.203]],["parent/1098",[502,1.929]],["name/1099",[384,63.203]],["parent/1099",[502,1.929]],["name/1100",[503,61.191]],["parent/1100",[]],["name/1101",[504,74.217]],["parent/1101",[503,6.074]],["name/1102",[505,69.096]],["parent/1102",[503,6.074]],["name/1103",[506,74.217]],["parent/1103",[507,5.908]],["name/1104",[508,74.217]],["parent/1104",[507,5.908]],["name/1105",[509,74.217]],["parent/1105",[507,5.908]],["name/1106",[510,74.217]],["parent/1106",[507,5.908]],["name/1107",[397,65.723]],["parent/1107",[507,5.908]],["name/1108",[398,65.723]],["parent/1108",[507,5.908]],["name/1109",[511,69.096]],["parent/1109",[503,6.074]],["name/1110",[23,53.797]],["parent/1110",[503,6.074]],["name/1111",[512,74.217]],["parent/1111",[513,4.867]],["name/1112",[412,69.096]],["parent/1112",[513,4.867]],["name/1113",[31,50.805]],["parent/1113",[513,4.867]],["name/1114",[414,55.712]],["parent/1114",[513,4.867]],["name/1115",[478,59.517]],["parent/1115",[513,4.867]],["name/1116",[433,61.191]],["parent/1116",[513,4.867]],["name/1117",[21,43.382]],["parent/1117",[513,4.867]],["name/1118",[423,69.096]],["parent/1118",[513,4.867]],["name/1119",[424,61.191]],["parent/1119",[513,4.867]],["name/1120",[425,63.203]],["parent/1120",[513,4.867]],["name/1121",[426,65.723]],["parent/1121",[513,4.867]],["name/1122",[427,63.203]],["parent/1122",[513,4.867]],["name/1123",[428,69.096]],["parent/1123",[513,4.867]],["name/1124",[514,74.217]],["parent/1124",[513,4.867]],["name/1125",[433,61.191]],["parent/1125",[513,4.867]],["name/1126",[499,69.096]],["parent/1126",[513,4.867]],["name/1127",[493,69.096]],["parent/1127",[513,4.867]],["name/1128",[439,63.203]],["parent/1128",[513,4.867]],["name/1129",[112,37.077,515,35.228]],["parent/1129",[]],["name/1130",[516,74.217]],["parent/1130",[112,3.669,515,3.486]],["name/1131",[517,74.217]],["parent/1131",[112,3.669,515,3.486]],["name/1132",[21,43.382]],["parent/1132",[515,3.486,518,5.218]],["name/1133",[23,53.797]],["parent/1133",[112,3.669,515,3.486]],["name/1134",[411,65.723]],["parent/1134",[445,2.988,515,3.486]],["name/1135",[31,50.805]],["parent/1135",[445,2.988,515,3.486]],["name/1136",[433,61.191]],["parent/1136",[445,2.988,515,3.486]],["name/1137",[446,69.096]],["parent/1137",[445,2.988,515,3.486]],["name/1138",[519,74.217]],["parent/1138",[445,2.988,515,3.486]],["name/1139",[425,63.203]],["parent/1139",[445,2.988,515,3.486]],["name/1140",[38,63.203]],["parent/1140",[445,2.988,515,3.486]],["name/1141",[427,63.203]],["parent/1141",[445,2.988,515,3.486]],["name/1142",[447,61.191]],["parent/1142",[445,2.988,515,3.486]],["name/1143",[447,61.191]],["parent/1143",[445,2.988,515,3.486]],["name/1144",[21,43.382]],["parent/1144",[445,2.988,515,3.486]],["name/1145",[448,69.096]],["parent/1145",[445,2.988,515,3.486]],["name/1146",[414,39.579,520,44.901]],["parent/1146",[]],["name/1147",[2,63.203]],["parent/1147",[414,3.917,520,4.444]],["name/1148",[521,74.217]],["parent/1148",[414,3.917,520,4.444]],["name/1149",[2,63.203]],["parent/1149",[414,3.917,520,4.444]],["name/1150",[522,56.827]],["parent/1150",[]],["name/1151",[523,74.217]],["parent/1151",[522,5.641]],["name/1152",[524,74.217]],["parent/1152",[522,5.641]],["name/1153",[525,74.217]],["parent/1153",[522,5.641]],["name/1154",[526,74.217]],["parent/1154",[522,5.641]],["name/1155",[527,69.096]],["parent/1155",[522,5.641]],["name/1156",[528,74.217]],["parent/1156",[522,5.641]],["name/1157",[529,74.217]],["parent/1157",[522,5.641]],["name/1158",[530,65.723]],["parent/1158",[]],["name/1159",[531,22.479]],["parent/1159",[530,6.524]],["name/1160",[532,22.517]],["parent/1160",[530,6.524]],["name/1161",[533,65.723]],["parent/1161",[]],["name/1162",[531,22.479]],["parent/1162",[533,6.524]],["name/1163",[532,22.517]],["parent/1163",[533,6.524]],["name/1164",[534,65.723]],["parent/1164",[]],["name/1165",[531,22.479]],["parent/1165",[534,6.524]],["name/1166",[532,22.517]],["parent/1166",[534,6.524]],["name/1167",[535,65.723]],["parent/1167",[]],["name/1168",[531,22.479]],["parent/1168",[535,6.524]],["name/1169",[532,22.517]],["parent/1169",[535,6.524]],["name/1170",[536,65.723]],["parent/1170",[]],["name/1171",[531,22.479]],["parent/1171",[536,6.524]],["name/1172",[532,22.517]],["parent/1172",[536,6.524]],["name/1173",[537,65.723]],["parent/1173",[]],["name/1174",[531,22.479]],["parent/1174",[537,6.524]],["name/1175",[532,22.517]],["parent/1175",[537,6.524]],["name/1176",[538,65.723]],["parent/1176",[]],["name/1177",[531,22.479]],["parent/1177",[538,6.524]],["name/1178",[532,22.517]],["parent/1178",[538,6.524]],["name/1179",[539,65.723]],["parent/1179",[]],["name/1180",[531,22.479]],["parent/1180",[539,6.524]],["name/1181",[532,22.517]],["parent/1181",[539,6.524]],["name/1182",[540,65.723]],["parent/1182",[]],["name/1183",[531,22.479]],["parent/1183",[540,6.524]],["name/1184",[532,22.517]],["parent/1184",[540,6.524]],["name/1185",[541,65.723]],["parent/1185",[]],["name/1186",[531,22.479]],["parent/1186",[541,6.524]],["name/1187",[532,22.517]],["parent/1187",[541,6.524]],["name/1188",[542,65.723]],["parent/1188",[]],["name/1189",[531,22.479]],["parent/1189",[542,6.524]],["name/1190",[532,22.517]],["parent/1190",[542,6.524]],["name/1191",[543,65.723]],["parent/1191",[]],["name/1192",[531,22.479]],["parent/1192",[543,6.524]],["name/1193",[532,22.517]],["parent/1193",[543,6.524]],["name/1194",[544,63.203]],["parent/1194",[]],["name/1195",[531,22.479]],["parent/1195",[544,6.274]],["name/1196",[532,22.517]],["parent/1196",[544,6.274]],["name/1197",[545,26.766]],["parent/1197",[544,6.274]],["name/1198",[546,65.723]],["parent/1198",[]],["name/1199",[531,22.479]],["parent/1199",[546,6.524]],["name/1200",[532,22.517]],["parent/1200",[546,6.524]],["name/1201",[547,63.203]],["parent/1201",[]],["name/1202",[531,22.479]],["parent/1202",[547,6.274]],["name/1203",[532,22.517]],["parent/1203",[547,6.274]],["name/1204",[548,74.217]],["parent/1204",[547,6.274]],["name/1205",[390,69.096]],["parent/1205",[549,6.859]],["name/1206",[391,69.096]],["parent/1206",[549,6.859]],["name/1207",[550,65.723]],["parent/1207",[]],["name/1208",[531,22.479]],["parent/1208",[550,6.524]],["name/1209",[532,22.517]],["parent/1209",[550,6.524]],["name/1210",[551,65.723]],["parent/1210",[]],["name/1211",[531,22.479]],["parent/1211",[551,6.524]],["name/1212",[532,22.517]],["parent/1212",[551,6.524]],["name/1213",[552,61.191]],["parent/1213",[]],["name/1214",[531,22.479]],["parent/1214",[552,6.074]],["name/1215",[532,22.517]],["parent/1215",[552,6.074]],["name/1216",[545,26.766]],["parent/1216",[552,6.074]],["name/1217",[553,34.415]],["parent/1217",[552,6.074]],["name/1218",[554,61.191]],["parent/1218",[]],["name/1219",[531,22.479]],["parent/1219",[554,6.074]],["name/1220",[532,22.517]],["parent/1220",[554,6.074]],["name/1221",[545,26.766]],["parent/1221",[554,6.074]],["name/1222",[553,34.415]],["parent/1222",[554,6.074]],["name/1223",[555,63.203]],["parent/1223",[]],["name/1224",[531,22.479]],["parent/1224",[555,6.274]],["name/1225",[532,22.517]],["parent/1225",[555,6.274]],["name/1226",[545,26.766]],["parent/1226",[555,6.274]],["name/1227",[556,61.191]],["parent/1227",[]],["name/1228",[531,22.479]],["parent/1228",[556,6.074]],["name/1229",[532,22.517]],["parent/1229",[556,6.074]],["name/1230",[545,26.766]],["parent/1230",[556,6.074]],["name/1231",[553,34.415]],["parent/1231",[556,6.074]],["name/1232",[557,63.203]],["parent/1232",[]],["name/1233",[531,22.479]],["parent/1233",[557,6.274]],["name/1234",[532,22.517]],["parent/1234",[557,6.274]],["name/1235",[545,26.766]],["parent/1235",[557,6.274]],["name/1236",[558,63.203]],["parent/1236",[]],["name/1237",[531,22.479]],["parent/1237",[558,6.274]],["name/1238",[532,22.517]],["parent/1238",[558,6.274]],["name/1239",[545,26.766]],["parent/1239",[558,6.274]],["name/1240",[559,63.203]],["parent/1240",[]],["name/1241",[531,22.479]],["parent/1241",[559,6.274]],["name/1242",[532,22.517]],["parent/1242",[559,6.274]],["name/1243",[545,26.766]],["parent/1243",[559,6.274]],["name/1244",[560,63.203]],["parent/1244",[]],["name/1245",[531,22.479]],["parent/1245",[560,6.274]],["name/1246",[532,22.517]],["parent/1246",[560,6.274]],["name/1247",[545,26.766]],["parent/1247",[560,6.274]],["name/1248",[561,63.203]],["parent/1248",[]],["name/1249",[531,22.479]],["parent/1249",[561,6.274]],["name/1250",[532,22.517]],["parent/1250",[561,6.274]],["name/1251",[545,26.766]],["parent/1251",[561,6.274]],["name/1252",[562,63.203]],["parent/1252",[]],["name/1253",[531,22.479]],["parent/1253",[562,6.274]],["name/1254",[532,22.517]],["parent/1254",[562,6.274]],["name/1255",[545,26.766]],["parent/1255",[562,6.274]],["name/1256",[563,65.723]],["parent/1256",[]],["name/1257",[531,22.479]],["parent/1257",[563,6.524]],["name/1258",[532,22.517]],["parent/1258",[563,6.524]],["name/1259",[564,65.723]],["parent/1259",[]],["name/1260",[531,22.479]],["parent/1260",[564,6.524]],["name/1261",[532,22.517]],["parent/1261",[564,6.524]],["name/1262",[565,65.723]],["parent/1262",[]],["name/1263",[531,22.479]],["parent/1263",[565,6.524]],["name/1264",[532,22.517]],["parent/1264",[565,6.524]],["name/1265",[566,63.203]],["parent/1265",[]],["name/1266",[531,22.479]],["parent/1266",[566,6.274]],["name/1267",[532,22.517]],["parent/1267",[566,6.274]],["name/1268",[553,34.415]],["parent/1268",[566,6.274]],["name/1269",[567,65.723]],["parent/1269",[]],["name/1270",[531,22.479]],["parent/1270",[567,6.524]],["name/1271",[532,22.517]],["parent/1271",[567,6.524]],["name/1272",[568,63.203]],["parent/1272",[]],["name/1273",[531,22.479]],["parent/1273",[568,6.274]],["name/1274",[532,22.517]],["parent/1274",[568,6.274]],["name/1275",[569,74.217]],["parent/1275",[568,6.274]],["name/1276",[570,74.217]],["parent/1276",[571,5.908]],["name/1277",[572,74.217]],["parent/1277",[571,5.908]],["name/1278",[480,59.517]],["parent/1278",[571,5.908]],["name/1279",[303,59.517]],["parent/1279",[571,5.908]],["name/1280",[573,74.217]],["parent/1280",[571,5.908]],["name/1281",[574,74.217]],["parent/1281",[571,5.908]],["name/1282",[575,65.723]],["parent/1282",[]],["name/1283",[531,22.479]],["parent/1283",[575,6.524]],["name/1284",[532,22.517]],["parent/1284",[575,6.524]],["name/1285",[576,65.723]],["parent/1285",[]],["name/1286",[531,22.479]],["parent/1286",[576,6.524]],["name/1287",[532,22.517]],["parent/1287",[576,6.524]],["name/1288",[577,65.723]],["parent/1288",[]],["name/1289",[531,22.479]],["parent/1289",[577,6.524]],["name/1290",[532,22.517]],["parent/1290",[577,6.524]],["name/1291",[578,65.723]],["parent/1291",[]],["name/1292",[531,22.479]],["parent/1292",[578,6.524]],["name/1293",[532,22.517]],["parent/1293",[578,6.524]],["name/1294",[579,63.203]],["parent/1294",[]],["name/1295",[531,22.479]],["parent/1295",[579,6.274]],["name/1296",[532,22.517]],["parent/1296",[579,6.274]],["name/1297",[580,74.217]],["parent/1297",[579,6.274]],["name/1298",[581,65.723]],["parent/1298",[]],["name/1299",[531,22.479]],["parent/1299",[581,6.524]],["name/1300",[532,22.517]],["parent/1300",[581,6.524]],["name/1301",[582,59.517]],["parent/1301",[]],["name/1302",[531,22.479]],["parent/1302",[582,5.908]],["name/1303",[532,22.517]],["parent/1303",[582,5.908]],["name/1304",[583,74.217]],["parent/1304",[582,5.908]],["name/1305",[584,74.217]],["parent/1305",[585,6.859]],["name/1306",[586,74.217]],["parent/1306",[585,6.859]],["name/1307",[587,74.217]],["parent/1307",[582,5.908]],["name/1308",[480,59.517]],["parent/1308",[588,5.431]],["name/1309",[387,65.723]],["parent/1309",[588,5.431]],["name/1310",[589,65.723]],["parent/1310",[588,5.431]],["name/1311",[590,69.096]],["parent/1311",[588,5.431]],["name/1312",[591,69.096]],["parent/1312",[588,5.431]],["name/1313",[592,69.096]],["parent/1313",[588,5.431]],["name/1314",[593,69.096]],["parent/1314",[588,5.431]],["name/1315",[594,69.096]],["parent/1315",[588,5.431]],["name/1316",[595,69.096]],["parent/1316",[588,5.431]],["name/1317",[596,69.096]],["parent/1317",[588,5.431]],["name/1318",[597,74.217]],["parent/1318",[582,5.908]],["name/1319",[478,59.517]],["parent/1319",[598,5.257]],["name/1320",[599,74.217]],["parent/1320",[598,5.257]],["name/1321",[480,59.517]],["parent/1321",[598,5.257]],["name/1322",[387,65.723]],["parent/1322",[598,5.257]],["name/1323",[589,65.723]],["parent/1323",[598,5.257]],["name/1324",[590,69.096]],["parent/1324",[598,5.257]],["name/1325",[591,69.096]],["parent/1325",[598,5.257]],["name/1326",[592,69.096]],["parent/1326",[598,5.257]],["name/1327",[593,69.096]],["parent/1327",[598,5.257]],["name/1328",[594,69.096]],["parent/1328",[598,5.257]],["name/1329",[595,69.096]],["parent/1329",[598,5.257]],["name/1330",[596,69.096]],["parent/1330",[598,5.257]],["name/1331",[600,63.203]],["parent/1331",[]],["name/1332",[531,22.479]],["parent/1332",[600,6.274]],["name/1333",[532,22.517]],["parent/1333",[600,6.274]],["name/1334",[601,74.217]],["parent/1334",[600,6.274]],["name/1335",[602,63.203]],["parent/1335",[]],["name/1336",[531,22.479]],["parent/1336",[602,6.274]],["name/1337",[532,22.517]],["parent/1337",[602,6.274]],["name/1338",[603,74.217]],["parent/1338",[602,6.274]],["name/1339",[604,74.217]],["parent/1339",[605,6.274]],["name/1340",[606,74.217]],["parent/1340",[605,6.274]],["name/1341",[607,74.217]],["parent/1341",[605,6.274]],["name/1342",[608,74.217]],["parent/1342",[605,6.274]],["name/1343",[609,63.203]],["parent/1343",[]],["name/1344",[531,22.479]],["parent/1344",[609,6.274]],["name/1345",[532,22.517]],["parent/1345",[609,6.274]],["name/1346",[610,74.217]],["parent/1346",[609,6.274]],["name/1347",[611,63.203]],["parent/1347",[]],["name/1348",[531,22.479]],["parent/1348",[611,6.274]],["name/1349",[532,22.517]],["parent/1349",[611,6.274]],["name/1350",[553,34.415]],["parent/1350",[611,6.274]],["name/1351",[612,63.203]],["parent/1351",[]],["name/1352",[531,22.479]],["parent/1352",[612,6.274]],["name/1353",[532,22.517]],["parent/1353",[612,6.274]],["name/1354",[553,34.415]],["parent/1354",[612,6.274]],["name/1355",[613,63.203]],["parent/1355",[]],["name/1356",[531,22.479]],["parent/1356",[613,6.274]],["name/1357",[532,22.517]],["parent/1357",[613,6.274]],["name/1358",[553,34.415]],["parent/1358",[613,6.274]],["name/1359",[614,63.203]],["parent/1359",[]],["name/1360",[531,22.479]],["parent/1360",[614,6.274]],["name/1361",[532,22.517]],["parent/1361",[614,6.274]],["name/1362",[553,34.415]],["parent/1362",[614,6.274]],["name/1363",[615,65.723]],["parent/1363",[]],["name/1364",[531,22.479]],["parent/1364",[615,6.524]],["name/1365",[616,65.723]],["parent/1365",[]],["name/1366",[531,22.479]],["parent/1366",[616,6.524]],["name/1367",[532,22.517]],["parent/1367",[616,6.524]],["name/1368",[617,65.723]],["parent/1368",[]],["name/1369",[531,22.479]],["parent/1369",[617,6.524]],["name/1370",[532,22.517]],["parent/1370",[617,6.524]],["name/1371",[618,65.723]],["parent/1371",[]],["name/1372",[531,22.479]],["parent/1372",[618,6.524]],["name/1373",[532,22.517]],["parent/1373",[618,6.524]],["name/1374",[619,63.203]],["parent/1374",[]],["name/1375",[531,22.479]],["parent/1375",[619,6.274]],["name/1376",[545,26.766]],["parent/1376",[619,6.274]],["name/1377",[620,63.203]],["parent/1377",[]],["name/1378",[531,22.479]],["parent/1378",[620,6.274]],["name/1379",[532,22.517]],["parent/1379",[620,6.274]],["name/1380",[553,34.415]],["parent/1380",[620,6.274]],["name/1381",[621,63.203]],["parent/1381",[]],["name/1382",[531,22.479]],["parent/1382",[621,6.274]],["name/1383",[532,22.517]],["parent/1383",[621,6.274]],["name/1384",[545,26.766]],["parent/1384",[621,6.274]],["name/1385",[622,63.203]],["parent/1385",[]],["name/1386",[531,22.479]],["parent/1386",[622,6.274]],["name/1387",[532,22.517]],["parent/1387",[622,6.274]],["name/1388",[545,26.766]],["parent/1388",[622,6.274]],["name/1389",[623,65.723]],["parent/1389",[]],["name/1390",[531,22.479]],["parent/1390",[623,6.524]],["name/1391",[532,22.517]],["parent/1391",[623,6.524]],["name/1392",[624,65.723]],["parent/1392",[]],["name/1393",[531,22.479]],["parent/1393",[624,6.524]],["name/1394",[532,22.517]],["parent/1394",[624,6.524]],["name/1395",[625,65.723]],["parent/1395",[]],["name/1396",[531,22.479]],["parent/1396",[625,6.524]],["name/1397",[532,22.517]],["parent/1397",[625,6.524]],["name/1398",[626,63.203]],["parent/1398",[]],["name/1399",[531,22.479]],["parent/1399",[626,6.274]],["name/1400",[532,22.517]],["parent/1400",[626,6.274]],["name/1401",[553,34.415]],["parent/1401",[626,6.274]],["name/1402",[627,69.096]],["parent/1402",[]],["name/1403",[531,22.479]],["parent/1403",[627,6.859]],["name/1404",[628,69.096]],["parent/1404",[]],["name/1405",[531,22.479]],["parent/1405",[628,6.859]],["name/1406",[629,61.191]],["parent/1406",[]],["name/1407",[531,22.479]],["parent/1407",[629,6.074]],["name/1408",[545,26.766]],["parent/1408",[629,6.074]],["name/1409",[553,34.415]],["parent/1409",[629,6.074]],["name/1410",[630,65.723]],["parent/1410",[]],["name/1411",[531,22.479]],["parent/1411",[630,6.524]],["name/1412",[631,65.723]],["parent/1412",[]],["name/1413",[531,22.479]],["parent/1413",[631,6.524]],["name/1414",[632,65.723]],["parent/1414",[]],["name/1415",[531,22.479]],["parent/1415",[632,6.524]],["name/1416",[532,22.517]],["parent/1416",[632,6.524]],["name/1417",[633,63.203]],["parent/1417",[]],["name/1418",[531,22.479]],["parent/1418",[633,6.274]],["name/1419",[532,22.517]],["parent/1419",[633,6.274]],["name/1420",[634,74.217]],["parent/1420",[633,6.274]],["name/1421",[635,74.217]],["parent/1421",[636,6.859]],["name/1422",[637,74.217]],["parent/1422",[636,6.859]],["name/1423",[638,65.723]],["parent/1423",[]],["name/1424",[531,22.479]],["parent/1424",[638,6.524]],["name/1425",[532,22.517]],["parent/1425",[638,6.524]],["name/1426",[639,63.203]],["parent/1426",[]],["name/1427",[531,22.479]],["parent/1427",[639,6.274]],["name/1428",[532,22.517]],["parent/1428",[639,6.274]],["name/1429",[545,26.766]],["parent/1429",[639,6.274]],["name/1430",[640,61.191]],["parent/1430",[]],["name/1431",[531,22.479]],["parent/1431",[640,6.074]],["name/1432",[532,22.517]],["parent/1432",[640,6.074]],["name/1433",[545,26.766]],["parent/1433",[640,6.074]],["name/1434",[553,34.415]],["parent/1434",[640,6.074]],["name/1435",[641,61.191]],["parent/1435",[]],["name/1436",[531,22.479]],["parent/1436",[641,6.074]],["name/1437",[532,22.517]],["parent/1437",[641,6.074]],["name/1438",[545,26.766]],["parent/1438",[641,6.074]],["name/1439",[553,34.415]],["parent/1439",[641,6.074]],["name/1440",[642,61.191]],["parent/1440",[]],["name/1441",[531,22.479]],["parent/1441",[642,6.074]],["name/1442",[532,22.517]],["parent/1442",[642,6.074]],["name/1443",[545,26.766]],["parent/1443",[642,6.074]],["name/1444",[553,34.415]],["parent/1444",[642,6.074]],["name/1445",[643,61.191]],["parent/1445",[]],["name/1446",[531,22.479]],["parent/1446",[643,6.074]],["name/1447",[532,22.517]],["parent/1447",[643,6.074]],["name/1448",[545,26.766]],["parent/1448",[643,6.074]],["name/1449",[553,34.415]],["parent/1449",[643,6.074]],["name/1450",[644,61.191]],["parent/1450",[]],["name/1451",[531,22.479]],["parent/1451",[644,6.074]],["name/1452",[532,22.517]],["parent/1452",[644,6.074]],["name/1453",[545,26.766]],["parent/1453",[644,6.074]],["name/1454",[553,34.415]],["parent/1454",[644,6.074]],["name/1455",[645,61.191]],["parent/1455",[]],["name/1456",[531,22.479]],["parent/1456",[645,6.074]],["name/1457",[646,61.191]],["parent/1457",[]],["name/1458",[531,22.479]],["parent/1458",[646,6.074]],["name/1459",[532,22.517]],["parent/1459",[646,6.074]],["name/1460",[545,26.766]],["parent/1460",[646,6.074]],["name/1461",[553,34.415]],["parent/1461",[646,6.074]],["name/1462",[647,61.191]],["parent/1462",[]],["name/1463",[531,22.479]],["parent/1463",[647,6.074]],["name/1464",[532,22.517]],["parent/1464",[647,6.074]],["name/1465",[545,26.766]],["parent/1465",[647,6.074]],["name/1466",[553,34.415]],["parent/1466",[647,6.074]],["name/1467",[648,63.203]],["parent/1467",[]],["name/1468",[531,22.479]],["parent/1468",[648,6.274]],["name/1469",[532,22.517]],["parent/1469",[648,6.274]],["name/1470",[545,26.766]],["parent/1470",[648,6.274]],["name/1471",[649,63.203]],["parent/1471",[]],["name/1472",[531,22.479]],["parent/1472",[649,6.274]],["name/1473",[532,22.517]],["parent/1473",[649,6.274]],["name/1474",[545,26.766]],["parent/1474",[649,6.274]],["name/1475",[650,61.191]],["parent/1475",[]],["name/1476",[531,22.479]],["parent/1476",[650,6.074]],["name/1477",[532,22.517]],["parent/1477",[650,6.074]],["name/1478",[545,26.766]],["parent/1478",[650,6.074]],["name/1479",[553,34.415]],["parent/1479",[650,6.074]],["name/1480",[651,63.203]],["parent/1480",[]],["name/1481",[531,22.479]],["parent/1481",[651,6.274]],["name/1482",[532,22.517]],["parent/1482",[651,6.274]],["name/1483",[545,26.766]],["parent/1483",[651,6.274]],["name/1484",[652,59.517]],["parent/1484",[]],["name/1485",[532,22.517]],["parent/1485",[652,5.908]],["name/1486",[653,65.723]],["parent/1486",[652,5.908]],["name/1487",[654,63.203]],["parent/1487",[]],["name/1488",[531,22.479]],["parent/1488",[654,6.274]],["name/1489",[532,22.517]],["parent/1489",[654,6.274]],["name/1490",[545,26.766]],["parent/1490",[654,6.274]],["name/1491",[655,65.723]],["parent/1491",[]],["name/1492",[531,22.479]],["parent/1492",[655,6.524]],["name/1493",[532,22.517]],["parent/1493",[655,6.524]],["name/1494",[656,63.203]],["parent/1494",[]],["name/1495",[531,22.479]],["parent/1495",[656,6.274]],["name/1496",[545,26.766]],["parent/1496",[656,6.274]],["name/1497",[657,63.203]],["parent/1497",[]],["name/1498",[531,22.479]],["parent/1498",[657,6.274]],["name/1499",[532,22.517]],["parent/1499",[657,6.274]],["name/1500",[545,26.766]],["parent/1500",[657,6.274]],["name/1501",[658,63.203]],["parent/1501",[]],["name/1502",[531,22.479]],["parent/1502",[658,6.274]],["name/1503",[545,26.766]],["parent/1503",[658,6.274]],["name/1504",[659,63.203]],["parent/1504",[]],["name/1505",[531,22.479]],["parent/1505",[659,6.274]],["name/1506",[532,22.517]],["parent/1506",[659,6.274]],["name/1507",[545,26.766]],["parent/1507",[659,6.274]],["name/1508",[660,63.203]],["parent/1508",[]],["name/1509",[531,22.479]],["parent/1509",[660,6.274]],["name/1510",[532,22.517]],["parent/1510",[660,6.274]],["name/1511",[545,26.766]],["parent/1511",[660,6.274]],["name/1512",[661,63.203]],["parent/1512",[]],["name/1513",[531,22.479]],["parent/1513",[661,6.274]],["name/1514",[532,22.517]],["parent/1514",[661,6.274]],["name/1515",[545,26.766]],["parent/1515",[661,6.274]],["name/1516",[662,63.203]],["parent/1516",[]],["name/1517",[531,22.479]],["parent/1517",[662,6.274]],["name/1518",[532,22.517]],["parent/1518",[662,6.274]],["name/1519",[545,26.766]],["parent/1519",[662,6.274]],["name/1520",[663,61.191]],["parent/1520",[]],["name/1521",[531,22.479]],["parent/1521",[663,6.074]],["name/1522",[532,22.517]],["parent/1522",[663,6.074]],["name/1523",[545,26.766]],["parent/1523",[663,6.074]],["name/1524",[553,34.415]],["parent/1524",[663,6.074]],["name/1525",[664,63.203]],["parent/1525",[]],["name/1526",[531,22.479]],["parent/1526",[664,6.274]],["name/1527",[532,22.517]],["parent/1527",[664,6.274]],["name/1528",[545,26.766]],["parent/1528",[664,6.274]],["name/1529",[665,63.203]],["parent/1529",[]],["name/1530",[531,22.479]],["parent/1530",[665,6.274]],["name/1531",[532,22.517]],["parent/1531",[665,6.274]],["name/1532",[666,63.203]],["parent/1532",[]],["name/1533",[531,22.479]],["parent/1533",[666,6.274]],["name/1534",[667,59.517]],["parent/1534",[]],["name/1535",[531,22.479]],["parent/1535",[667,5.908]],["name/1536",[532,22.517]],["parent/1536",[667,5.908]],["name/1537",[545,26.766]],["parent/1537",[667,5.908]],["name/1538",[553,34.415]],["parent/1538",[667,5.908]],["name/1539",[668,74.217]],["parent/1539",[667,5.908]],["name/1540",[669,74.217]],["parent/1540",[670,6.859]],["name/1541",[671,69.096]],["parent/1541",[670,6.859]],["name/1542",[672,63.203]],["parent/1542",[]],["name/1543",[531,22.479]],["parent/1543",[672,6.274]],["name/1544",[532,22.517]],["parent/1544",[672,6.274]],["name/1545",[545,26.766]],["parent/1545",[672,6.274]],["name/1546",[673,63.203]],["parent/1546",[]],["name/1547",[531,22.479]],["parent/1547",[673,6.274]],["name/1548",[545,26.766]],["parent/1548",[673,6.274]],["name/1549",[674,63.203]],["parent/1549",[]],["name/1550",[531,22.479]],["parent/1550",[674,6.274]],["name/1551",[532,22.517]],["parent/1551",[674,6.274]],["name/1552",[545,26.766]],["parent/1552",[674,6.274]],["name/1553",[675,63.203]],["parent/1553",[]],["name/1554",[531,22.479]],["parent/1554",[675,6.274]],["name/1555",[532,22.517]],["parent/1555",[675,6.274]],["name/1556",[545,26.766]],["parent/1556",[675,6.274]],["name/1557",[676,63.203]],["parent/1557",[]],["name/1558",[531,22.479]],["parent/1558",[676,6.274]],["name/1559",[532,22.517]],["parent/1559",[676,6.274]],["name/1560",[545,26.766]],["parent/1560",[676,6.274]],["name/1561",[677,63.203]],["parent/1561",[]],["name/1562",[531,22.479]],["parent/1562",[677,6.274]],["name/1563",[532,22.517]],["parent/1563",[677,6.274]],["name/1564",[545,26.766]],["parent/1564",[677,6.274]],["name/1565",[678,63.203]],["parent/1565",[]],["name/1566",[531,22.479]],["parent/1566",[678,6.274]],["name/1567",[532,22.517]],["parent/1567",[678,6.274]],["name/1568",[545,26.766]],["parent/1568",[678,6.274]],["name/1569",[679,63.203]],["parent/1569",[]],["name/1570",[531,22.479]],["parent/1570",[679,6.274]],["name/1571",[532,22.517]],["parent/1571",[679,6.274]],["name/1572",[553,34.415]],["parent/1572",[679,6.274]],["name/1573",[680,65.723]],["parent/1573",[]],["name/1574",[531,22.479]],["parent/1574",[680,6.524]],["name/1575",[532,22.517]],["parent/1575",[680,6.524]],["name/1576",[681,63.203]],["parent/1576",[]],["name/1577",[531,22.479]],["parent/1577",[681,6.274]],["name/1578",[532,22.517]],["parent/1578",[681,6.274]],["name/1579",[553,34.415]],["parent/1579",[681,6.274]],["name/1580",[682,63.203]],["parent/1580",[]],["name/1581",[531,22.479]],["parent/1581",[682,6.274]],["name/1582",[532,22.517]],["parent/1582",[682,6.274]],["name/1583",[553,34.415]],["parent/1583",[682,6.274]],["name/1584",[683,63.203]],["parent/1584",[]],["name/1585",[531,22.479]],["parent/1585",[683,6.274]],["name/1586",[532,22.517]],["parent/1586",[683,6.274]],["name/1587",[545,26.766]],["parent/1587",[683,6.274]],["name/1588",[684,61.191]],["parent/1588",[]],["name/1589",[531,22.479]],["parent/1589",[684,6.074]],["name/1590",[532,22.517]],["parent/1590",[684,6.074]],["name/1591",[545,26.766]],["parent/1591",[684,6.074]],["name/1592",[553,34.415]],["parent/1592",[684,6.074]],["name/1593",[685,61.191]],["parent/1593",[]],["name/1594",[531,22.479]],["parent/1594",[685,6.074]],["name/1595",[532,22.517]],["parent/1595",[685,6.074]],["name/1596",[686,74.217]],["parent/1596",[685,6.074]],["name/1597",[545,26.766]],["parent/1597",[685,6.074]],["name/1598",[687,63.203]],["parent/1598",[]],["name/1599",[531,22.479]],["parent/1599",[687,6.274]],["name/1600",[532,22.517]],["parent/1600",[687,6.274]],["name/1601",[553,34.415]],["parent/1601",[687,6.274]],["name/1602",[688,63.203]],["parent/1602",[]],["name/1603",[531,22.479]],["parent/1603",[688,6.274]],["name/1604",[532,22.517]],["parent/1604",[688,6.274]],["name/1605",[545,26.766]],["parent/1605",[688,6.274]],["name/1606",[689,63.203]],["parent/1606",[]],["name/1607",[531,22.479]],["parent/1607",[689,6.274]],["name/1608",[532,22.517]],["parent/1608",[689,6.274]],["name/1609",[545,26.766]],["parent/1609",[689,6.274]],["name/1610",[690,59.517]],["parent/1610",[]],["name/1611",[531,22.479]],["parent/1611",[690,5.908]],["name/1612",[532,22.517]],["parent/1612",[690,5.908]],["name/1613",[545,26.766]],["parent/1613",[690,5.908]],["name/1614",[553,34.415]],["parent/1614",[690,5.908]],["name/1615",[691,74.217]],["parent/1615",[690,5.908]],["name/1616",[692,74.217]],["parent/1616",[693,6.859]],["name/1617",[694,74.217]],["parent/1617",[693,6.859]],["name/1618",[695,61.191]],["parent/1618",[]],["name/1619",[531,22.479]],["parent/1619",[695,6.074]],["name/1620",[532,22.517]],["parent/1620",[695,6.074]],["name/1621",[696,63.203]],["parent/1621",[]],["name/1622",[531,22.479]],["parent/1622",[696,6.274]],["name/1623",[532,22.517]],["parent/1623",[696,6.274]],["name/1624",[545,26.766]],["parent/1624",[696,6.274]],["name/1625",[697,63.203]],["parent/1625",[]],["name/1626",[531,22.479]],["parent/1626",[697,6.274]],["name/1627",[532,22.517]],["parent/1627",[697,6.274]],["name/1628",[545,26.766]],["parent/1628",[697,6.274]],["name/1629",[698,61.191]],["parent/1629",[]],["name/1630",[531,22.479]],["parent/1630",[698,6.074]],["name/1631",[532,22.517]],["parent/1631",[698,6.074]],["name/1632",[545,26.766]],["parent/1632",[698,6.074]],["name/1633",[553,34.415]],["parent/1633",[698,6.074]],["name/1634",[699,63.203]],["parent/1634",[]],["name/1635",[531,22.479]],["parent/1635",[699,6.274]],["name/1636",[532,22.517]],["parent/1636",[699,6.274]],["name/1637",[545,26.766]],["parent/1637",[699,6.274]],["name/1638",[700,63.203]],["parent/1638",[]],["name/1639",[531,22.479]],["parent/1639",[700,6.274]],["name/1640",[532,22.517]],["parent/1640",[700,6.274]],["name/1641",[545,26.766]],["parent/1641",[700,6.274]],["name/1642",[701,63.203]],["parent/1642",[]],["name/1643",[531,22.479]],["parent/1643",[701,6.274]],["name/1644",[532,22.517]],["parent/1644",[701,6.274]],["name/1645",[545,26.766]],["parent/1645",[701,6.274]],["name/1646",[702,65.723]],["parent/1646",[]],["name/1647",[531,22.479]],["parent/1647",[702,6.524]],["name/1648",[532,22.517]],["parent/1648",[702,6.524]],["name/1649",[134,44.901,703,46.69]],["parent/1649",[]],["name/1650",[531,22.479]],["parent/1650",[134,4.444,703,4.621]],["name/1651",[532,22.517]],["parent/1651",[134,4.444,703,4.621]],["name/1652",[704,65.723]],["parent/1652",[]],["name/1653",[531,22.479]],["parent/1653",[704,6.524]],["name/1654",[532,22.517]],["parent/1654",[704,6.524]],["name/1655",[705,65.723]],["parent/1655",[]],["name/1656",[531,22.479]],["parent/1656",[705,6.524]],["name/1657",[532,22.517]],["parent/1657",[705,6.524]],["name/1658",[706,61.191]],["parent/1658",[]],["name/1659",[531,22.479]],["parent/1659",[706,6.074]],["name/1660",[532,22.517]],["parent/1660",[706,6.074]],["name/1661",[545,26.766]],["parent/1661",[706,6.074]],["name/1662",[553,34.415]],["parent/1662",[706,6.074]],["name/1663",[707,61.191]],["parent/1663",[]],["name/1664",[531,22.479]],["parent/1664",[707,6.074]],["name/1665",[532,22.517]],["parent/1665",[707,6.074]],["name/1666",[545,26.766]],["parent/1666",[707,6.074]],["name/1667",[553,34.415]],["parent/1667",[707,6.074]],["name/1668",[708,65.723]],["parent/1668",[]],["name/1669",[531,22.479]],["parent/1669",[708,6.524]],["name/1670",[532,22.517]],["parent/1670",[708,6.524]],["name/1671",[709,65.723]],["parent/1671",[]],["name/1672",[531,22.479]],["parent/1672",[709,6.524]],["name/1673",[532,22.517]],["parent/1673",[709,6.524]],["name/1674",[710,65.723]],["parent/1674",[]],["name/1675",[531,22.479]],["parent/1675",[710,6.524]],["name/1676",[532,22.517]],["parent/1676",[710,6.524]],["name/1677",[711,65.723]],["parent/1677",[]],["name/1678",[531,22.479]],["parent/1678",[711,6.524]],["name/1679",[532,22.517]],["parent/1679",[711,6.524]],["name/1680",[712,65.723]],["parent/1680",[]],["name/1681",[531,22.479]],["parent/1681",[712,6.524]],["name/1682",[713,63.203]],["parent/1682",[]],["name/1683",[531,22.479]],["parent/1683",[713,6.274]],["name/1684",[532,22.517]],["parent/1684",[713,6.274]],["name/1685",[545,26.766]],["parent/1685",[713,6.274]],["name/1686",[714,63.203]],["parent/1686",[]],["name/1687",[531,22.479]],["parent/1687",[714,6.274]],["name/1688",[545,26.766]],["parent/1688",[714,6.274]],["name/1689",[715,63.203]],["parent/1689",[]],["name/1690",[531,22.479]],["parent/1690",[715,6.274]],["name/1691",[545,26.766]],["parent/1691",[715,6.274]],["name/1692",[716,63.203]],["parent/1692",[]],["name/1693",[531,22.479]],["parent/1693",[716,6.274]],["name/1694",[545,26.766]],["parent/1694",[716,6.274]],["name/1695",[717,63.203]],["parent/1695",[]],["name/1696",[531,22.479]],["parent/1696",[717,6.274]],["name/1697",[545,26.766]],["parent/1697",[717,6.274]],["name/1698",[718,63.203]],["parent/1698",[]],["name/1699",[531,22.479]],["parent/1699",[718,6.274]],["name/1700",[545,26.766]],["parent/1700",[718,6.274]],["name/1701",[719,63.203]],["parent/1701",[]],["name/1702",[531,22.479]],["parent/1702",[719,6.274]],["name/1703",[532,22.517]],["parent/1703",[719,6.274]],["name/1704",[545,26.766]],["parent/1704",[719,6.274]],["name/1705",[720,63.203]],["parent/1705",[]],["name/1706",[531,22.479]],["parent/1706",[720,6.274]],["name/1707",[532,22.517]],["parent/1707",[720,6.274]],["name/1708",[545,26.766]],["parent/1708",[720,6.274]],["name/1709",[721,65.723]],["parent/1709",[]],["name/1710",[531,22.479]],["parent/1710",[721,6.524]],["name/1711",[532,22.517]],["parent/1711",[721,6.524]],["name/1712",[722,63.203]],["parent/1712",[]],["name/1713",[531,22.479]],["parent/1713",[722,6.274]],["name/1714",[532,22.517]],["parent/1714",[722,6.274]],["name/1715",[545,26.766]],["parent/1715",[722,6.274]],["name/1716",[723,61.191]],["parent/1716",[]],["name/1717",[531,22.479]],["parent/1717",[723,6.074]],["name/1718",[532,22.517]],["parent/1718",[723,6.074]],["name/1719",[545,26.766]],["parent/1719",[723,6.074]],["name/1720",[553,34.415]],["parent/1720",[723,6.074]],["name/1721",[724,65.723]],["parent/1721",[]],["name/1722",[531,22.479]],["parent/1722",[724,6.524]],["name/1723",[532,22.517]],["parent/1723",[724,6.524]],["name/1724",[725,63.203]],["parent/1724",[]],["name/1725",[531,22.479]],["parent/1725",[725,6.274]],["name/1726",[532,22.517]],["parent/1726",[725,6.274]],["name/1727",[553,34.415]],["parent/1727",[725,6.274]],["name/1728",[726,63.203]],["parent/1728",[]],["name/1729",[531,22.479]],["parent/1729",[726,6.274]],["name/1730",[532,22.517]],["parent/1730",[726,6.274]],["name/1731",[553,34.415]],["parent/1731",[726,6.274]],["name/1732",[727,63.203]],["parent/1732",[]],["name/1733",[531,22.479]],["parent/1733",[727,6.274]],["name/1734",[532,22.517]],["parent/1734",[727,6.274]],["name/1735",[553,34.415]],["parent/1735",[727,6.274]],["name/1736",[728,63.203]],["parent/1736",[]],["name/1737",[531,22.479]],["parent/1737",[728,6.274]],["name/1738",[532,22.517]],["parent/1738",[728,6.274]],["name/1739",[553,34.415]],["parent/1739",[728,6.274]],["name/1740",[729,65.723]],["parent/1740",[]],["name/1741",[531,22.479]],["parent/1741",[729,6.524]],["name/1742",[532,22.517]],["parent/1742",[729,6.524]],["name/1743",[730,65.723]],["parent/1743",[]],["name/1744",[531,22.479]],["parent/1744",[730,6.524]],["name/1745",[532,22.517]],["parent/1745",[730,6.524]],["name/1746",[731,63.203]],["parent/1746",[]],["name/1747",[531,22.479]],["parent/1747",[731,6.274]],["name/1748",[532,22.517]],["parent/1748",[731,6.274]],["name/1749",[545,26.766]],["parent/1749",[731,6.274]],["name/1750",[732,63.203]],["parent/1750",[]],["name/1751",[531,22.479]],["parent/1751",[732,6.274]],["name/1752",[545,26.766]],["parent/1752",[732,6.274]],["name/1753",[733,65.723]],["parent/1753",[]],["name/1754",[531,22.479]],["parent/1754",[733,6.524]],["name/1755",[532,22.517]],["parent/1755",[733,6.524]],["name/1756",[72,41.263,734,46.69]],["parent/1756",[]],["name/1757",[531,22.479]],["parent/1757",[72,4.083,734,4.621]],["name/1758",[532,22.517]],["parent/1758",[72,4.083,734,4.621]],["name/1759",[735,63.203]],["parent/1759",[]],["name/1760",[531,22.479]],["parent/1760",[735,6.274]],["name/1761",[532,22.517]],["parent/1761",[735,6.274]],["name/1762",[553,34.415]],["parent/1762",[735,6.274]],["name/1763",[736,63.203]],["parent/1763",[]],["name/1764",[531,22.479]],["parent/1764",[736,6.274]],["name/1765",[532,22.517]],["parent/1765",[736,6.274]],["name/1766",[545,26.766]],["parent/1766",[736,6.274]],["name/1767",[737,63.203]],["parent/1767",[]],["name/1768",[531,22.479]],["parent/1768",[737,6.274]],["name/1769",[532,22.517]],["parent/1769",[737,6.274]],["name/1770",[545,26.766]],["parent/1770",[737,6.274]],["name/1771",[738,63.203]],["parent/1771",[]],["name/1772",[531,22.479]],["parent/1772",[738,6.274]],["name/1773",[532,22.517]],["parent/1773",[738,6.274]],["name/1774",[545,26.766]],["parent/1774",[738,6.274]],["name/1775",[739,63.203]],["parent/1775",[]],["name/1776",[531,22.479]],["parent/1776",[739,6.274]],["name/1777",[532,22.517]],["parent/1777",[739,6.274]],["name/1778",[545,26.766]],["parent/1778",[739,6.274]],["name/1779",[740,63.203]],["parent/1779",[]],["name/1780",[531,22.479]],["parent/1780",[740,6.274]],["name/1781",[532,22.517]],["parent/1781",[740,6.274]],["name/1782",[545,26.766]],["parent/1782",[740,6.274]],["name/1783",[741,63.203]],["parent/1783",[]],["name/1784",[531,22.479]],["parent/1784",[741,6.274]],["name/1785",[532,22.517]],["parent/1785",[741,6.274]],["name/1786",[545,26.766]],["parent/1786",[741,6.274]],["name/1787",[742,65.723]],["parent/1787",[]],["name/1788",[531,22.479]],["parent/1788",[742,6.524]],["name/1789",[532,22.517]],["parent/1789",[742,6.524]],["name/1790",[743,59.517]],["parent/1790",[]],["name/1791",[531,22.479]],["parent/1791",[743,5.908]],["name/1792",[532,22.517]],["parent/1792",[743,5.908]],["name/1793",[553,34.415]],["parent/1793",[743,5.908]],["name/1794",[744,74.217]],["parent/1794",[743,5.908]],["name/1795",[303,59.517]],["parent/1795",[745,6.524]],["name/1796",[746,69.096]],["parent/1796",[745,6.524]],["name/1797",[747,58.082]],["parent/1797",[745,6.524]],["name/1798",[748,74.217]],["parent/1798",[743,5.908]],["name/1799",[749,74.217]],["parent/1799",[750,6.859]],["name/1800",[128,63.203]],["parent/1800",[750,6.859]],["name/1801",[751,63.203]],["parent/1801",[]],["name/1802",[531,22.479]],["parent/1802",[751,6.274]],["name/1803",[532,22.517]],["parent/1803",[751,6.274]],["name/1804",[545,26.766]],["parent/1804",[751,6.274]],["name/1805",[752,65.723]],["parent/1805",[]],["name/1806",[531,22.479]],["parent/1806",[752,6.524]],["name/1807",[532,22.517]],["parent/1807",[752,6.524]],["name/1808",[753,65.723]],["parent/1808",[]],["name/1809",[531,22.479]],["parent/1809",[753,6.524]],["name/1810",[754,65.723]],["parent/1810",[]],["name/1811",[531,22.479]],["parent/1811",[754,6.524]],["name/1812",[532,22.517]],["parent/1812",[754,6.524]],["name/1813",[755,65.723]],["parent/1813",[]],["name/1814",[531,22.479]],["parent/1814",[755,6.524]],["name/1815",[532,22.517]],["parent/1815",[755,6.524]],["name/1816",[756,65.723]],["parent/1816",[]],["name/1817",[531,22.479]],["parent/1817",[756,6.524]],["name/1818",[532,22.517]],["parent/1818",[756,6.524]],["name/1819",[757,63.203]],["parent/1819",[]],["name/1820",[531,22.479]],["parent/1820",[757,6.274]],["name/1821",[532,22.517]],["parent/1821",[757,6.274]],["name/1822",[545,26.766]],["parent/1822",[757,6.274]],["name/1823",[758,63.203]],["parent/1823",[]],["name/1824",[531,22.479]],["parent/1824",[758,6.274]],["name/1825",[532,22.517]],["parent/1825",[758,6.274]],["name/1826",[545,26.766]],["parent/1826",[758,6.274]],["name/1827",[759,63.203]],["parent/1827",[]],["name/1828",[531,22.479]],["parent/1828",[759,6.274]],["name/1829",[532,22.517]],["parent/1829",[759,6.274]],["name/1830",[545,26.766]],["parent/1830",[759,6.274]],["name/1831",[760,63.203]],["parent/1831",[]],["name/1832",[531,22.479]],["parent/1832",[760,6.274]],["name/1833",[532,22.517]],["parent/1833",[760,6.274]],["name/1834",[545,26.766]],["parent/1834",[760,6.274]],["name/1835",[761,63.203]],["parent/1835",[]],["name/1836",[531,22.479]],["parent/1836",[761,6.274]],["name/1837",[532,22.517]],["parent/1837",[761,6.274]],["name/1838",[545,26.766]],["parent/1838",[761,6.274]],["name/1839",[762,63.203]],["parent/1839",[]],["name/1840",[531,22.479]],["parent/1840",[762,6.274]],["name/1841",[545,26.766]],["parent/1841",[762,6.274]],["name/1842",[763,63.203]],["parent/1842",[]],["name/1843",[531,22.479]],["parent/1843",[763,6.274]],["name/1844",[532,22.517]],["parent/1844",[763,6.274]],["name/1845",[545,26.766]],["parent/1845",[763,6.274]],["name/1846",[764,65.723]],["parent/1846",[]],["name/1847",[531,22.479]],["parent/1847",[764,6.524]],["name/1848",[532,22.517]],["parent/1848",[764,6.524]],["name/1849",[765,63.203]],["parent/1849",[]],["name/1850",[531,22.479]],["parent/1850",[765,6.274]],["name/1851",[532,22.517]],["parent/1851",[765,6.274]],["name/1852",[545,26.766]],["parent/1852",[765,6.274]],["name/1853",[766,63.203]],["parent/1853",[]],["name/1854",[531,22.479]],["parent/1854",[766,6.274]],["name/1855",[532,22.517]],["parent/1855",[766,6.274]],["name/1856",[545,26.766]],["parent/1856",[766,6.274]],["name/1857",[767,63.203]],["parent/1857",[]],["name/1858",[531,22.479]],["parent/1858",[767,6.274]],["name/1859",[545,26.766]],["parent/1859",[767,6.274]],["name/1860",[768,63.203]],["parent/1860",[]],["name/1861",[531,22.479]],["parent/1861",[768,6.274]],["name/1862",[532,22.517]],["parent/1862",[768,6.274]],["name/1863",[545,26.766]],["parent/1863",[768,6.274]],["name/1864",[769,63.203]],["parent/1864",[]],["name/1865",[531,22.479]],["parent/1865",[769,6.274]],["name/1866",[545,26.766]],["parent/1866",[769,6.274]],["name/1867",[770,63.203]],["parent/1867",[]],["name/1868",[531,22.479]],["parent/1868",[770,6.274]],["name/1869",[545,26.766]],["parent/1869",[770,6.274]],["name/1870",[771,61.191]],["parent/1870",[]],["name/1871",[531,22.479]],["parent/1871",[771,6.074]],["name/1872",[532,22.517]],["parent/1872",[771,6.074]],["name/1873",[545,26.766]],["parent/1873",[771,6.074]],["name/1874",[553,34.415]],["parent/1874",[771,6.074]],["name/1875",[772,63.203]],["parent/1875",[]],["name/1876",[531,22.479]],["parent/1876",[772,6.274]],["name/1877",[532,22.517]],["parent/1877",[772,6.274]],["name/1878",[545,26.766]],["parent/1878",[772,6.274]],["name/1879",[773,63.203]],["parent/1879",[]],["name/1880",[531,22.479]],["parent/1880",[773,6.274]],["name/1881",[532,22.517]],["parent/1881",[773,6.274]],["name/1882",[545,26.766]],["parent/1882",[773,6.274]],["name/1883",[774,63.203]],["parent/1883",[]],["name/1884",[531,22.479]],["parent/1884",[774,6.274]],["name/1885",[532,22.517]],["parent/1885",[774,6.274]],["name/1886",[775,63.203]],["parent/1886",[]],["name/1887",[531,22.479]],["parent/1887",[775,6.274]],["name/1888",[532,22.517]],["parent/1888",[775,6.274]],["name/1889",[545,26.766]],["parent/1889",[775,6.274]],["name/1890",[776,61.191]],["parent/1890",[]],["name/1891",[531,22.479]],["parent/1891",[776,6.074]],["name/1892",[532,22.517]],["parent/1892",[776,6.074]],["name/1893",[545,26.766]],["parent/1893",[776,6.074]],["name/1894",[553,34.415]],["parent/1894",[776,6.074]],["name/1895",[777,61.191]],["parent/1895",[]],["name/1896",[531,22.479]],["parent/1896",[777,6.074]],["name/1897",[532,22.517]],["parent/1897",[777,6.074]],["name/1898",[545,26.766]],["parent/1898",[777,6.074]],["name/1899",[553,34.415]],["parent/1899",[777,6.074]],["name/1900",[778,61.191]],["parent/1900",[]],["name/1901",[531,22.479]],["parent/1901",[778,6.074]],["name/1902",[532,22.517]],["parent/1902",[778,6.074]],["name/1903",[545,26.766]],["parent/1903",[778,6.074]],["name/1904",[553,34.415]],["parent/1904",[778,6.074]],["name/1905",[779,63.203]],["parent/1905",[]],["name/1906",[531,22.479]],["parent/1906",[779,6.274]],["name/1907",[532,22.517]],["parent/1907",[779,6.274]],["name/1908",[545,26.766]],["parent/1908",[779,6.274]],["name/1909",[780,65.723]],["parent/1909",[]],["name/1910",[531,22.479]],["parent/1910",[780,6.524]],["name/1911",[532,22.517]],["parent/1911",[780,6.524]],["name/1912",[781,65.723]],["parent/1912",[]],["name/1913",[531,22.479]],["parent/1913",[781,6.524]],["name/1914",[532,22.517]],["parent/1914",[781,6.524]],["name/1915",[782,63.203]],["parent/1915",[]],["name/1916",[531,22.479]],["parent/1916",[782,6.274]],["name/1917",[532,22.517]],["parent/1917",[782,6.274]],["name/1918",[545,26.766]],["parent/1918",[782,6.274]],["name/1919",[783,61.191]],["parent/1919",[]],["name/1920",[531,22.479]],["parent/1920",[783,6.074]],["name/1921",[532,22.517]],["parent/1921",[783,6.074]],["name/1922",[545,26.766]],["parent/1922",[783,6.074]],["name/1923",[553,34.415]],["parent/1923",[783,6.074]],["name/1924",[784,61.191]],["parent/1924",[]],["name/1925",[531,22.479]],["parent/1925",[784,6.074]],["name/1926",[532,22.517]],["parent/1926",[784,6.074]],["name/1927",[545,26.766]],["parent/1927",[784,6.074]],["name/1928",[553,34.415]],["parent/1928",[784,6.074]],["name/1929",[785,63.203]],["parent/1929",[]],["name/1930",[531,22.479]],["parent/1930",[785,6.274]],["name/1931",[532,22.517]],["parent/1931",[785,6.274]],["name/1932",[545,26.766]],["parent/1932",[785,6.274]],["name/1933",[786,65.723]],["parent/1933",[]],["name/1934",[531,22.479]],["parent/1934",[786,6.524]],["name/1935",[532,22.517]],["parent/1935",[786,6.524]],["name/1936",[787,63.203]],["parent/1936",[]],["name/1937",[531,22.479]],["parent/1937",[787,6.274]],["name/1938",[532,22.517]],["parent/1938",[787,6.274]],["name/1939",[545,26.766]],["parent/1939",[787,6.274]],["name/1940",[788,65.723]],["parent/1940",[]],["name/1941",[531,22.479]],["parent/1941",[788,6.524]],["name/1942",[532,22.517]],["parent/1942",[788,6.524]],["name/1943",[789,63.203]],["parent/1943",[]],["name/1944",[531,22.479]],["parent/1944",[789,6.274]],["name/1945",[532,22.517]],["parent/1945",[789,6.274]],["name/1946",[545,26.766]],["parent/1946",[789,6.274]],["name/1947",[790,63.203]],["parent/1947",[]],["name/1948",[531,22.479]],["parent/1948",[790,6.274]],["name/1949",[532,22.517]],["parent/1949",[790,6.274]],["name/1950",[545,26.766]],["parent/1950",[790,6.274]],["name/1951",[791,61.191]],["parent/1951",[]],["name/1952",[531,22.479]],["parent/1952",[791,6.074]],["name/1953",[532,22.517]],["parent/1953",[791,6.074]],["name/1954",[545,26.766]],["parent/1954",[791,6.074]],["name/1955",[792,74.217]],["parent/1955",[791,6.074]],["name/1956",[747,58.082]],["parent/1956",[793,7.367]],["name/1957",[794,63.203]],["parent/1957",[]],["name/1958",[531,22.479]],["parent/1958",[794,6.274]],["name/1959",[532,22.517]],["parent/1959",[794,6.274]],["name/1960",[795,61.191]],["parent/1960",[]],["name/1961",[531,22.479]],["parent/1961",[795,6.074]],["name/1962",[545,26.766]],["parent/1962",[795,6.074]],["name/1963",[796,74.217]],["parent/1963",[795,6.074]],["name/1964",[797,74.217]],["parent/1964",[798,6.274]],["name/1965",[177,65.723]],["parent/1965",[798,6.274]],["name/1966",[799,74.217]],["parent/1966",[798,6.274]],["name/1967",[800,74.217]],["parent/1967",[798,6.274]],["name/1968",[801,63.203]],["parent/1968",[]],["name/1969",[531,22.479]],["parent/1969",[801,6.274]],["name/1970",[532,22.517]],["parent/1970",[801,6.274]],["name/1971",[802,63.203]],["parent/1971",[]],["name/1972",[531,22.479]],["parent/1972",[802,6.274]],["name/1973",[532,22.517]],["parent/1973",[802,6.274]],["name/1974",[545,26.766]],["parent/1974",[802,6.274]],["name/1975",[803,63.203]],["parent/1975",[]],["name/1976",[531,22.479]],["parent/1976",[803,6.274]],["name/1977",[532,22.517]],["parent/1977",[803,6.274]],["name/1978",[545,26.766]],["parent/1978",[803,6.274]],["name/1979",[804,63.203]],["parent/1979",[]],["name/1980",[531,22.479]],["parent/1980",[804,6.274]],["name/1981",[545,26.766]],["parent/1981",[804,6.274]],["name/1982",[805,63.203]],["parent/1982",[]],["name/1983",[531,22.479]],["parent/1983",[805,6.274]],["name/1984",[532,22.517]],["parent/1984",[805,6.274]],["name/1985",[545,26.766]],["parent/1985",[805,6.274]],["name/1986",[806,63.203]],["parent/1986",[]],["name/1987",[531,22.479]],["parent/1987",[806,6.274]],["name/1988",[545,26.766]],["parent/1988",[806,6.274]],["name/1989",[807,63.203]],["parent/1989",[]],["name/1990",[531,22.479]],["parent/1990",[807,6.274]],["name/1991",[532,22.517]],["parent/1991",[807,6.274]],["name/1992",[545,26.766]],["parent/1992",[807,6.274]],["name/1993",[808,61.191]],["parent/1993",[]],["name/1994",[531,22.479]],["parent/1994",[808,6.074]],["name/1995",[532,22.517]],["parent/1995",[808,6.074]],["name/1996",[545,26.766]],["parent/1996",[808,6.074]],["name/1997",[553,34.415]],["parent/1997",[808,6.074]],["name/1998",[809,61.191]],["parent/1998",[]],["name/1999",[531,22.479]],["parent/1999",[809,6.074]],["name/2000",[532,22.517]],["parent/2000",[809,6.074]],["name/2001",[545,26.766]],["parent/2001",[809,6.074]],["name/2002",[553,34.415]],["parent/2002",[809,6.074]],["name/2003",[810,61.191]],["parent/2003",[]],["name/2004",[531,22.479]],["parent/2004",[810,6.074]],["name/2005",[532,22.517]],["parent/2005",[810,6.074]],["name/2006",[545,26.766]],["parent/2006",[810,6.074]],["name/2007",[553,34.415]],["parent/2007",[810,6.074]],["name/2008",[811,61.191]],["parent/2008",[]],["name/2009",[531,22.479]],["parent/2009",[811,6.074]],["name/2010",[532,22.517]],["parent/2010",[811,6.074]],["name/2011",[545,26.766]],["parent/2011",[811,6.074]],["name/2012",[553,34.415]],["parent/2012",[811,6.074]],["name/2013",[812,61.191]],["parent/2013",[]],["name/2014",[531,22.479]],["parent/2014",[812,6.074]],["name/2015",[532,22.517]],["parent/2015",[812,6.074]],["name/2016",[545,26.766]],["parent/2016",[812,6.074]],["name/2017",[553,34.415]],["parent/2017",[812,6.074]],["name/2018",[813,61.191]],["parent/2018",[]],["name/2019",[531,22.479]],["parent/2019",[813,6.074]],["name/2020",[545,26.766]],["parent/2020",[813,6.074]],["name/2021",[553,34.415]],["parent/2021",[813,6.074]],["name/2022",[814,61.191]],["parent/2022",[]],["name/2023",[531,22.479]],["parent/2023",[814,6.074]],["name/2024",[545,26.766]],["parent/2024",[814,6.074]],["name/2025",[553,34.415]],["parent/2025",[814,6.074]],["name/2026",[815,61.191]],["parent/2026",[]],["name/2027",[531,22.479]],["parent/2027",[815,6.074]],["name/2028",[545,26.766]],["parent/2028",[815,6.074]],["name/2029",[553,34.415]],["parent/2029",[815,6.074]],["name/2030",[816,58.082]],["parent/2030",[]],["name/2031",[531,22.479]],["parent/2031",[816,5.766]],["name/2032",[817,74.217]],["parent/2032",[816,5.766]],["name/2033",[818,65.723]],["parent/2033",[819,6.859]],["name/2034",[480,59.517]],["parent/2034",[819,6.859]],["name/2035",[820,74.217]],["parent/2035",[816,5.766]],["name/2036",[747,58.082]],["parent/2036",[821,6.524]],["name/2037",[822,74.217]],["parent/2037",[821,6.524]],["name/2038",[823,74.217]],["parent/2038",[821,6.524]],["name/2039",[545,26.766]],["parent/2039",[816,5.766]],["name/2040",[553,34.415]],["parent/2040",[816,5.766]],["name/2041",[824,65.723]],["parent/2041",[]],["name/2042",[531,22.479]],["parent/2042",[824,6.524]],["name/2043",[825,63.203]],["parent/2043",[]],["name/2044",[531,22.479]],["parent/2044",[825,6.274]],["name/2045",[532,22.517]],["parent/2045",[825,6.274]],["name/2046",[545,26.766]],["parent/2046",[825,6.274]],["name/2047",[826,63.203]],["parent/2047",[]],["name/2048",[531,22.479]],["parent/2048",[826,6.274]],["name/2049",[545,26.766]],["parent/2049",[826,6.274]],["name/2050",[827,61.191]],["parent/2050",[]],["name/2051",[531,22.479]],["parent/2051",[827,6.074]],["name/2052",[532,22.517]],["parent/2052",[827,6.074]],["name/2053",[545,26.766]],["parent/2053",[827,6.074]],["name/2054",[553,34.415]],["parent/2054",[827,6.074]],["name/2055",[828,61.191]],["parent/2055",[]],["name/2056",[531,22.479]],["parent/2056",[828,6.074]],["name/2057",[532,22.517]],["parent/2057",[828,6.074]],["name/2058",[545,26.766]],["parent/2058",[828,6.074]],["name/2059",[553,34.415]],["parent/2059",[828,6.074]],["name/2060",[829,61.191]],["parent/2060",[]],["name/2061",[531,22.479]],["parent/2061",[829,6.074]],["name/2062",[532,22.517]],["parent/2062",[829,6.074]],["name/2063",[545,26.766]],["parent/2063",[829,6.074]],["name/2064",[553,34.415]],["parent/2064",[829,6.074]],["name/2065",[830,63.203]],["parent/2065",[]],["name/2066",[531,22.479]],["parent/2066",[830,6.274]],["name/2067",[532,22.517]],["parent/2067",[830,6.274]],["name/2068",[545,26.766]],["parent/2068",[830,6.274]],["name/2069",[831,61.191]],["parent/2069",[]],["name/2070",[531,22.479]],["parent/2070",[831,6.074]],["name/2071",[832,63.203]],["parent/2071",[]],["name/2072",[531,22.479]],["parent/2072",[832,6.274]],["name/2073",[545,26.766]],["parent/2073",[832,6.274]],["name/2074",[833,61.191]],["parent/2074",[]],["name/2075",[531,22.479]],["parent/2075",[833,6.074]],["name/2076",[532,22.517]],["parent/2076",[833,6.074]],["name/2077",[545,26.766]],["parent/2077",[833,6.074]],["name/2078",[553,34.415]],["parent/2078",[833,6.074]],["name/2079",[834,63.203]],["parent/2079",[]],["name/2080",[531,22.479]],["parent/2080",[834,6.274]],["name/2081",[532,22.517]],["parent/2081",[834,6.274]],["name/2082",[545,26.766]],["parent/2082",[834,6.274]],["name/2083",[835,61.191]],["parent/2083",[]],["name/2084",[531,22.479]],["parent/2084",[835,6.074]],["name/2085",[836,61.191]],["parent/2085",[]],["name/2086",[531,22.479]],["parent/2086",[836,6.074]],["name/2087",[532,22.517]],["parent/2087",[836,6.074]],["name/2088",[545,26.766]],["parent/2088",[836,6.074]],["name/2089",[553,34.415]],["parent/2089",[836,6.074]],["name/2090",[837,61.191]],["parent/2090",[]],["name/2091",[531,22.479]],["parent/2091",[837,6.074]],["name/2092",[545,26.766]],["parent/2092",[837,6.074]],["name/2093",[553,34.415]],["parent/2093",[837,6.074]],["name/2094",[838,63.203]],["parent/2094",[]],["name/2095",[531,22.479]],["parent/2095",[838,6.274]],["name/2096",[532,22.517]],["parent/2096",[838,6.274]],["name/2097",[545,26.766]],["parent/2097",[838,6.274]],["name/2098",[839,63.203]],["parent/2098",[]],["name/2099",[531,22.479]],["parent/2099",[839,6.274]],["name/2100",[840,63.203]],["parent/2100",[]],["name/2101",[531,22.479]],["parent/2101",[840,6.274]],["name/2102",[532,22.517]],["parent/2102",[840,6.274]],["name/2103",[545,26.766]],["parent/2103",[840,6.274]],["name/2104",[841,63.203]],["parent/2104",[]],["name/2105",[531,22.479]],["parent/2105",[841,6.274]],["name/2106",[842,61.191]],["parent/2106",[]],["name/2107",[531,22.479]],["parent/2107",[842,6.074]],["name/2108",[532,22.517]],["parent/2108",[842,6.074]],["name/2109",[545,26.766]],["parent/2109",[842,6.074]],["name/2110",[553,34.415]],["parent/2110",[842,6.074]],["name/2111",[843,61.191]],["parent/2111",[]],["name/2112",[531,22.479]],["parent/2112",[843,6.074]],["name/2113",[532,22.517]],["parent/2113",[843,6.074]],["name/2114",[844,61.191]],["parent/2114",[]],["name/2115",[531,22.479]],["parent/2115",[844,6.074]],["name/2116",[845,61.191]],["parent/2116",[]],["name/2117",[531,22.479]],["parent/2117",[845,6.074]],["name/2118",[532,22.517]],["parent/2118",[845,6.074]],["name/2119",[545,26.766]],["parent/2119",[845,6.074]],["name/2120",[553,34.415]],["parent/2120",[845,6.074]],["name/2121",[846,59.517]],["parent/2121",[]],["name/2122",[531,22.479]],["parent/2122",[846,5.908]],["name/2123",[532,22.517]],["parent/2123",[846,5.908]],["name/2124",[545,26.766]],["parent/2124",[846,5.908]],["name/2125",[553,34.415]],["parent/2125",[846,5.908]],["name/2126",[847,74.217]],["parent/2126",[846,5.908]],["name/2127",[848,69.096]],["parent/2127",[849,6.859]],["name/2128",[21,43.382]],["parent/2128",[849,6.859]],["name/2129",[850,69.096]],["parent/2129",[851,6.859]],["name/2130",[747,58.082]],["parent/2130",[851,6.859]],["name/2131",[852,59.517]],["parent/2131",[]],["name/2132",[531,22.479]],["parent/2132",[852,5.908]],["name/2133",[532,22.517]],["parent/2133",[852,5.908]],["name/2134",[545,26.766]],["parent/2134",[852,5.908]],["name/2135",[553,34.415]],["parent/2135",[852,5.908]],["name/2136",[853,74.217]],["parent/2136",[852,5.908]],["name/2137",[848,69.096]],["parent/2137",[854,6.859]],["name/2138",[21,43.382]],["parent/2138",[854,6.859]],["name/2139",[850,69.096]],["parent/2139",[855,6.859]],["name/2140",[747,58.082]],["parent/2140",[855,6.859]],["name/2141",[856,61.191]],["parent/2141",[]],["name/2142",[531,22.479]],["parent/2142",[856,6.074]],["name/2143",[857,63.203]],["parent/2143",[]],["name/2144",[531,22.479]],["parent/2144",[857,6.274]],["name/2145",[532,22.517]],["parent/2145",[857,6.274]],["name/2146",[545,26.766]],["parent/2146",[857,6.274]],["name/2147",[858,61.191]],["parent/2147",[]],["name/2148",[531,22.479]],["parent/2148",[858,6.074]],["name/2149",[859,61.191]],["parent/2149",[]],["name/2150",[531,22.479]],["parent/2150",[859,6.074]],["name/2151",[532,22.517]],["parent/2151",[859,6.074]],["name/2152",[545,26.766]],["parent/2152",[859,6.074]],["name/2153",[553,34.415]],["parent/2153",[859,6.074]],["name/2154",[860,63.203]],["parent/2154",[]],["name/2155",[531,22.479]],["parent/2155",[860,6.274]],["name/2156",[532,22.517]],["parent/2156",[860,6.274]],["name/2157",[545,26.766]],["parent/2157",[860,6.274]],["name/2158",[861,63.203]],["parent/2158",[]],["name/2159",[531,22.479]],["parent/2159",[861,6.274]],["name/2160",[532,22.517]],["parent/2160",[861,6.274]],["name/2161",[545,26.766]],["parent/2161",[861,6.274]],["name/2162",[862,63.203]],["parent/2162",[]],["name/2163",[531,22.479]],["parent/2163",[862,6.274]],["name/2164",[532,22.517]],["parent/2164",[862,6.274]],["name/2165",[545,26.766]],["parent/2165",[862,6.274]],["name/2166",[863,63.203]],["parent/2166",[]],["name/2167",[531,22.479]],["parent/2167",[863,6.274]],["name/2168",[532,22.517]],["parent/2168",[863,6.274]],["name/2169",[545,26.766]],["parent/2169",[863,6.274]],["name/2170",[864,61.191]],["parent/2170",[]],["name/2171",[531,22.479]],["parent/2171",[864,6.074]],["name/2172",[532,22.517]],["parent/2172",[864,6.074]],["name/2173",[545,26.766]],["parent/2173",[864,6.074]],["name/2174",[553,34.415]],["parent/2174",[864,6.074]],["name/2175",[865,61.191]],["parent/2175",[]],["name/2176",[531,22.479]],["parent/2176",[865,6.074]],["name/2177",[532,22.517]],["parent/2177",[865,6.074]],["name/2178",[545,26.766]],["parent/2178",[865,6.074]],["name/2179",[553,34.415]],["parent/2179",[865,6.074]],["name/2180",[866,61.191]],["parent/2180",[]],["name/2181",[531,22.479]],["parent/2181",[866,6.074]],["name/2182",[545,26.766]],["parent/2182",[866,6.074]],["name/2183",[553,34.415]],["parent/2183",[866,6.074]],["name/2184",[867,61.191]],["parent/2184",[]],["name/2185",[531,22.479]],["parent/2185",[867,6.074]],["name/2186",[532,22.517]],["parent/2186",[867,6.074]],["name/2187",[545,26.766]],["parent/2187",[867,6.074]],["name/2188",[553,34.415]],["parent/2188",[867,6.074]],["name/2189",[868,63.203]],["parent/2189",[]],["name/2190",[531,22.479]],["parent/2190",[868,6.274]],["name/2191",[532,22.517]],["parent/2191",[868,6.274]],["name/2192",[545,26.766]],["parent/2192",[868,6.274]],["name/2193",[869,61.191]],["parent/2193",[]],["name/2194",[531,22.479]],["parent/2194",[869,6.074]],["name/2195",[870,22.104,871,28.423]],["parent/2195",[]],["name/2196",[872,74.217]],["parent/2196",[870,2.187,871,2.813]],["name/2197",[873,74.217]],["parent/2197",[870,2.187,871,2.813]],["name/2198",[874,74.217]],["parent/2198",[870,2.187,871,2.813]],["name/2199",[875,74.217]],["parent/2199",[870,2.187,871,2.813]],["name/2200",[876,74.217]],["parent/2200",[870,2.187,871,2.813]],["name/2201",[877,74.217]],["parent/2201",[870,2.187,871,2.813]],["name/2202",[878,74.217]],["parent/2202",[870,2.187,871,2.813]],["name/2203",[879,74.217]],["parent/2203",[870,2.187,871,2.813]],["name/2204",[880,74.217]],["parent/2204",[870,2.187,871,2.813]],["name/2205",[881,74.217]],["parent/2205",[870,2.187,871,2.813]],["name/2206",[882,74.217]],["parent/2206",[870,2.187,871,2.813]],["name/2207",[883,74.217]],["parent/2207",[870,2.187,871,2.813]],["name/2208",[884,74.217]],["parent/2208",[870,2.187,871,2.813]],["name/2209",[885,74.217]],["parent/2209",[870,2.187,871,2.813]],["name/2210",[886,74.217]],["parent/2210",[870,2.187,871,2.813]],["name/2211",[887,74.217]],["parent/2211",[870,2.187,871,2.813]],["name/2212",[888,74.217]],["parent/2212",[870,2.187,871,2.813]],["name/2213",[889,74.217]],["parent/2213",[870,2.187,871,2.813]],["name/2214",[890,74.217]],["parent/2214",[870,2.187,871,2.813]],["name/2215",[891,74.217]],["parent/2215",[870,2.187,871,2.813]],["name/2216",[892,74.217]],["parent/2216",[870,2.187,871,2.813]],["name/2217",[893,74.217]],["parent/2217",[870,2.187,871,2.813]],["name/2218",[894,74.217]],["parent/2218",[870,2.187,871,2.813]],["name/2219",[527,69.096]],["parent/2219",[870,2.187,871,2.813]],["name/2220",[895,74.217]],["parent/2220",[870,2.187,871,2.813]],["name/2221",[896,74.217]],["parent/2221",[870,2.187,871,2.813]],["name/2222",[746,69.096]],["parent/2222",[870,2.187,897,4.858]],["name/2223",[747,58.082]],["parent/2223",[870,2.187,897,4.858]],["name/2224",[898,74.217]],["parent/2224",[870,2.187,871,2.813]],["name/2225",[899,74.217]],["parent/2225",[870,2.187,871,2.813]],["name/2226",[480,59.517]],["parent/2226",[870,2.187,900,4.858]],["name/2227",[28,69.096]],["parent/2227",[870,2.187,900,4.858]],["name/2228",[901,74.217]],["parent/2228",[870,2.187,871,2.813]],["name/2229",[902,74.217]],["parent/2229",[870,2.187,871,2.813]],["name/2230",[903,74.217]],["parent/2230",[870,2.187,871,2.813]],["name/2231",[904,74.217]],["parent/2231",[870,2.187,905,4.858]],["name/2232",[671,69.096]],["parent/2232",[870,2.187,905,4.858]],["name/2233",[906,74.217]],["parent/2233",[870,2.187,871,2.813]],["name/2234",[907,74.217]],["parent/2234",[870,2.187,871,2.813]],["name/2235",[908,69.096]],["parent/2235",[870,2.187,909,4.858]],["name/2236",[910,69.096]],["parent/2236",[870,2.187,909,4.858]],["name/2237",[911,74.217]],["parent/2237",[870,2.187,871,2.813]],["name/2238",[912,74.217]],["parent/2238",[870,2.187,871,2.813]],["name/2239",[913,74.217]],["parent/2239",[870,2.187,871,2.813]],["name/2240",[291,61.191]],["parent/2240",[870,2.187,914,4.858]],["name/2241",[747,58.082]],["parent/2241",[870,2.187,914,4.858]],["name/2242",[915,74.217]],["parent/2242",[870,2.187,871,2.813]],["name/2243",[916,69.096]],["parent/2243",[870,2.187,917,4.621]],["name/2244",[918,65.723]],["parent/2244",[870,2.187,917,4.621]],["name/2245",[919,69.096]],["parent/2245",[870,2.187,917,4.621]],["name/2246",[920,74.217]],["parent/2246",[870,2.187,871,2.813]],["name/2247",[921,74.217]],["parent/2247",[870,2.187,922,4.302]],["name/2248",[916,69.096]],["parent/2248",[870,2.187,922,4.302]],["name/2249",[918,65.723]],["parent/2249",[870,2.187,922,4.302]],["name/2250",[919,69.096]],["parent/2250",[870,2.187,922,4.302]],["name/2251",[21,43.382]],["parent/2251",[870,2.187,922,4.302]],["name/2252",[908,69.096]],["parent/2252",[870,2.187,923,4.858]],["name/2253",[910,69.096]],["parent/2253",[870,2.187,923,4.858]],["name/2254",[924,74.217]],["parent/2254",[870,2.187,871,2.813]],["name/2255",[128,63.203]],["parent/2255",[870,2.187,925,4.858]],["name/2256",[926,74.217]],["parent/2256",[870,2.187,925,4.858]],["name/2257",[927,74.217]],["parent/2257",[870,2.187,871,2.813]],["name/2258",[928,74.217]],["parent/2258",[870,2.187,871,2.813]],["name/2259",[929,69.096]],["parent/2259",[870,2.187,930,3.619]],["name/2260",[157,63.203]],["parent/2260",[870,2.187,930,3.619]],["name/2261",[931,74.217]],["parent/2261",[870,2.187,930,3.619]],["name/2262",[932,69.096]],["parent/2262",[870,2.187,930,3.619]],["name/2263",[933,69.096]],["parent/2263",[870,2.187,930,3.619]],["name/2264",[934,74.217]],["parent/2264",[870,2.187,930,3.619]],["name/2265",[935,74.217]],["parent/2265",[870,2.187,930,3.619]],["name/2266",[936,74.217]],["parent/2266",[870,2.187,930,3.619]],["name/2267",[937,74.217]],["parent/2267",[870,2.187,930,3.619]],["name/2268",[938,74.217]],["parent/2268",[870,2.187,930,3.619]],["name/2269",[939,74.217]],["parent/2269",[870,2.187,930,3.619]],["name/2270",[72,58.082]],["parent/2270",[870,2.187,930,3.619]],["name/2271",[940,69.096]],["parent/2271",[870,2.187,930,3.619]],["name/2272",[941,74.217]],["parent/2272",[870,2.187,930,3.619]],["name/2273",[942,74.217]],["parent/2273",[870,2.187,871,2.813]],["name/2274",[943,74.217]],["parent/2274",[870,2.187,944,3.341]],["name/2275",[945,74.217]],["parent/2275",[870,2.187,944,3.341]],["name/2276",[929,69.096]],["parent/2276",[870,2.187,944,3.341]],["name/2277",[282,61.191]],["parent/2277",[870,2.187,944,3.341]],["name/2278",[946,74.217]],["parent/2278",[870,2.187,944,3.341]],["name/2279",[947,74.217]],["parent/2279",[870,2.187,944,3.341]],["name/2280",[918,65.723]],["parent/2280",[870,2.187,944,3.341]],["name/2281",[948,74.217]],["parent/2281",[870,2.187,944,3.341]],["name/2282",[949,74.217]],["parent/2282",[870,2.187,944,3.341]],["name/2283",[950,74.217]],["parent/2283",[870,2.187,944,3.341]],["name/2284",[951,74.217]],["parent/2284",[870,2.187,944,3.341]],["name/2285",[952,74.217]],["parent/2285",[870,2.187,944,3.341]],["name/2286",[933,69.096]],["parent/2286",[870,2.187,944,3.341]],["name/2287",[932,69.096]],["parent/2287",[870,2.187,944,3.341]],["name/2288",[940,69.096]],["parent/2288",[870,2.187,944,3.341]],["name/2289",[953,74.217]],["parent/2289",[870,2.187,944,3.341]],["name/2290",[954,74.217]],["parent/2290",[870,2.187,944,3.341]],["name/2291",[955,74.217]],["parent/2291",[870,2.187,944,3.341]],["name/2292",[956,74.217]],["parent/2292",[870,2.187,944,3.341]],["name/2293",[957,74.217]],["parent/2293",[870,2.187,944,3.341]],["name/2294",[958,74.217]],["parent/2294",[870,2.187,944,3.341]],["name/2295",[959,74.217]],["parent/2295",[870,2.187,871,2.813]],["name/2296",[960,74.217]],["parent/2296",[870,2.187,871,2.813]],["name/2297",[21,43.382]],["parent/2297",[870,2.187,961,5.218]],["name/2298",[392,69.096]],["parent/2298",[870,2.187,962,4.083]],["name/2299",[963,74.217]],["parent/2299",[870,2.187,962,4.083]],["name/2300",[589,65.723]],["parent/2300",[870,2.187,962,4.083]],["name/2301",[964,74.217]],["parent/2301",[870,2.187,962,4.083]],["name/2302",[965,74.217]],["parent/2302",[870,2.187,962,4.083]],["name/2303",[966,74.217]],["parent/2303",[870,2.187,962,4.083]],["name/2304",[967,74.217]],["parent/2304",[870,2.187,962,4.083]],["name/2305",[968,53.797]],["parent/2305",[]],["name/2306",[969,74.217]],["parent/2306",[968,5.34]],["name/2307",[970,74.217]],["parent/2307",[968,5.34]],["name/2308",[971,74.217]],["parent/2308",[968,5.34]],["name/2309",[545,26.766]],["parent/2309",[972,6.074]],["name/2310",[553,34.415]],["parent/2310",[972,6.074]],["name/2311",[531,22.479]],["parent/2311",[972,6.074]],["name/2312",[653,65.723]],["parent/2312",[972,6.074]],["name/2313",[532,22.517]],["parent/2313",[972,6.074]],["name/2314",[973,74.217]],["parent/2314",[968,5.34]],["name/2315",[974,74.217]],["parent/2315",[968,5.34]],["name/2316",[975,74.217]],["parent/2316",[968,5.34]],["name/2317",[976,69.096]],["parent/2317",[968,5.34]],["name/2318",[977,74.217]],["parent/2318",[968,5.34]],["name/2319",[978,69.096]],["parent/2319",[968,5.34]],["name/2320",[979,74.217]],["parent/2320",[968,5.34]],["name/2321",[397,65.723]],["parent/2321",[980,6.859]],["name/2322",[398,65.723]],["parent/2322",[980,6.859]],["name/2323",[981,56.827]],["parent/2323",[]],["name/2324",[982,69.096]],["parent/2324",[981,5.641]],["name/2325",[21,43.382]],["parent/2325",[983,6.859]],["name/2326",[31,50.805]],["parent/2326",[983,6.859]],["name/2327",[984,69.096]],["parent/2327",[981,5.641]],["name/2328",[21,43.382]],["parent/2328",[985,6.859]],["name/2329",[31,50.805]],["parent/2329",[985,6.859]],["name/2330",[986,69.096]],["parent/2330",[981,5.641]],["name/2331",[21,43.382]],["parent/2331",[987,6.859]],["name/2332",[31,50.805]],["parent/2332",[987,6.859]],["name/2333",[988,69.096]],["parent/2333",[981,5.641]],["name/2334",[21,43.382]],["parent/2334",[989,6.859]],["name/2335",[31,50.805]],["parent/2335",[989,6.859]],["name/2336",[990,69.096]],["parent/2336",[981,5.641]],["name/2337",[21,43.382]],["parent/2337",[991,6.859]],["name/2338",[31,50.805]],["parent/2338",[991,6.859]],["name/2339",[992,69.096]],["parent/2339",[981,5.641]],["name/2340",[21,43.382]],["parent/2340",[993,6.859]],["name/2341",[31,50.805]],["parent/2341",[993,6.859]],["name/2342",[994,69.096]],["parent/2342",[981,5.641]],["name/2343",[21,43.382]],["parent/2343",[995,6.859]],["name/2344",[31,50.805]],["parent/2344",[995,6.859]],["name/2345",[996,37.077,997,42.282]],["parent/2345",[]],["name/2346",[998,69.096]],["parent/2346",[996,3.669,997,4.184]],["name/2347",[999,74.217]],["parent/2347",[996,3.669,997,4.184]],["name/2348",[1000,74.217]],["parent/2348",[996,3.669,997,4.184]],["name/2349",[997,59.517]],["parent/2349",[996,3.669,1001,4.083]],["name/2350",[1002,74.217]],["parent/2350",[996,3.669,1001,4.083]],["name/2351",[545,26.766]],["parent/2351",[996,3.669,1001,4.083]],["name/2352",[553,34.415]],["parent/2352",[996,3.669,1001,4.083]],["name/2353",[531,22.479]],["parent/2353",[996,3.669,1001,4.083]],["name/2354",[653,65.723]],["parent/2354",[996,3.669,1001,4.083]],["name/2355",[532,22.517]],["parent/2355",[996,3.669,1001,4.083]],["name/2356",[1003,69.096]],["parent/2356",[996,3.669,997,4.184]],["name/2357",[1003,69.096]],["parent/2357",[996,3.669,1004,5.218]],["name/2358",[112,37.077,1005,36.093]],["parent/2358",[]],["name/2359",[1006,74.217]],["parent/2359",[112,3.669,1005,3.572]],["name/2360",[1007,74.217]],["parent/2360",[1005,3.572,1008,4.621]],["name/2361",[532,22.517]],["parent/2361",[1005,3.572,1008,4.621]],["name/2362",[21,43.382]],["parent/2362",[1005,3.572,1008,4.621]],["name/2363",[23,53.797]],["parent/2363",[112,3.669,1005,3.572]],["name/2364",[1009,74.217]],["parent/2364",[445,2.988,1005,3.572]],["name/2365",[31,50.805]],["parent/2365",[445,2.988,1005,3.572]],["name/2366",[5,56.827]],["parent/2366",[445,2.988,1005,3.572]],["name/2367",[1010,74.217]],["parent/2367",[445,2.988,1005,3.572]],["name/2368",[38,63.203]],["parent/2368",[445,2.988,1005,3.572]],["name/2369",[1011,74.217]],["parent/2369",[445,2.988,1005,3.572]],["name/2370",[447,61.191]],["parent/2370",[445,2.988,1005,3.572]],["name/2371",[1012,74.217]],["parent/2371",[445,2.988,1005,3.572]],["name/2372",[1013,74.217]],["parent/2372",[445,2.988,1005,3.572]],["name/2373",[818,29.567,1014,31.084,1015,31.084,1016,31.084]],["parent/2373",[]],["name/2374",[23,53.797]],["parent/2374",[818,2.918,1014,3.068,1015,3.068,1016,3.068]],["name/2375",[1017,69.096]],["parent/2375",[]],["name/2376",[1018,74.217]],["parent/2376",[1017,6.859]],["name/2377",[403,69.096]],["parent/2377",[0,4.867]],["name/2378",[386,69.096]],["parent/2378",[0,4.867]],["name/2379",[976,69.096]],["parent/2379",[0,4.867]],["name/2380",[978,69.096]],["parent/2380",[0,4.867]],["name/2381",[511,69.096]],["parent/2381",[0,4.867]],["name/2382",[505,69.096]],["parent/2382",[0,4.867]],["name/2383",[998,69.096]],["parent/2383",[0,4.867]],["name/2384",[982,69.096]],["parent/2384",[0,4.867]],["name/2385",[984,69.096]],["parent/2385",[0,4.867]],["name/2386",[986,69.096]],["parent/2386",[0,4.867]],["name/2387",[988,69.096]],["parent/2387",[0,4.867]],["name/2388",[990,69.096]],["parent/2388",[0,4.867]],["name/2389",[992,69.096]],["parent/2389",[0,4.867]],["name/2390",[994,69.096]],["parent/2390",[0,4.867]],["name/2391",[532,22.517]],["parent/2391",[615,6.524]],["name/2392",[532,22.517]],["parent/2392",[619,6.274]],["name/2393",[532,22.517]],["parent/2393",[629,6.074]],["name/2394",[532,22.517]],["parent/2394",[630,6.524]],["name/2395",[532,22.517]],["parent/2395",[631,6.524]],["name/2396",[545,26.766]],["parent/2396",[645,6.074]],["name/2397",[553,34.415]],["parent/2397",[645,6.074]],["name/2398",[532,22.517]],["parent/2398",[645,6.074]],["name/2399",[545,26.766]],["parent/2399",[652,5.908]],["name/2400",[553,34.415]],["parent/2400",[652,5.908]],["name/2401",[531,22.479]],["parent/2401",[652,5.908]],["name/2402",[532,22.517]],["parent/2402",[656,6.274]],["name/2403",[532,22.517]],["parent/2403",[658,6.274]],["name/2404",[545,26.766]],["parent/2404",[665,6.274]],["name/2405",[545,26.766]],["parent/2405",[666,6.274]],["name/2406",[532,22.517]],["parent/2406",[666,6.274]],["name/2407",[532,22.517]],["parent/2407",[673,6.274]],["name/2408",[545,26.766]],["parent/2408",[695,6.074]],["name/2409",[553,34.415]],["parent/2409",[695,6.074]],["name/2410",[532,22.517]],["parent/2410",[712,6.524]],["name/2411",[532,22.517]],["parent/2411",[714,6.274]],["name/2412",[532,22.517]],["parent/2412",[715,6.274]],["name/2413",[532,22.517]],["parent/2413",[716,6.274]],["name/2414",[532,22.517]],["parent/2414",[717,6.274]],["name/2415",[532,22.517]],["parent/2415",[718,6.274]],["name/2416",[532,22.517]],["parent/2416",[732,6.274]],["name/2417",[532,22.517]],["parent/2417",[753,6.524]],["name/2418",[532,22.517]],["parent/2418",[762,6.274]],["name/2419",[532,22.517]],["parent/2419",[767,6.274]],["name/2420",[532,22.517]],["parent/2420",[769,6.274]],["name/2421",[532,22.517]],["parent/2421",[770,6.274]],["name/2422",[545,26.766]],["parent/2422",[774,6.274]],["name/2423",[545,26.766]],["parent/2423",[794,6.274]],["name/2424",[532,22.517]],["parent/2424",[795,6.074]],["name/2425",[545,26.766]],["parent/2425",[801,6.274]],["name/2426",[532,22.517]],["parent/2426",[804,6.274]],["name/2427",[532,22.517]],["parent/2427",[806,6.274]],["name/2428",[532,22.517]],["parent/2428",[813,6.074]],["name/2429",[532,22.517]],["parent/2429",[814,6.074]],["name/2430",[532,22.517]],["parent/2430",[815,6.074]],["name/2431",[532,22.517]],["parent/2431",[816,5.766]],["name/2432",[532,22.517]],["parent/2432",[824,6.524]],["name/2433",[532,22.517]],["parent/2433",[826,6.274]],["name/2434",[545,26.766]],["parent/2434",[831,6.074]],["name/2435",[553,34.415]],["parent/2435",[831,6.074]],["name/2436",[532,22.517]],["parent/2436",[831,6.074]],["name/2437",[532,22.517]],["parent/2437",[832,6.274]],["name/2438",[545,26.766]],["parent/2438",[835,6.074]],["name/2439",[553,34.415]],["parent/2439",[835,6.074]],["name/2440",[532,22.517]],["parent/2440",[835,6.074]],["name/2441",[532,22.517]],["parent/2441",[837,6.074]],["name/2442",[545,26.766]],["parent/2442",[839,6.274]],["name/2443",[532,22.517]],["parent/2443",[839,6.274]],["name/2444",[545,26.766]],["parent/2444",[841,6.274]],["name/2445",[532,22.517]],["parent/2445",[841,6.274]],["name/2446",[545,26.766]],["parent/2446",[843,6.074]],["name/2447",[553,34.415]],["parent/2447",[843,6.074]],["name/2448",[545,26.766]],["parent/2448",[844,6.074]],["name/2449",[553,34.415]],["parent/2449",[844,6.074]],["name/2450",[532,22.517]],["parent/2450",[844,6.074]],["name/2451",[545,26.766]],["parent/2451",[856,6.074]],["name/2452",[553,34.415]],["parent/2452",[856,6.074]],["name/2453",[532,22.517]],["parent/2453",[856,6.074]],["name/2454",[545,26.766]],["parent/2454",[858,6.074]],["name/2455",[553,34.415]],["parent/2455",[858,6.074]],["name/2456",[532,22.517]],["parent/2456",[858,6.074]],["name/2457",[532,22.517]],["parent/2457",[866,6.074]],["name/2458",[545,26.766]],["parent/2458",[869,6.074]],["name/2459",[553,34.415]],["parent/2459",[869,6.074]],["name/2460",[532,22.517]],["parent/2460",[869,6.074]]],"invertedIndex":[["__type",{"_index":21,"name":{"17":{},"22":{},"49":{},"581":{},"586":{},"623":{},"627":{},"630":{},"634":{},"637":{},"640":{},"654":{},"668":{},"683":{},"684":{},"687":{},"745":{},"1117":{},"1132":{},"1144":{},"2128":{},"2138":{},"2251":{},"2297":{},"2325":{},"2328":{},"2331":{},"2334":{},"2337":{},"2340":{},"2343":{},"2362":{}},"parent":{}}],["aborterror",{"_index":982,"name":{"2324":{},"2384":{}},"parent":{}}],["acl_cat",{"_index":47,"name":{"50":{}},"parent":{}}],["acl_deluser",{"_index":50,"name":{"52":{}},"parent":{}}],["acl_genpass",{"_index":52,"name":{"54":{}},"parent":{}}],["acl_getuser",{"_index":54,"name":{"56":{}},"parent":{}}],["acl_list",{"_index":56,"name":{"58":{}},"parent":{}}],["acl_load",{"_index":58,"name":{"60":{}},"parent":{}}],["acl_log",{"_index":62,"name":{"64":{}},"parent":{}}],["acl_log_reset",{"_index":60,"name":{"62":{}},"parent":{}}],["acl_save",{"_index":64,"name":{"66":{}},"parent":{}}],["acl_setuser",{"_index":66,"name":{"68":{}},"parent":{}}],["acl_users",{"_index":68,"name":{"70":{}},"parent":{}}],["acl_whoami",{"_index":70,"name":{"72":{}},"parent":{}}],["aclcat",{"_index":49,"name":{"51":{}},"parent":{}}],["acldeluser",{"_index":51,"name":{"53":{}},"parent":{}}],["aclgenpass",{"_index":53,"name":{"55":{}},"parent":{}}],["aclgetuser",{"_index":55,"name":{"57":{}},"parent":{}}],["acllist",{"_index":57,"name":{"59":{}},"parent":{}}],["aclload",{"_index":59,"name":{"61":{}},"parent":{}}],["acllog",{"_index":63,"name":{"65":{}},"parent":{}}],["acllogreset",{"_index":61,"name":{"63":{}},"parent":{}}],["aclsave",{"_index":65,"name":{"67":{}},"parent":{}}],["aclsetuser",{"_index":67,"name":{"69":{}},"parent":{}}],["aclusers",{"_index":69,"name":{"71":{}},"parent":{}}],["aclwhoami",{"_index":71,"name":{"73":{}},"parent":{}}],["addcommand",{"_index":38,"name":{"36":{},"664":{},"1140":{},"2368":{}},"parent":{}}],["address",{"_index":570,"name":{"1276":{}},"parent":{}}],["addscript",{"_index":1011,"name":{"2369":{}},"parent":{}}],["admin",{"_index":932,"name":{"2262":{},"2287":{}},"parent":{}}],["append",{"_index":180,"name":{"212":{},"213":{},"746":{},"747":{}},"parent":{}}],["args",{"_index":1007,"name":{"2360":{}},"parent":{}}],["arguments",{"_index":926,"name":{"2256":{}},"parent":{}}],["arity",{"_index":963,"name":{"2299":{}},"parent":{}}],["asap",{"_index":7,"name":{"6":{},"589":{}},"parent":{}}],["asking",{"_index":72,"name":{"74":{},"75":{},"184":{},"1756":{},"2270":{}},"parent":{"1757":{},"1758":{}}}],["async",{"_index":635,"name":{"1421":{}},"parent":{}}],["auth",{"_index":73,"name":{"76":{},"77":{}},"parent":{}}],["autherror",{"_index":994,"name":{"2342":{},"2390":{}},"parent":{}}],["authoptions",{"_index":548,"name":{"1204":{}},"parent":{}}],["bgrewriteaof",{"_index":74,"name":{"78":{},"79":{}},"parent":{}}],["bgsave",{"_index":75,"name":{"80":{},"81":{}},"parent":{}}],["bitcount",{"_index":181,"name":{"214":{},"215":{},"748":{},"749":{}},"parent":{}}],["bitfield",{"_index":182,"name":{"216":{},"217":{},"750":{},"751":{}},"parent":{}}],["bitmap",{"_index":949,"name":{"2282":{}},"parent":{}}],["bitop",{"_index":183,"name":{"218":{},"219":{},"752":{},"753":{}},"parent":{}}],["bitpos",{"_index":184,"name":{"220":{},"221":{},"754":{},"755":{}},"parent":{}}],["bitvalue",{"_index":895,"name":{"2220":{}},"parent":{}}],["blmove",{"_index":185,"name":{"222":{},"223":{},"756":{},"757":{}},"parent":{}}],["block",{"_index":822,"name":{"2037":{}},"parent":{}}],["blocking",{"_index":954,"name":{"2290":{}},"parent":{}}],["blpop",{"_index":186,"name":{"224":{},"225":{},"758":{},"759":{}},"parent":{}}],["brpop",{"_index":187,"name":{"226":{},"227":{},"760":{},"761":{}},"parent":{}}],["brpoplpush",{"_index":188,"name":{"228":{},"229":{},"762":{},"763":{}},"parent":{}}],["buffer_mode",{"_index":653,"name":{"1486":{},"2312":{},"2354":{}},"parent":{}}],["bzpopmax",{"_index":189,"name":{"230":{},"231":{},"764":{},"765":{}},"parent":{}}],["bzpopmin",{"_index":190,"name":{"232":{},"233":{},"766":{},"767":{}},"parent":{}}],["categories",{"_index":967,"name":{"2304":{}},"parent":{}}],["chainid",{"_index":9,"name":{"7":{},"590":{}},"parent":{}}],["chaininexecution",{"_index":37,"name":{"35":{}},"parent":{}}],["client",{"_index":482,"name":{"717":{},"721":{}},"parent":{}}],["client_caching",{"_index":76,"name":{"82":{}},"parent":{}}],["client_getname",{"_index":78,"name":{"84":{}},"parent":{}}],["client_getredir",{"_index":80,"name":{"86":{}},"parent":{}}],["client_id",{"_index":82,"name":{"88":{}},"parent":{}}],["client_info",{"_index":88,"name":{"94":{}},"parent":{}}],["client_kill",{"_index":84,"name":{"90":{}},"parent":{}}],["client_setname",{"_index":86,"name":{"92":{}},"parent":{}}],["clientcaching",{"_index":77,"name":{"83":{}},"parent":{}}],["clientclosederror",{"_index":988,"name":{"2333":{},"2387":{}},"parent":{}}],["clientcommandoptions",{"_index":406,"name":{"587":{}},"parent":{}}],["clientgetname",{"_index":79,"name":{"85":{}},"parent":{}}],["clientgetredir",{"_index":81,"name":{"87":{}},"parent":{}}],["clientid",{"_index":83,"name":{"89":{}},"parent":{}}],["clientinfo",{"_index":89,"name":{"95":{}},"parent":{}}],["clientkill",{"_index":85,"name":{"91":{}},"parent":{}}],["clientkillfilters",{"_index":569,"name":{"1275":{}},"parent":{}}],["clientlegacycommandarguments",{"_index":409,"name":{"593":{}},"parent":{}}],["clientoptionsdefaults",{"_index":490,"name":{"731":{}},"parent":{}}],["clientsetname",{"_index":87,"name":{"93":{}},"parent":{}}],["cluster_addslots",{"_index":90,"name":{"96":{}},"parent":{}}],["cluster_flushslots",{"_index":92,"name":{"98":{}},"parent":{}}],["cluster_info",{"_index":94,"name":{"100":{}},"parent":{}}],["cluster_meet",{"_index":98,"name":{"104":{}},"parent":{}}],["cluster_nodes",{"_index":96,"name":{"102":{}},"parent":{}}],["cluster_reset",{"_index":100,"name":{"106":{}},"parent":{}}],["cluster_setslot",{"_index":102,"name":{"108":{}},"parent":{}}],["cluster_slots",{"_index":104,"name":{"110":{}},"parent":{}}],["clusteraddslots",{"_index":91,"name":{"97":{}},"parent":{}}],["clusterflushslots",{"_index":93,"name":{"99":{}},"parent":{}}],["clusterinfo",{"_index":95,"name":{"101":{}},"parent":{}}],["clustermeet",{"_index":99,"name":{"105":{}},"parent":{}}],["clusternode",{"_index":479,"name":{"715":{}},"parent":{}}],["clusternodes",{"_index":97,"name":{"103":{}},"parent":{}}],["clusterreset",{"_index":101,"name":{"107":{}},"parent":{}}],["clusterresetmodes",{"_index":601,"name":{"1334":{}},"parent":{}}],["clustersetslot",{"_index":103,"name":{"109":{}},"parent":{}}],["clusterslots",{"_index":105,"name":{"111":{}},"parent":{}}],["clusterslotsreply",{"_index":610,"name":{"1346":{}},"parent":{}}],["clusterslotstates",{"_index":603,"name":{"1338":{}},"parent":{}}],["command",{"_index":112,"name":{"118":{},"119":{},"651":{},"1129":{},"2358":{}},"parent":{"652":{},"653":{},"655":{},"1130":{},"1131":{},"1133":{},"2359":{},"2363":{}}}],["command.default",{"_index":445,"name":{},"parent":{"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{},"667":{},"668":{},"669":{},"1134":{},"1135":{},"1136":{},"1137":{},"1138":{},"1139":{},"1140":{},"1141":{},"1142":{},"1143":{},"1144":{},"1145":{},"2364":{},"2365":{},"2366":{},"2367":{},"2368":{},"2369":{},"2370":{},"2371":{},"2372":{}}}],["command.redisclientmultiexecutor",{"_index":444,"name":{},"parent":{"654":{}}}],["command.redisclustermultiexecutor",{"_index":518,"name":{},"parent":{"1132":{}}}],["command.redismultiqueuedcommand",{"_index":1008,"name":{},"parent":{"2360":{},"2361":{},"2362":{}}}],["command_count",{"_index":106,"name":{"112":{}},"parent":{}}],["command_getkeys",{"_index":108,"name":{"114":{}},"parent":{}}],["command_info",{"_index":110,"name":{"116":{}},"parent":{}}],["commandcategories",{"_index":942,"name":{"2273":{}},"parent":{}}],["commandcount",{"_index":107,"name":{"113":{}},"parent":{}}],["commandflags",{"_index":928,"name":{"2258":{}},"parent":{}}],["commandgetkeys",{"_index":109,"name":{"115":{}},"parent":{}}],["commandinfo",{"_index":111,"name":{"117":{}},"parent":{}}],["commandoptions",{"_index":2,"name":{"2":{},"595":{},"1147":{},"1149":{}},"parent":{}}],["commandrawreply",{"_index":959,"name":{"2295":{}},"parent":{}}],["commandreply",{"_index":960,"name":{"2296":{}},"parent":{}}],["commandsexecutor",{"_index":425,"name":{"616":{},"663":{},"1120":{},"1139":{}},"parent":{}}],["commandsqueuemaxlength",{"_index":394,"name":{"574":{}},"parent":{}}],["config_get",{"_index":113,"name":{"120":{}},"parent":{}}],["config_resetastat",{"_index":115,"name":{"122":{}},"parent":{}}],["config_rewrite",{"_index":117,"name":{"124":{}},"parent":{}}],["config_set",{"_index":119,"name":{"126":{}},"parent":{}}],["configepoch",{"_index":592,"name":{"1313":{},"1326":{}},"parent":{}}],["configget",{"_index":114,"name":{"121":{}},"parent":{}}],["configresetstat",{"_index":116,"name":{"123":{}},"parent":{}}],["configrewrite",{"_index":118,"name":{"125":{}},"parent":{}}],["configset",{"_index":120,"name":{"127":{}},"parent":{}}],["connect",{"_index":424,"name":{"615":{},"702":{},"703":{},"725":{},"1119":{}},"parent":{}}],["connected",{"_index":584,"name":{"1305":{}},"parent":{}}],["connection",{"_index":956,"name":{"2292":{}},"parent":{}}],["connectiontimeouterror",{"_index":986,"name":{"2330":{},"2386":{}},"parent":{}}],["connecttimeout",{"_index":451,"name":{"672":{},"679":{}},"parent":{}}],["constructor",{"_index":31,"name":{"29":{},"599":{},"657":{},"692":{},"719":{},"1113":{},"1135":{},"2326":{},"2329":{},"2332":{},"2335":{},"2338":{},"2341":{},"2344":{},"2365":{}},"parent":{}}],["coordinates",{"_index":919,"name":{"2245":{},"2250":{}},"parent":{}}],["copy",{"_index":191,"name":{"234":{},"235":{},"768":{},"769":{}},"parent":{}}],["cork",{"_index":476,"name":{"713":{}},"parent":{}}],["count",{"_index":747,"name":{"1797":{},"1956":{},"2036":{},"2130":{},"2140":{},"2223":{},"2241":{}},"parent":{}}],["cport",{"_index":596,"name":{"1317":{},"1330":{}},"parent":{}}],["create",{"_index":412,"name":{"597":{},"1112":{}},"parent":{}}],["createclient",{"_index":1,"name":{"1":{}},"parent":{}}],["createcluster",{"_index":3,"name":{"3":{}},"parent":{}}],["createnetsocket",{"_index":471,"name":{"706":{}},"parent":{}}],["createsocket",{"_index":470,"name":{"705":{}},"parent":{}}],["createtlssocket",{"_index":472,"name":{"707":{}},"parent":{}}],["cursor",{"_index":749,"name":{"1799":{}},"parent":{}}],["dangerous",{"_index":955,"name":{"2291":{}},"parent":{}}],["database",{"_index":393,"name":{"573":{}},"parent":{}}],["dbsize",{"_index":121,"name":{"128":{},"129":{}},"parent":{}}],["declarations/cluster",{"_index":1015,"name":{"2373":{}},"parent":{"2374":{}}}],["decr",{"_index":192,"name":{"236":{},"237":{},"770":{},"771":{}},"parent":{}}],["decrby",{"_index":193,"name":{"238":{},"239":{},"772":{},"773":{}},"parent":{}}],["default",{"_index":23,"name":{"18":{},"48":{},"594":{},"655":{},"688":{},"718":{},"744":{},"1110":{},"1133":{},"2363":{},"2374":{}},"parent":{}}],["defaultreconnectstrategy",{"_index":464,"name":{"690":{}},"parent":{}}],["defaults",{"_index":508,"name":{"1104":{}},"parent":{}}],["definelegacycommand",{"_index":422,"name":{"613":{},"662":{}},"parent":{}}],["definescript",{"_index":998,"name":{"2346":{},"2383":{}},"parent":{}}],["del",{"_index":194,"name":{"240":{},"241":{},"774":{},"775":{}},"parent":{}}],["denyoom",{"_index":931,"name":{"2261":{}},"parent":{}}],["destroyisolationpool",{"_index":440,"name":{"650":{}},"parent":{}}],["discard",{"_index":122,"name":{"130":{},"131":{}},"parent":{}}],["disconnect",{"_index":439,"name":{"649":{},"710":{},"742":{},"1128":{}},"parent":{}}],["disconnected",{"_index":586,"name":{"1306":{}},"parent":{}}],["disconnectsclienterror",{"_index":990,"name":{"2336":{},"2388":{}},"parent":{}}],["discovernodes",{"_index":486,"name":{"726":{}},"parent":{}}],["distance",{"_index":916,"name":{"2243":{},"2248":{}},"parent":{}}],["dump",{"_index":195,"name":{"242":{},"243":{},"776":{},"777":{}},"parent":{}}],["duplicate",{"_index":423,"name":{"614":{},"1118":{}},"parent":{}}],["echo",{"_index":123,"name":{"132":{},"133":{}},"parent":{}}],["emitpubsubmessage",{"_index":26,"name":{"20":{}},"parent":{}}],["encodecommand",{"_index":526,"name":{"1154":{}},"parent":{}}],["eval",{"_index":196,"name":{"244":{},"245":{},"778":{},"779":{}},"parent":{}}],["evaloptions",{"_index":924,"name":{"2254":{}},"parent":{}}],["evalsha",{"_index":197,"name":{"246":{},"247":{},"780":{},"781":{}},"parent":{}}],["exec",{"_index":447,"name":{"666":{},"667":{},"1142":{},"1143":{},"2370":{}},"parent":{}}],["execaspipeline",{"_index":448,"name":{"669":{},"1145":{}},"parent":{}}],["executeisolated",{"_index":432,"name":{"642":{}},"parent":{}}],["executescript",{"_index":428,"name":{"620":{},"1123":{}},"parent":{}}],["executor",{"_index":446,"name":{"659":{},"1137":{}},"parent":{}}],["exists",{"_index":198,"name":{"248":{},"249":{},"782":{},"783":{}},"parent":{}}],["expire",{"_index":199,"name":{"250":{},"251":{},"784":{},"785":{}},"parent":{}}],["expireat",{"_index":200,"name":{"252":{},"253":{},"786":{},"787":{}},"parent":{}}],["extend",{"_index":411,"name":{"596":{},"656":{},"1134":{}},"parent":{}}],["extendwithcommands",{"_index":523,"name":{"1151":{}},"parent":{}}],["extendwithmodulesandscripts",{"_index":524,"name":{"1152":{}},"parent":{}}],["extractfirstkey",{"_index":512,"name":{"1111":{}},"parent":{}}],["extractlinevalue",{"_index":580,"name":{"1297":{}},"parent":{}}],["failover",{"_index":124,"name":{"134":{},"135":{}},"parent":{}}],["fast",{"_index":940,"name":{"2271":{},"2288":{}},"parent":{}}],["field",{"_index":669,"name":{"1540":{}},"parent":{}}],["first_key_index",{"_index":545,"name":{"1197":{},"1216":{},"1221":{},"1226":{},"1230":{},"1235":{},"1239":{},"1243":{},"1247":{},"1251":{},"1255":{},"1376":{},"1384":{},"1388":{},"1408":{},"1429":{},"1433":{},"1438":{},"1443":{},"1448":{},"1453":{},"1460":{},"1465":{},"1470":{},"1474":{},"1478":{},"1483":{},"1490":{},"1496":{},"1500":{},"1503":{},"1507":{},"1511":{},"1515":{},"1519":{},"1523":{},"1528":{},"1537":{},"1545":{},"1548":{},"1552":{},"1556":{},"1560":{},"1564":{},"1568":{},"1587":{},"1591":{},"1597":{},"1605":{},"1609":{},"1613":{},"1624":{},"1628":{},"1632":{},"1637":{},"1641":{},"1645":{},"1661":{},"1666":{},"1685":{},"1688":{},"1691":{},"1694":{},"1697":{},"1700":{},"1704":{},"1708":{},"1715":{},"1719":{},"1749":{},"1752":{},"1766":{},"1770":{},"1774":{},"1778":{},"1782":{},"1786":{},"1804":{},"1822":{},"1826":{},"1830":{},"1834":{},"1838":{},"1841":{},"1845":{},"1852":{},"1856":{},"1859":{},"1863":{},"1866":{},"1869":{},"1873":{},"1878":{},"1882":{},"1889":{},"1893":{},"1898":{},"1903":{},"1908":{},"1918":{},"1922":{},"1927":{},"1932":{},"1939":{},"1946":{},"1950":{},"1954":{},"1962":{},"1974":{},"1978":{},"1981":{},"1985":{},"1988":{},"1992":{},"1996":{},"2001":{},"2006":{},"2011":{},"2016":{},"2020":{},"2024":{},"2028":{},"2039":{},"2046":{},"2049":{},"2053":{},"2058":{},"2063":{},"2068":{},"2073":{},"2077":{},"2082":{},"2088":{},"2092":{},"2097":{},"2103":{},"2109":{},"2119":{},"2124":{},"2134":{},"2146":{},"2152":{},"2157":{},"2161":{},"2165":{},"2169":{},"2173":{},"2178":{},"2182":{},"2187":{},"2192":{},"2309":{},"2351":{},"2396":{},"2399":{},"2404":{},"2405":{},"2408":{},"2422":{},"2423":{},"2425":{},"2434":{},"2438":{},"2442":{},"2444":{},"2446":{},"2448":{},"2451":{},"2454":{},"2458":{}},"parent":{}}],["firstkey",{"_index":519,"name":{"1138":{}},"parent":{}}],["firstkeyindex",{"_index":964,"name":{"2301":{}},"parent":{}}],["flags",{"_index":589,"name":{"1310":{},"1323":{},"2300":{}},"parent":{}}],["flushall",{"_index":46,"name":{"46":{},"136":{},"137":{}},"parent":{}}],["flushdb",{"_index":125,"name":{"138":{},"139":{}},"parent":{}}],["flushqueue",{"_index":24,"name":{"19":{}},"parent":{}}],["flushwaitingforreply",{"_index":45,"name":{"45":{}},"parent":{}}],["force",{"_index":800,"name":{"1967":{}},"parent":{}}],["generatechainid",{"_index":1009,"name":{"2364":{}},"parent":{}}],["geo",{"_index":951,"name":{"2284":{}},"parent":{}}],["geoadd",{"_index":201,"name":{"254":{},"255":{},"788":{},"789":{}},"parent":{}}],["geocoordinates",{"_index":907,"name":{"2234":{}},"parent":{}}],["geodist",{"_index":202,"name":{"256":{},"257":{},"790":{},"791":{}},"parent":{}}],["geohash",{"_index":203,"name":{"258":{},"259":{},"792":{},"793":{}},"parent":{}}],["geopos",{"_index":204,"name":{"260":{},"261":{},"794":{},"795":{}},"parent":{}}],["georeplywith",{"_index":915,"name":{"2242":{}},"parent":{}}],["georeplywithmember",{"_index":920,"name":{"2246":{}},"parent":{}}],["geosearch",{"_index":207,"name":{"264":{},"265":{},"798":{},"799":{}},"parent":{}}],["geosearch_with",{"_index":205,"name":{"262":{},"796":{}},"parent":{}}],["geosearchby",{"_index":912,"name":{"2238":{}},"parent":{}}],["geosearchfrom",{"_index":911,"name":{"2237":{}},"parent":{}}],["geosearchoptions",{"_index":913,"name":{"2239":{}},"parent":{}}],["geosearchstore",{"_index":208,"name":{"266":{},"267":{},"800":{},"801":{}},"parent":{}}],["geosearchwith",{"_index":206,"name":{"263":{},"797":{}},"parent":{}}],["geounits",{"_index":906,"name":{"2233":{}},"parent":{}}],["get",{"_index":211,"name":{"270":{},"271":{},"804":{},"805":{}},"parent":{}}],["get_buffer",{"_index":209,"name":{"268":{},"802":{}},"parent":{}}],["getbit",{"_index":212,"name":{"272":{},"273":{},"806":{},"807":{}},"parent":{}}],["getbuffer",{"_index":210,"name":{"269":{},"803":{}},"parent":{}}],["getclient",{"_index":498,"name":{"739":{}},"parent":{}}],["getcommandtosend",{"_index":42,"name":{"42":{}},"parent":{}}],["getdel",{"_index":213,"name":{"274":{},"275":{},"808":{},"809":{}},"parent":{}}],["getex",{"_index":214,"name":{"276":{},"277":{},"810":{},"811":{}},"parent":{}}],["getmasters",{"_index":499,"name":{"740":{},"1126":{}},"parent":{}}],["getnodebyurl",{"_index":500,"name":{"741":{}},"parent":{}}],["getrandomclient",{"_index":497,"name":{"738":{}},"parent":{}}],["getrange",{"_index":215,"name":{"278":{},"279":{},"812":{},"813":{}},"parent":{}}],["getset",{"_index":216,"name":{"280":{},"281":{},"814":{},"815":{}},"parent":{}}],["getslotclient",{"_index":495,"name":{"736":{}},"parent":{}}],["getslotmaster",{"_index":493,"name":{"734":{},"1127":{}},"parent":{}}],["handlecommanderror",{"_index":514,"name":{"1124":{}},"parent":{}}],["handleexecreplies",{"_index":1012,"name":{"2371":{}},"parent":{}}],["hash",{"_index":918,"name":{"2244":{},"2249":{},"2280":{}},"parent":{}}],["hdel",{"_index":217,"name":{"282":{},"283":{},"816":{},"817":{}},"parent":{}}],["hello",{"_index":126,"name":{"140":{},"141":{}},"parent":{}}],["hexists",{"_index":218,"name":{"284":{},"285":{},"818":{},"819":{}},"parent":{}}],["hget",{"_index":219,"name":{"286":{},"287":{},"820":{},"821":{}},"parent":{}}],["hgetall",{"_index":220,"name":{"288":{},"289":{},"822":{},"823":{}},"parent":{}}],["hincrby",{"_index":221,"name":{"290":{},"291":{},"824":{},"825":{}},"parent":{}}],["hincrbyfloat",{"_index":222,"name":{"292":{},"293":{},"826":{},"827":{}},"parent":{}}],["hkeys",{"_index":223,"name":{"294":{},"295":{},"828":{},"829":{}},"parent":{}}],["hlen",{"_index":224,"name":{"296":{},"297":{},"830":{},"831":{}},"parent":{}}],["hmget",{"_index":225,"name":{"298":{},"299":{},"832":{},"833":{}},"parent":{}}],["host",{"_index":594,"name":{"1315":{},"1328":{}},"parent":{}}],["hrandfield",{"_index":230,"name":{"304":{},"305":{},"838":{},"839":{}},"parent":{}}],["hrandfield_count",{"_index":228,"name":{"302":{},"836":{}},"parent":{}}],["hrandfield_count_withvalues",{"_index":226,"name":{"300":{},"834":{}},"parent":{}}],["hrandfieldcount",{"_index":229,"name":{"303":{},"837":{}},"parent":{}}],["hrandfieldcountwithvalues",{"_index":227,"name":{"301":{},"835":{}},"parent":{}}],["hscan",{"_index":231,"name":{"306":{},"307":{},"840":{},"841":{}},"parent":{}}],["hscaniterator",{"_index":436,"name":{"646":{}},"parent":{}}],["hscantuple",{"_index":668,"name":{"1539":{}},"parent":{}}],["hset",{"_index":232,"name":{"308":{},"309":{},"842":{},"843":{}},"parent":{}}],["hsetnx",{"_index":233,"name":{"310":{},"311":{},"844":{},"845":{}},"parent":{}}],["hstrlen",{"_index":234,"name":{"312":{},"313":{},"846":{},"847":{}},"parent":{}}],["hvals",{"_index":235,"name":{"314":{},"315":{},"848":{},"849":{}},"parent":{}}],["hyperloglog",{"_index":950,"name":{"2283":{}},"parent":{}}],["id",{"_index":480,"name":{"716":{},"1278":{},"1308":{},"1321":{},"2034":{},"2226":{}},"parent":{}}],["idle",{"_index":797,"name":{"1964":{}},"parent":{}}],["ignorepubsubmode",{"_index":11,"name":{"9":{},"592":{}},"parent":{}}],["importing",{"_index":604,"name":{"1339":{}},"parent":{}}],["incr",{"_index":236,"name":{"316":{},"317":{},"850":{},"851":{}},"parent":{}}],["incrby",{"_index":237,"name":{"318":{},"319":{},"852":{},"853":{}},"parent":{}}],["incrbyfloat",{"_index":238,"name":{"320":{},"321":{},"854":{},"855":{}},"parent":{}}],["index",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{},"2377":{},"2378":{},"2379":{},"2380":{},"2381":{},"2382":{},"2383":{},"2384":{},"2385":{},"2386":{},"2387":{},"2388":{},"2389":{},"2390":{}}}],["info",{"_index":127,"name":{"142":{},"143":{}},"parent":{}}],["initiateclient",{"_index":491,"name":{"732":{}},"parent":{}}],["initiateclientfornode",{"_index":492,"name":{"733":{}},"parent":{}}],["initiateoptions",{"_index":419,"name":{"609":{},"689":{}},"parent":{}}],["initiatepubsubstate",{"_index":39,"name":{"37":{}},"parent":{}}],["initiatequeue",{"_index":421,"name":{"611":{}},"parent":{}}],["initiatesocket",{"_index":420,"name":{"610":{}},"parent":{}}],["initiator",{"_index":466,"name":{"693":{}},"parent":{}}],["instantiableredisclient",{"_index":404,"name":{"585":{}},"parent":{}}],["is_read_only",{"_index":553,"name":{"1217":{},"1222":{},"1231":{},"1268":{},"1350":{},"1354":{},"1358":{},"1362":{},"1380":{},"1401":{},"1409":{},"1434":{},"1439":{},"1444":{},"1449":{},"1454":{},"1461":{},"1466":{},"1479":{},"1524":{},"1538":{},"1572":{},"1579":{},"1583":{},"1592":{},"1601":{},"1614":{},"1633":{},"1662":{},"1667":{},"1720":{},"1727":{},"1731":{},"1735":{},"1739":{},"1762":{},"1793":{},"1874":{},"1894":{},"1899":{},"1904":{},"1923":{},"1928":{},"1997":{},"2002":{},"2007":{},"2012":{},"2017":{},"2021":{},"2025":{},"2029":{},"2040":{},"2054":{},"2059":{},"2064":{},"2078":{},"2089":{},"2093":{},"2110":{},"2120":{},"2125":{},"2135":{},"2153":{},"2174":{},"2179":{},"2183":{},"2188":{},"2310":{},"2352":{},"2397":{},"2400":{},"2409":{},"2435":{},"2439":{},"2447":{},"2449":{},"2452":{},"2455":{},"2459":{}},"parent":{}}],["iscommandoptions",{"_index":521,"name":{"1148":{}},"parent":{}}],["iscorked",{"_index":475,"name":{"712":{}},"parent":{}}],["isolated",{"_index":407,"name":{"588":{}},"parent":{}}],["isolationpool",{"_index":415,"name":{"603":{}},"parent":{}}],["isolationpooloptions",{"_index":396,"name":{"577":{}},"parent":{}}],["isopen",{"_index":418,"name":{"607":{},"696":{},"697":{}},"parent":{}}],["isready",{"_index":467,"name":{"698":{},"699":{}},"parent":{}}],["istlssocket",{"_index":465,"name":{"691":{}},"parent":{}}],["keepalive",{"_index":454,"name":{"674":{},"681":{}},"parent":{}}],["key",{"_index":818,"name":{"2033":{},"2373":{}},"parent":{"2374":{}}}],["keys",{"_index":128,"name":{"144":{},"145":{},"1800":{},"2255":{}},"parent":{}}],["keyspace",{"_index":943,"name":{"2274":{}},"parent":{}}],["lastkeyindex",{"_index":965,"name":{"2302":{}},"parent":{}}],["lastsave",{"_index":129,"name":{"146":{},"147":{}},"parent":{}}],["latitude",{"_index":910,"name":{"2236":{},"2253":{}},"parent":{}}],["legacycommandarguments",{"_index":529,"name":{"1157":{}},"parent":{}}],["legacymode",{"_index":395,"name":{"576":{},"612":{},"661":{}},"parent":{}}],["lib/client",{"_index":385,"name":{"566":{}},"parent":{"567":{},"580":{},"582":{},"583":{},"584":{},"585":{},"587":{},"593":{},"594":{}}}],["lib/client.clientcommandoptions",{"_index":408,"name":{},"parent":{"588":{},"589":{},"590":{},"591":{},"592":{}}}],["lib/client.default",{"_index":410,"name":{},"parent":{"595":{},"596":{},"597":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{},"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{}}}],["lib/client.instantiableredisclient",{"_index":405,"name":{},"parent":{"586":{}}}],["lib/client.redisclientcommandsignature",{"_index":400,"name":{},"parent":{"581":{}}}],["lib/client.redisclientoptions",{"_index":388,"name":{},"parent":{"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{}}}],["lib/client/commands",{"_index":4,"name":{"4":{},"47":{}},"parent":{"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"48":{},"49":{}}}],["lib/client/commands.__type",{"_index":48,"name":{},"parent":{"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{},"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{},"133":{},"134":{},"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{},"320":{},"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{},"361":{},"362":{},"363":{},"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{},"396":{},"397":{},"398":{},"399":{},"400":{},"401":{},"402":{},"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"443":{},"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"509":{},"510":{},"511":{},"512":{},"513":{},"514":{},"515":{},"516":{},"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{}}}],["lib/client/multi",{"_index":441,"name":{"651":{}},"parent":{"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{},"667":{},"668":{},"669":{}}}],["lib/client/socket",{"_index":449,"name":{"670":{}},"parent":{"671":{},"676":{},"677":{},"685":{},"686":{},"688":{}}}],["lib/client/socket.default",{"_index":463,"name":{},"parent":{"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{},"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{},"708":{},"709":{},"710":{},"711":{},"712":{},"713":{}}}],["lib/client/socket.redissocketcommonoptions",{"_index":452,"name":{},"parent":{"672":{},"673":{},"674":{},"675":{}}}],["lib/client/socket.redissocketinitiator",{"_index":462,"name":{},"parent":{"687":{}}}],["lib/client/socket.redistlssocketoptions",{"_index":459,"name":{},"parent":{"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{}}}],["lib/cluster",{"_index":503,"name":{"1100":{}},"parent":{"1101":{},"1102":{},"1109":{},"1110":{}}}],["lib/cluster.default",{"_index":513,"name":{},"parent":{"1111":{},"1112":{},"1113":{},"1114":{},"1115":{},"1116":{},"1117":{},"1118":{},"1119":{},"1120":{},"1121":{},"1122":{},"1123":{},"1124":{},"1125":{},"1126":{},"1127":{},"1128":{}}}],["lib/cluster.redisclusteroptions",{"_index":507,"name":{},"parent":{"1103":{},"1104":{},"1105":{},"1106":{},"1107":{},"1108":{}}}],["lib/cluster/cluster",{"_index":477,"name":{"714":{}},"parent":{"715":{},"716":{},"717":{},"718":{},"719":{},"720":{},"721":{},"722":{},"723":{},"724":{},"725":{},"726":{},"727":{},"728":{},"729":{},"730":{},"731":{},"732":{},"733":{},"734":{},"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{}}}],["lib/cluster/commands",{"_index":501,"name":{"743":{}},"parent":{"744":{},"745":{}}}],["lib/cluster/commands.__type",{"_index":502,"name":{},"parent":{"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"762":{},"763":{},"764":{},"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"785":{},"786":{},"787":{},"788":{},"789":{},"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{},"810":{},"811":{},"812":{},"813":{},"814":{},"815":{},"816":{},"817":{},"818":{},"819":{},"820":{},"821":{},"822":{},"823":{},"824":{},"825":{},"826":{},"827":{},"828":{},"829":{},"830":{},"831":{},"832":{},"833":{},"834":{},"835":{},"836":{},"837":{},"838":{},"839":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{},"848":{},"849":{},"850":{},"851":{},"852":{},"853":{},"854":{},"855":{},"856":{},"857":{},"858":{},"859":{},"860":{},"861":{},"862":{},"863":{},"864":{},"865":{},"866":{},"867":{},"868":{},"869":{},"870":{},"871":{},"872":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{},"881":{},"882":{},"883":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{},"900":{},"901":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{},"909":{},"910":{},"911":{},"912":{},"913":{},"914":{},"915":{},"916":{},"917":{},"918":{},"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{},"926":{},"927":{},"928":{},"929":{},"930":{},"931":{},"932":{},"933":{},"934":{},"935":{},"936":{},"937":{},"938":{},"939":{},"940":{},"941":{},"942":{},"943":{},"944":{},"945":{},"946":{},"947":{},"948":{},"949":{},"950":{},"951":{},"952":{},"953":{},"954":{},"955":{},"956":{},"957":{},"958":{},"959":{},"960":{},"961":{},"962":{},"963":{},"964":{},"965":{},"966":{},"967":{},"968":{},"969":{},"970":{},"971":{},"972":{},"973":{},"974":{},"975":{},"976":{},"977":{},"978":{},"979":{},"980":{},"981":{},"982":{},"983":{},"984":{},"985":{},"986":{},"987":{},"988":{},"989":{},"990":{},"991":{},"992":{},"993":{},"994":{},"995":{},"996":{},"997":{},"998":{},"999":{},"1000":{},"1001":{},"1002":{},"1003":{},"1004":{},"1005":{},"1006":{},"1007":{},"1008":{},"1009":{},"1010":{},"1011":{},"1012":{},"1013":{},"1014":{},"1015":{},"1016":{},"1017":{},"1018":{},"1019":{},"1020":{},"1021":{},"1022":{},"1023":{},"1024":{},"1025":{},"1026":{},"1027":{},"1028":{},"1029":{},"1030":{},"1031":{},"1032":{},"1033":{},"1034":{},"1035":{},"1036":{},"1037":{},"1038":{},"1039":{},"1040":{},"1041":{},"1042":{},"1043":{},"1044":{},"1045":{},"1046":{},"1047":{},"1048":{},"1049":{},"1050":{},"1051":{},"1052":{},"1053":{},"1054":{},"1055":{},"1056":{},"1057":{},"1058":{},"1059":{},"1060":{},"1061":{},"1062":{},"1063":{},"1064":{},"1065":{},"1066":{},"1067":{},"1068":{},"1069":{},"1070":{},"1071":{},"1072":{},"1073":{},"1074":{},"1075":{},"1076":{},"1077":{},"1078":{},"1079":{},"1080":{},"1081":{},"1082":{},"1083":{},"1084":{},"1085":{},"1086":{},"1087":{},"1088":{},"1089":{},"1090":{},"1091":{},"1092":{},"1093":{},"1094":{},"1095":{},"1096":{},"1097":{},"1098":{},"1099":{}}}],["lib/cluster/multi",{"_index":515,"name":{"1129":{}},"parent":{"1130":{},"1131":{},"1132":{},"1133":{},"1134":{},"1135":{},"1136":{},"1137":{},"1138":{},"1139":{},"1140":{},"1141":{},"1142":{},"1143":{},"1144":{},"1145":{}}}],["lib/command",{"_index":520,"name":{"1146":{}},"parent":{"1147":{},"1148":{},"1149":{}}}],["lib/commander",{"_index":522,"name":{"1150":{}},"parent":{"1151":{},"1152":{},"1153":{},"1154":{},"1155":{},"1156":{},"1157":{}}}],["lib/commands",{"_index":968,"name":{"2305":{}},"parent":{"2306":{},"2307":{},"2308":{},"2314":{},"2315":{},"2316":{},"2317":{},"2318":{},"2319":{},"2320":{}}}],["lib/commands.rediscommand",{"_index":972,"name":{},"parent":{"2309":{},"2310":{},"2311":{},"2312":{},"2313":{}}}],["lib/commands.redisplugins",{"_index":980,"name":{},"parent":{"2321":{},"2322":{}}}],["lib/commands/acl_cat",{"_index":530,"name":{"1158":{}},"parent":{"1159":{},"1160":{}}}],["lib/commands/acl_deluser",{"_index":533,"name":{"1161":{}},"parent":{"1162":{},"1163":{}}}],["lib/commands/acl_genpass",{"_index":534,"name":{"1164":{}},"parent":{"1165":{},"1166":{}}}],["lib/commands/acl_getuser",{"_index":535,"name":{"1167":{}},"parent":{"1168":{},"1169":{}}}],["lib/commands/acl_list",{"_index":536,"name":{"1170":{}},"parent":{"1171":{},"1172":{}}}],["lib/commands/acl_load",{"_index":537,"name":{"1173":{}},"parent":{"1174":{},"1175":{}}}],["lib/commands/acl_log",{"_index":538,"name":{"1176":{}},"parent":{"1177":{},"1178":{}}}],["lib/commands/acl_log_reset",{"_index":539,"name":{"1179":{}},"parent":{"1180":{},"1181":{}}}],["lib/commands/acl_save",{"_index":540,"name":{"1182":{}},"parent":{"1183":{},"1184":{}}}],["lib/commands/acl_setuser",{"_index":541,"name":{"1185":{}},"parent":{"1186":{},"1187":{}}}],["lib/commands/acl_users",{"_index":542,"name":{"1188":{}},"parent":{"1189":{},"1190":{}}}],["lib/commands/acl_whoami",{"_index":543,"name":{"1191":{}},"parent":{"1192":{},"1193":{}}}],["lib/commands/append",{"_index":544,"name":{"1194":{}},"parent":{"1195":{},"1196":{},"1197":{}}}],["lib/commands/asking",{"_index":546,"name":{"1198":{}},"parent":{"1199":{},"1200":{}}}],["lib/commands/auth",{"_index":547,"name":{"1201":{}},"parent":{"1202":{},"1203":{},"1204":{}}}],["lib/commands/auth.authoptions",{"_index":549,"name":{},"parent":{"1205":{},"1206":{}}}],["lib/commands/bgrewriteaof",{"_index":550,"name":{"1207":{}},"parent":{"1208":{},"1209":{}}}],["lib/commands/bgsave",{"_index":551,"name":{"1210":{}},"parent":{"1211":{},"1212":{}}}],["lib/commands/bitcount",{"_index":552,"name":{"1213":{}},"parent":{"1214":{},"1215":{},"1216":{},"1217":{}}}],["lib/commands/bitfield",{"_index":554,"name":{"1218":{}},"parent":{"1219":{},"1220":{},"1221":{},"1222":{}}}],["lib/commands/bitop",{"_index":555,"name":{"1223":{}},"parent":{"1224":{},"1225":{},"1226":{}}}],["lib/commands/bitpos",{"_index":556,"name":{"1227":{}},"parent":{"1228":{},"1229":{},"1230":{},"1231":{}}}],["lib/commands/blmove",{"_index":557,"name":{"1232":{}},"parent":{"1233":{},"1234":{},"1235":{}}}],["lib/commands/blpop",{"_index":558,"name":{"1236":{}},"parent":{"1237":{},"1238":{},"1239":{}}}],["lib/commands/brpop",{"_index":559,"name":{"1240":{}},"parent":{"1241":{},"1242":{},"1243":{}}}],["lib/commands/brpoplpush",{"_index":560,"name":{"1244":{}},"parent":{"1245":{},"1246":{},"1247":{}}}],["lib/commands/bzpopmax",{"_index":561,"name":{"1248":{}},"parent":{"1249":{},"1250":{},"1251":{}}}],["lib/commands/bzpopmin",{"_index":562,"name":{"1252":{}},"parent":{"1253":{},"1254":{},"1255":{}}}],["lib/commands/client_caching",{"_index":563,"name":{"1256":{}},"parent":{"1257":{},"1258":{}}}],["lib/commands/client_getname",{"_index":564,"name":{"1259":{}},"parent":{"1260":{},"1261":{}}}],["lib/commands/client_getredir",{"_index":565,"name":{"1262":{}},"parent":{"1263":{},"1264":{}}}],["lib/commands/client_id",{"_index":566,"name":{"1265":{}},"parent":{"1266":{},"1267":{},"1268":{}}}],["lib/commands/client_info",{"_index":567,"name":{"1269":{}},"parent":{"1270":{},"1271":{}}}],["lib/commands/client_kill",{"_index":568,"name":{"1272":{}},"parent":{"1273":{},"1274":{},"1275":{}}}],["lib/commands/client_kill.clientkillfilters",{"_index":571,"name":{},"parent":{"1276":{},"1277":{},"1278":{},"1279":{},"1280":{},"1281":{}}}],["lib/commands/client_setname",{"_index":575,"name":{"1282":{}},"parent":{"1283":{},"1284":{}}}],["lib/commands/cluster_addslots",{"_index":576,"name":{"1285":{}},"parent":{"1286":{},"1287":{}}}],["lib/commands/cluster_flushslots",{"_index":577,"name":{"1288":{}},"parent":{"1289":{},"1290":{}}}],["lib/commands/cluster_getkeysinslot",{"_index":578,"name":{"1291":{}},"parent":{"1292":{},"1293":{}}}],["lib/commands/cluster_info",{"_index":579,"name":{"1294":{}},"parent":{"1295":{},"1296":{},"1297":{}}}],["lib/commands/cluster_meet",{"_index":581,"name":{"1298":{}},"parent":{"1299":{},"1300":{}}}],["lib/commands/cluster_nodes",{"_index":582,"name":{"1301":{}},"parent":{"1302":{},"1303":{},"1304":{},"1307":{},"1318":{}}}],["lib/commands/cluster_nodes.redisclustermasternode",{"_index":598,"name":{},"parent":{"1319":{},"1320":{},"1321":{},"1322":{},"1323":{},"1324":{},"1325":{},"1326":{},"1327":{},"1328":{},"1329":{},"1330":{}}}],["lib/commands/cluster_nodes.redisclusternodelinkstates",{"_index":585,"name":{},"parent":{"1305":{},"1306":{}}}],["lib/commands/cluster_nodes.redisclusterreplicanode",{"_index":588,"name":{},"parent":{"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{},"1316":{},"1317":{}}}],["lib/commands/cluster_reset",{"_index":600,"name":{"1331":{}},"parent":{"1332":{},"1333":{},"1334":{}}}],["lib/commands/cluster_setslot",{"_index":602,"name":{"1335":{}},"parent":{"1336":{},"1337":{},"1338":{}}}],["lib/commands/cluster_setslot.clusterslotstates",{"_index":605,"name":{},"parent":{"1339":{},"1340":{},"1341":{},"1342":{}}}],["lib/commands/cluster_slots",{"_index":609,"name":{"1343":{}},"parent":{"1344":{},"1345":{},"1346":{}}}],["lib/commands/command",{"_index":611,"name":{"1347":{}},"parent":{"1348":{},"1349":{},"1350":{}}}],["lib/commands/command_count",{"_index":612,"name":{"1351":{}},"parent":{"1352":{},"1353":{},"1354":{}}}],["lib/commands/command_getkeys",{"_index":613,"name":{"1355":{}},"parent":{"1356":{},"1357":{},"1358":{}}}],["lib/commands/command_info",{"_index":614,"name":{"1359":{}},"parent":{"1360":{},"1361":{},"1362":{}}}],["lib/commands/config_get",{"_index":615,"name":{"1363":{}},"parent":{"1364":{},"2391":{}}}],["lib/commands/config_resetstat",{"_index":616,"name":{"1365":{}},"parent":{"1366":{},"1367":{}}}],["lib/commands/config_rewrite",{"_index":617,"name":{"1368":{}},"parent":{"1369":{},"1370":{}}}],["lib/commands/config_set",{"_index":618,"name":{"1371":{}},"parent":{"1372":{},"1373":{}}}],["lib/commands/copy",{"_index":619,"name":{"1374":{}},"parent":{"1375":{},"1376":{},"2392":{}}}],["lib/commands/dbsize",{"_index":620,"name":{"1377":{}},"parent":{"1378":{},"1379":{},"1380":{}}}],["lib/commands/decr",{"_index":621,"name":{"1381":{}},"parent":{"1382":{},"1383":{},"1384":{}}}],["lib/commands/decrby",{"_index":622,"name":{"1385":{}},"parent":{"1386":{},"1387":{},"1388":{}}}],["lib/commands/del",{"_index":623,"name":{"1389":{}},"parent":{"1390":{},"1391":{}}}],["lib/commands/discard",{"_index":624,"name":{"1392":{}},"parent":{"1393":{},"1394":{}}}],["lib/commands/dump",{"_index":625,"name":{"1395":{}},"parent":{"1396":{},"1397":{}}}],["lib/commands/echo",{"_index":626,"name":{"1398":{}},"parent":{"1399":{},"1400":{},"1401":{}}}],["lib/commands/eval",{"_index":627,"name":{"1402":{}},"parent":{"1403":{}}}],["lib/commands/evalsha",{"_index":628,"name":{"1404":{}},"parent":{"1405":{}}}],["lib/commands/exists",{"_index":629,"name":{"1406":{}},"parent":{"1407":{},"1408":{},"1409":{},"2393":{}}}],["lib/commands/expire",{"_index":630,"name":{"1410":{}},"parent":{"1411":{},"2394":{}}}],["lib/commands/expireat",{"_index":631,"name":{"1412":{}},"parent":{"1413":{},"2395":{}}}],["lib/commands/failover",{"_index":632,"name":{"1414":{}},"parent":{"1415":{},"1416":{}}}],["lib/commands/flushall",{"_index":633,"name":{"1417":{}},"parent":{"1418":{},"1419":{},"1420":{}}}],["lib/commands/flushall.redisflushmodes",{"_index":636,"name":{},"parent":{"1421":{},"1422":{}}}],["lib/commands/flushdb",{"_index":638,"name":{"1423":{}},"parent":{"1424":{},"1425":{}}}],["lib/commands/generic",{"_index":870,"name":{"2195":{}},"parent":{"2196":{},"2197":{},"2198":{},"2199":{},"2200":{},"2201":{},"2202":{},"2203":{},"2204":{},"2205":{},"2206":{},"2207":{},"2208":{},"2209":{},"2210":{},"2211":{},"2212":{},"2213":{},"2214":{},"2215":{},"2216":{},"2217":{},"2218":{},"2219":{},"2220":{},"2221":{},"2222":{},"2223":{},"2224":{},"2225":{},"2226":{},"2227":{},"2228":{},"2229":{},"2230":{},"2231":{},"2232":{},"2233":{},"2234":{},"2235":{},"2236":{},"2237":{},"2238":{},"2239":{},"2240":{},"2241":{},"2242":{},"2243":{},"2244":{},"2245":{},"2246":{},"2247":{},"2248":{},"2249":{},"2250":{},"2251":{},"2252":{},"2253":{},"2254":{},"2255":{},"2256":{},"2257":{},"2258":{},"2259":{},"2260":{},"2261":{},"2262":{},"2263":{},"2264":{},"2265":{},"2266":{},"2267":{},"2268":{},"2269":{},"2270":{},"2271":{},"2272":{},"2273":{},"2274":{},"2275":{},"2276":{},"2277":{},"2278":{},"2279":{},"2280":{},"2281":{},"2282":{},"2283":{},"2284":{},"2285":{},"2286":{},"2287":{},"2288":{},"2289":{},"2290":{},"2291":{},"2292":{},"2293":{},"2294":{},"2295":{},"2296":{},"2297":{},"2298":{},"2299":{},"2300":{},"2301":{},"2302":{},"2303":{},"2304":{}}}],["lib/commands/geoadd",{"_index":639,"name":{"1426":{}},"parent":{"1427":{},"1428":{},"1429":{}}}],["lib/commands/geodist",{"_index":640,"name":{"1430":{}},"parent":{"1431":{},"1432":{},"1433":{},"1434":{}}}],["lib/commands/geohash",{"_index":641,"name":{"1435":{}},"parent":{"1436":{},"1437":{},"1438":{},"1439":{}}}],["lib/commands/geopos",{"_index":642,"name":{"1440":{}},"parent":{"1441":{},"1442":{},"1443":{},"1444":{}}}],["lib/commands/geosearch",{"_index":643,"name":{"1445":{}},"parent":{"1446":{},"1447":{},"1448":{},"1449":{}}}],["lib/commands/geosearch_with",{"_index":645,"name":{"1455":{}},"parent":{"1456":{},"2396":{},"2397":{},"2398":{}}}],["lib/commands/geosearchstore",{"_index":644,"name":{"1450":{}},"parent":{"1451":{},"1452":{},"1453":{},"1454":{}}}],["lib/commands/get",{"_index":646,"name":{"1457":{}},"parent":{"1458":{},"1459":{},"1460":{},"1461":{}}}],["lib/commands/get_buffer",{"_index":652,"name":{"1484":{}},"parent":{"1485":{},"1486":{},"2399":{},"2400":{},"2401":{}}}],["lib/commands/getbit",{"_index":647,"name":{"1462":{}},"parent":{"1463":{},"1464":{},"1465":{},"1466":{}}}],["lib/commands/getdel",{"_index":648,"name":{"1467":{}},"parent":{"1468":{},"1469":{},"1470":{}}}],["lib/commands/getex",{"_index":649,"name":{"1471":{}},"parent":{"1472":{},"1473":{},"1474":{}}}],["lib/commands/getrange",{"_index":650,"name":{"1475":{}},"parent":{"1476":{},"1477":{},"1478":{},"1479":{}}}],["lib/commands/getset",{"_index":651,"name":{"1480":{}},"parent":{"1481":{},"1482":{},"1483":{}}}],["lib/commands/hdel",{"_index":654,"name":{"1487":{}},"parent":{"1488":{},"1489":{},"1490":{}}}],["lib/commands/hello",{"_index":655,"name":{"1491":{}},"parent":{"1492":{},"1493":{}}}],["lib/commands/hexists",{"_index":656,"name":{"1494":{}},"parent":{"1495":{},"1496":{},"2402":{}}}],["lib/commands/hget",{"_index":657,"name":{"1497":{}},"parent":{"1498":{},"1499":{},"1500":{}}}],["lib/commands/hgetall",{"_index":658,"name":{"1501":{}},"parent":{"1502":{},"1503":{},"2403":{}}}],["lib/commands/hincrby",{"_index":659,"name":{"1504":{}},"parent":{"1505":{},"1506":{},"1507":{}}}],["lib/commands/hincrbyfloat",{"_index":660,"name":{"1508":{}},"parent":{"1509":{},"1510":{},"1511":{}}}],["lib/commands/hkeys",{"_index":661,"name":{"1512":{}},"parent":{"1513":{},"1514":{},"1515":{}}}],["lib/commands/hlen",{"_index":662,"name":{"1516":{}},"parent":{"1517":{},"1518":{},"1519":{}}}],["lib/commands/hmget",{"_index":663,"name":{"1520":{}},"parent":{"1521":{},"1522":{},"1523":{},"1524":{}}}],["lib/commands/hrandfield",{"_index":664,"name":{"1525":{}},"parent":{"1526":{},"1527":{},"1528":{}}}],["lib/commands/hrandfield_count",{"_index":665,"name":{"1529":{}},"parent":{"1530":{},"1531":{},"2404":{}}}],["lib/commands/hrandfield_count_withvalues",{"_index":666,"name":{"1532":{}},"parent":{"1533":{},"2405":{},"2406":{}}}],["lib/commands/hscan",{"_index":667,"name":{"1534":{}},"parent":{"1535":{},"1536":{},"1537":{},"1538":{},"1539":{}}}],["lib/commands/hscan.hscantuple",{"_index":670,"name":{},"parent":{"1540":{},"1541":{}}}],["lib/commands/hset",{"_index":672,"name":{"1542":{}},"parent":{"1543":{},"1544":{},"1545":{}}}],["lib/commands/hsetnx",{"_index":673,"name":{"1546":{}},"parent":{"1547":{},"1548":{},"2407":{}}}],["lib/commands/hstrlen",{"_index":674,"name":{"1549":{}},"parent":{"1550":{},"1551":{},"1552":{}}}],["lib/commands/hvals",{"_index":675,"name":{"1553":{}},"parent":{"1554":{},"1555":{},"1556":{}}}],["lib/commands/incr",{"_index":676,"name":{"1557":{}},"parent":{"1558":{},"1559":{},"1560":{}}}],["lib/commands/incrby",{"_index":677,"name":{"1561":{}},"parent":{"1562":{},"1563":{},"1564":{}}}],["lib/commands/incrbyfloat",{"_index":678,"name":{"1565":{}},"parent":{"1566":{},"1567":{},"1568":{}}}],["lib/commands/info",{"_index":679,"name":{"1569":{}},"parent":{"1570":{},"1571":{},"1572":{}}}],["lib/commands/keys",{"_index":680,"name":{"1573":{}},"parent":{"1574":{},"1575":{}}}],["lib/commands/lastsave",{"_index":681,"name":{"1576":{}},"parent":{"1577":{},"1578":{},"1579":{}}}],["lib/commands/lindex",{"_index":682,"name":{"1580":{}},"parent":{"1581":{},"1582":{},"1583":{}}}],["lib/commands/linsert",{"_index":683,"name":{"1584":{}},"parent":{"1585":{},"1586":{},"1587":{}}}],["lib/commands/llen",{"_index":684,"name":{"1588":{}},"parent":{"1589":{},"1590":{},"1591":{},"1592":{}}}],["lib/commands/lmove",{"_index":685,"name":{"1593":{}},"parent":{"1594":{},"1595":{},"1596":{},"1597":{}}}],["lib/commands/lolwut",{"_index":687,"name":{"1598":{}},"parent":{"1599":{},"1600":{},"1601":{}}}],["lib/commands/lpop",{"_index":688,"name":{"1602":{}},"parent":{"1603":{},"1604":{},"1605":{}}}],["lib/commands/lpop_count",{"_index":689,"name":{"1606":{}},"parent":{"1607":{},"1608":{},"1609":{}}}],["lib/commands/lpos",{"_index":690,"name":{"1610":{}},"parent":{"1611":{},"1612":{},"1613":{},"1614":{},"1615":{}}}],["lib/commands/lpos.lposoptions",{"_index":693,"name":{},"parent":{"1616":{},"1617":{}}}],["lib/commands/lpos_count",{"_index":695,"name":{"1618":{}},"parent":{"1619":{},"1620":{},"2408":{},"2409":{}}}],["lib/commands/lpush",{"_index":696,"name":{"1621":{}},"parent":{"1622":{},"1623":{},"1624":{}}}],["lib/commands/lpushx",{"_index":697,"name":{"1625":{}},"parent":{"1626":{},"1627":{},"1628":{}}}],["lib/commands/lrange",{"_index":698,"name":{"1629":{}},"parent":{"1630":{},"1631":{},"1632":{},"1633":{}}}],["lib/commands/lrem",{"_index":699,"name":{"1634":{}},"parent":{"1635":{},"1636":{},"1637":{}}}],["lib/commands/lset",{"_index":700,"name":{"1638":{}},"parent":{"1639":{},"1640":{},"1641":{}}}],["lib/commands/ltrim",{"_index":701,"name":{"1642":{}},"parent":{"1643":{},"1644":{},"1645":{}}}],["lib/commands/memory_doctor",{"_index":702,"name":{"1646":{}},"parent":{"1647":{},"1648":{}}}],["lib/commands/memory_malloc",{"_index":703,"name":{"1649":{}},"parent":{"1650":{},"1651":{}}}],["lib/commands/memory_purge",{"_index":704,"name":{"1652":{}},"parent":{"1653":{},"1654":{}}}],["lib/commands/memory_stats",{"_index":705,"name":{"1655":{}},"parent":{"1656":{},"1657":{}}}],["lib/commands/memory_usage",{"_index":706,"name":{"1658":{}},"parent":{"1659":{},"1660":{},"1661":{},"1662":{}}}],["lib/commands/mget",{"_index":707,"name":{"1663":{}},"parent":{"1664":{},"1665":{},"1666":{},"1667":{}}}],["lib/commands/migrate",{"_index":708,"name":{"1668":{}},"parent":{"1669":{},"1670":{}}}],["lib/commands/module_list",{"_index":709,"name":{"1671":{}},"parent":{"1672":{},"1673":{}}}],["lib/commands/module_load",{"_index":710,"name":{"1674":{}},"parent":{"1675":{},"1676":{}}}],["lib/commands/module_unload",{"_index":711,"name":{"1677":{}},"parent":{"1678":{},"1679":{}}}],["lib/commands/move",{"_index":712,"name":{"1680":{}},"parent":{"1681":{},"2410":{}}}],["lib/commands/mset",{"_index":713,"name":{"1682":{}},"parent":{"1683":{},"1684":{},"1685":{}}}],["lib/commands/msetnx",{"_index":714,"name":{"1686":{}},"parent":{"1687":{},"1688":{},"2411":{}}}],["lib/commands/persist",{"_index":715,"name":{"1689":{}},"parent":{"1690":{},"1691":{},"2412":{}}}],["lib/commands/pexpire",{"_index":716,"name":{"1692":{}},"parent":{"1693":{},"1694":{},"2413":{}}}],["lib/commands/pexpireat",{"_index":717,"name":{"1695":{}},"parent":{"1696":{},"1697":{},"2414":{}}}],["lib/commands/pfadd",{"_index":718,"name":{"1698":{}},"parent":{"1699":{},"1700":{},"2415":{}}}],["lib/commands/pfcount",{"_index":719,"name":{"1701":{}},"parent":{"1702":{},"1703":{},"1704":{}}}],["lib/commands/pfmerge",{"_index":720,"name":{"1705":{}},"parent":{"1706":{},"1707":{},"1708":{}}}],["lib/commands/ping",{"_index":721,"name":{"1709":{}},"parent":{"1710":{},"1711":{}}}],["lib/commands/psetex",{"_index":722,"name":{"1712":{}},"parent":{"1713":{},"1714":{},"1715":{}}}],["lib/commands/pttl",{"_index":723,"name":{"1716":{}},"parent":{"1717":{},"1718":{},"1719":{},"1720":{}}}],["lib/commands/publish",{"_index":724,"name":{"1721":{}},"parent":{"1722":{},"1723":{}}}],["lib/commands/pubsub_channels",{"_index":725,"name":{"1724":{}},"parent":{"1725":{},"1726":{},"1727":{}}}],["lib/commands/pubsub_numpat",{"_index":726,"name":{"1728":{}},"parent":{"1729":{},"1730":{},"1731":{}}}],["lib/commands/pubsub_numsub",{"_index":727,"name":{"1732":{}},"parent":{"1733":{},"1734":{},"1735":{}}}],["lib/commands/randomkey",{"_index":728,"name":{"1736":{}},"parent":{"1737":{},"1738":{},"1739":{}}}],["lib/commands/readonly",{"_index":729,"name":{"1740":{}},"parent":{"1741":{},"1742":{}}}],["lib/commands/readwrite",{"_index":730,"name":{"1743":{}},"parent":{"1744":{},"1745":{}}}],["lib/commands/rename",{"_index":731,"name":{"1746":{}},"parent":{"1747":{},"1748":{},"1749":{}}}],["lib/commands/renamenx",{"_index":732,"name":{"1750":{}},"parent":{"1751":{},"1752":{},"2416":{}}}],["lib/commands/replicaof",{"_index":733,"name":{"1753":{}},"parent":{"1754":{},"1755":{}}}],["lib/commands/restore",{"_index":734,"name":{"1756":{}},"parent":{"1757":{},"1758":{}}}],["lib/commands/role",{"_index":735,"name":{"1759":{}},"parent":{"1760":{},"1761":{},"1762":{}}}],["lib/commands/rpop",{"_index":736,"name":{"1763":{}},"parent":{"1764":{},"1765":{},"1766":{}}}],["lib/commands/rpop_count",{"_index":738,"name":{"1771":{}},"parent":{"1772":{},"1773":{},"1774":{}}}],["lib/commands/rpoplpush",{"_index":737,"name":{"1767":{}},"parent":{"1768":{},"1769":{},"1770":{}}}],["lib/commands/rpush",{"_index":739,"name":{"1775":{}},"parent":{"1776":{},"1777":{},"1778":{}}}],["lib/commands/rpushx",{"_index":740,"name":{"1779":{}},"parent":{"1780":{},"1781":{},"1782":{}}}],["lib/commands/sadd",{"_index":741,"name":{"1783":{}},"parent":{"1784":{},"1785":{},"1786":{}}}],["lib/commands/save",{"_index":742,"name":{"1787":{}},"parent":{"1788":{},"1789":{}}}],["lib/commands/scan",{"_index":743,"name":{"1790":{}},"parent":{"1791":{},"1792":{},"1793":{},"1794":{},"1798":{}}}],["lib/commands/scan.scancommandoptions",{"_index":745,"name":{},"parent":{"1795":{},"1796":{},"1797":{}}}],["lib/commands/scan.scanreply",{"_index":750,"name":{},"parent":{"1799":{},"1800":{}}}],["lib/commands/scard",{"_index":751,"name":{"1801":{}},"parent":{"1802":{},"1803":{},"1804":{}}}],["lib/commands/script_debug",{"_index":752,"name":{"1805":{}},"parent":{"1806":{},"1807":{}}}],["lib/commands/script_exists",{"_index":753,"name":{"1808":{}},"parent":{"1809":{},"2417":{}}}],["lib/commands/script_flush",{"_index":754,"name":{"1810":{}},"parent":{"1811":{},"1812":{}}}],["lib/commands/script_kill",{"_index":755,"name":{"1813":{}},"parent":{"1814":{},"1815":{}}}],["lib/commands/script_load",{"_index":756,"name":{"1816":{}},"parent":{"1817":{},"1818":{}}}],["lib/commands/sdiff",{"_index":757,"name":{"1819":{}},"parent":{"1820":{},"1821":{},"1822":{}}}],["lib/commands/sdiffstore",{"_index":758,"name":{"1823":{}},"parent":{"1824":{},"1825":{},"1826":{}}}],["lib/commands/set",{"_index":759,"name":{"1827":{}},"parent":{"1828":{},"1829":{},"1830":{}}}],["lib/commands/setbit",{"_index":760,"name":{"1831":{}},"parent":{"1832":{},"1833":{},"1834":{}}}],["lib/commands/setex",{"_index":761,"name":{"1835":{}},"parent":{"1836":{},"1837":{},"1838":{}}}],["lib/commands/setnx",{"_index":762,"name":{"1839":{}},"parent":{"1840":{},"1841":{},"2418":{}}}],["lib/commands/setrange",{"_index":763,"name":{"1842":{}},"parent":{"1843":{},"1844":{},"1845":{}}}],["lib/commands/shutdown",{"_index":764,"name":{"1846":{}},"parent":{"1847":{},"1848":{}}}],["lib/commands/sinter",{"_index":765,"name":{"1849":{}},"parent":{"1850":{},"1851":{},"1852":{}}}],["lib/commands/sinterstore",{"_index":766,"name":{"1853":{}},"parent":{"1854":{},"1855":{},"1856":{}}}],["lib/commands/sismember",{"_index":767,"name":{"1857":{}},"parent":{"1858":{},"1859":{},"2419":{}}}],["lib/commands/smembers",{"_index":768,"name":{"1860":{}},"parent":{"1861":{},"1862":{},"1863":{}}}],["lib/commands/smismember",{"_index":769,"name":{"1864":{}},"parent":{"1865":{},"1866":{},"2420":{}}}],["lib/commands/smove",{"_index":770,"name":{"1867":{}},"parent":{"1868":{},"1869":{},"2421":{}}}],["lib/commands/sort",{"_index":771,"name":{"1870":{}},"parent":{"1871":{},"1872":{},"1873":{},"1874":{}}}],["lib/commands/spop",{"_index":772,"name":{"1875":{}},"parent":{"1876":{},"1877":{},"1878":{}}}],["lib/commands/srandmember",{"_index":773,"name":{"1879":{}},"parent":{"1880":{},"1881":{},"1882":{}}}],["lib/commands/srandmember_count",{"_index":774,"name":{"1883":{}},"parent":{"1884":{},"1885":{},"2422":{}}}],["lib/commands/srem",{"_index":775,"name":{"1886":{}},"parent":{"1887":{},"1888":{},"1889":{}}}],["lib/commands/sscan",{"_index":776,"name":{"1890":{}},"parent":{"1891":{},"1892":{},"1893":{},"1894":{}}}],["lib/commands/strlen",{"_index":777,"name":{"1895":{}},"parent":{"1896":{},"1897":{},"1898":{},"1899":{}}}],["lib/commands/sunion",{"_index":778,"name":{"1900":{}},"parent":{"1901":{},"1902":{},"1903":{},"1904":{}}}],["lib/commands/sunionstore",{"_index":779,"name":{"1905":{}},"parent":{"1906":{},"1907":{},"1908":{}}}],["lib/commands/swapdb",{"_index":780,"name":{"1909":{}},"parent":{"1910":{},"1911":{}}}],["lib/commands/time",{"_index":781,"name":{"1912":{}},"parent":{"1913":{},"1914":{}}}],["lib/commands/touch",{"_index":782,"name":{"1915":{}},"parent":{"1916":{},"1917":{},"1918":{}}}],["lib/commands/ttl",{"_index":783,"name":{"1919":{}},"parent":{"1920":{},"1921":{},"1922":{},"1923":{}}}],["lib/commands/type",{"_index":784,"name":{"1924":{}},"parent":{"1925":{},"1926":{},"1927":{},"1928":{}}}],["lib/commands/unlink",{"_index":785,"name":{"1929":{}},"parent":{"1930":{},"1931":{},"1932":{}}}],["lib/commands/unwatch",{"_index":786,"name":{"1933":{}},"parent":{"1934":{},"1935":{}}}],["lib/commands/wait",{"_index":787,"name":{"1936":{}},"parent":{"1937":{},"1938":{},"1939":{}}}],["lib/commands/watch",{"_index":788,"name":{"1940":{}},"parent":{"1941":{},"1942":{}}}],["lib/commands/xack",{"_index":789,"name":{"1943":{}},"parent":{"1944":{},"1945":{},"1946":{}}}],["lib/commands/xadd",{"_index":790,"name":{"1947":{}},"parent":{"1948":{},"1949":{},"1950":{}}}],["lib/commands/xautoclaim",{"_index":791,"name":{"1951":{}},"parent":{"1952":{},"1953":{},"1954":{},"1955":{}}}],["lib/commands/xautoclaim.xautoclaimoptions",{"_index":793,"name":{},"parent":{"1956":{}}}],["lib/commands/xautoclaim_justid",{"_index":794,"name":{"1957":{}},"parent":{"1958":{},"1959":{},"2423":{}}}],["lib/commands/xclaim",{"_index":795,"name":{"1960":{}},"parent":{"1961":{},"1962":{},"1963":{},"2424":{}}}],["lib/commands/xclaim.xclaimoptions",{"_index":798,"name":{},"parent":{"1964":{},"1965":{},"1966":{},"1967":{}}}],["lib/commands/xclaim_justid",{"_index":801,"name":{"1968":{}},"parent":{"1969":{},"1970":{},"2425":{}}}],["lib/commands/xdel",{"_index":802,"name":{"1971":{}},"parent":{"1972":{},"1973":{},"1974":{}}}],["lib/commands/xgroup_create",{"_index":803,"name":{"1975":{}},"parent":{"1976":{},"1977":{},"1978":{}}}],["lib/commands/xgroup_createconsumer",{"_index":804,"name":{"1979":{}},"parent":{"1980":{},"1981":{},"2426":{}}}],["lib/commands/xgroup_delconsumer",{"_index":805,"name":{"1982":{}},"parent":{"1983":{},"1984":{},"1985":{}}}],["lib/commands/xgroup_destroy",{"_index":806,"name":{"1986":{}},"parent":{"1987":{},"1988":{},"2427":{}}}],["lib/commands/xgroup_setid",{"_index":807,"name":{"1989":{}},"parent":{"1990":{},"1991":{},"1992":{}}}],["lib/commands/xinfo_consumers",{"_index":808,"name":{"1993":{}},"parent":{"1994":{},"1995":{},"1996":{},"1997":{}}}],["lib/commands/xinfo_groups",{"_index":809,"name":{"1998":{}},"parent":{"1999":{},"2000":{},"2001":{},"2002":{}}}],["lib/commands/xinfo_stream",{"_index":810,"name":{"2003":{}},"parent":{"2004":{},"2005":{},"2006":{},"2007":{}}}],["lib/commands/xlen",{"_index":811,"name":{"2008":{}},"parent":{"2009":{},"2010":{},"2011":{},"2012":{}}}],["lib/commands/xpending",{"_index":812,"name":{"2013":{}},"parent":{"2014":{},"2015":{},"2016":{},"2017":{}}}],["lib/commands/xpending_range",{"_index":813,"name":{"2018":{}},"parent":{"2019":{},"2020":{},"2021":{},"2428":{}}}],["lib/commands/xrange",{"_index":814,"name":{"2022":{}},"parent":{"2023":{},"2024":{},"2025":{},"2429":{}}}],["lib/commands/xread",{"_index":815,"name":{"2026":{}},"parent":{"2027":{},"2028":{},"2029":{},"2430":{}}}],["lib/commands/xreadgroup",{"_index":816,"name":{"2030":{}},"parent":{"2031":{},"2032":{},"2035":{},"2039":{},"2040":{},"2431":{}}}],["lib/commands/xreadgroup.xreadgroupoptions",{"_index":821,"name":{},"parent":{"2036":{},"2037":{},"2038":{}}}],["lib/commands/xreadgroup.xreadgroupstream",{"_index":819,"name":{},"parent":{"2033":{},"2034":{}}}],["lib/commands/xrevrange",{"_index":824,"name":{"2041":{}},"parent":{"2042":{},"2432":{}}}],["lib/commands/xtrim",{"_index":825,"name":{"2043":{}},"parent":{"2044":{},"2045":{},"2046":{}}}],["lib/commands/zadd",{"_index":826,"name":{"2047":{}},"parent":{"2048":{},"2049":{},"2433":{}}}],["lib/commands/zcard",{"_index":827,"name":{"2050":{}},"parent":{"2051":{},"2052":{},"2053":{},"2054":{}}}],["lib/commands/zcount",{"_index":828,"name":{"2055":{}},"parent":{"2056":{},"2057":{},"2058":{},"2059":{}}}],["lib/commands/zdiff",{"_index":829,"name":{"2060":{}},"parent":{"2061":{},"2062":{},"2063":{},"2064":{}}}],["lib/commands/zdiff_withscores",{"_index":831,"name":{"2069":{}},"parent":{"2070":{},"2434":{},"2435":{},"2436":{}}}],["lib/commands/zdiffstore",{"_index":830,"name":{"2065":{}},"parent":{"2066":{},"2067":{},"2068":{}}}],["lib/commands/zincrby",{"_index":832,"name":{"2071":{}},"parent":{"2072":{},"2073":{},"2437":{}}}],["lib/commands/zinter",{"_index":833,"name":{"2074":{}},"parent":{"2075":{},"2076":{},"2077":{},"2078":{}}}],["lib/commands/zinter_withscores",{"_index":835,"name":{"2083":{}},"parent":{"2084":{},"2438":{},"2439":{},"2440":{}}}],["lib/commands/zinterstore",{"_index":834,"name":{"2079":{}},"parent":{"2080":{},"2081":{},"2082":{}}}],["lib/commands/zlexcount",{"_index":836,"name":{"2085":{}},"parent":{"2086":{},"2087":{},"2088":{},"2089":{}}}],["lib/commands/zmscore",{"_index":837,"name":{"2090":{}},"parent":{"2091":{},"2092":{},"2093":{},"2441":{}}}],["lib/commands/zpopmax",{"_index":838,"name":{"2094":{}},"parent":{"2095":{},"2096":{},"2097":{}}}],["lib/commands/zpopmax_count",{"_index":839,"name":{"2098":{}},"parent":{"2099":{},"2442":{},"2443":{}}}],["lib/commands/zpopmin",{"_index":840,"name":{"2100":{}},"parent":{"2101":{},"2102":{},"2103":{}}}],["lib/commands/zpopmin_count",{"_index":841,"name":{"2104":{}},"parent":{"2105":{},"2444":{},"2445":{}}}],["lib/commands/zrandmember",{"_index":842,"name":{"2106":{}},"parent":{"2107":{},"2108":{},"2109":{},"2110":{}}}],["lib/commands/zrandmember_count",{"_index":843,"name":{"2111":{}},"parent":{"2112":{},"2113":{},"2446":{},"2447":{}}}],["lib/commands/zrandmember_count_withscores",{"_index":844,"name":{"2114":{}},"parent":{"2115":{},"2448":{},"2449":{},"2450":{}}}],["lib/commands/zrange",{"_index":845,"name":{"2116":{}},"parent":{"2117":{},"2118":{},"2119":{},"2120":{}}}],["lib/commands/zrange_withscores",{"_index":858,"name":{"2147":{}},"parent":{"2148":{},"2454":{},"2455":{},"2456":{}}}],["lib/commands/zrangebylex",{"_index":846,"name":{"2121":{}},"parent":{"2122":{},"2123":{},"2124":{},"2125":{},"2126":{}}}],["lib/commands/zrangebylex.zrangebylexoptions",{"_index":849,"name":{},"parent":{"2127":{},"2128":{}}}],["lib/commands/zrangebylex.zrangebylexoptions.__type",{"_index":851,"name":{},"parent":{"2129":{},"2130":{}}}],["lib/commands/zrangebyscore",{"_index":852,"name":{"2131":{}},"parent":{"2132":{},"2133":{},"2134":{},"2135":{},"2136":{}}}],["lib/commands/zrangebyscore.zrangebyscoreoptions",{"_index":854,"name":{},"parent":{"2137":{},"2138":{}}}],["lib/commands/zrangebyscore.zrangebyscoreoptions.__type",{"_index":855,"name":{},"parent":{"2139":{},"2140":{}}}],["lib/commands/zrangebyscore_withscores",{"_index":856,"name":{"2141":{}},"parent":{"2142":{},"2451":{},"2452":{},"2453":{}}}],["lib/commands/zrangestore",{"_index":857,"name":{"2143":{}},"parent":{"2144":{},"2145":{},"2146":{}}}],["lib/commands/zrank",{"_index":859,"name":{"2149":{}},"parent":{"2150":{},"2151":{},"2152":{},"2153":{}}}],["lib/commands/zrem",{"_index":860,"name":{"2154":{}},"parent":{"2155":{},"2156":{},"2157":{}}}],["lib/commands/zremrangebylex",{"_index":861,"name":{"2158":{}},"parent":{"2159":{},"2160":{},"2161":{}}}],["lib/commands/zremrangebyrank",{"_index":862,"name":{"2162":{}},"parent":{"2163":{},"2164":{},"2165":{}}}],["lib/commands/zremrangebyscore",{"_index":863,"name":{"2166":{}},"parent":{"2167":{},"2168":{},"2169":{}}}],["lib/commands/zrevrank",{"_index":864,"name":{"2170":{}},"parent":{"2171":{},"2172":{},"2173":{},"2174":{}}}],["lib/commands/zscan",{"_index":865,"name":{"2175":{}},"parent":{"2176":{},"2177":{},"2178":{},"2179":{}}}],["lib/commands/zscore",{"_index":866,"name":{"2180":{}},"parent":{"2181":{},"2182":{},"2183":{},"2457":{}}}],["lib/commands/zunion",{"_index":867,"name":{"2184":{}},"parent":{"2185":{},"2186":{},"2187":{},"2188":{}}}],["lib/commands/zunion_withscores",{"_index":869,"name":{"2193":{}},"parent":{"2194":{},"2458":{},"2459":{},"2460":{}}}],["lib/commands/zunionstore",{"_index":868,"name":{"2189":{}},"parent":{"2190":{},"2191":{},"2192":{}}}],["lib/errors",{"_index":981,"name":{"2323":{}},"parent":{"2324":{},"2327":{},"2330":{},"2333":{},"2336":{},"2339":{},"2342":{}}}],["lib/errors.aborterror",{"_index":983,"name":{},"parent":{"2325":{},"2326":{}}}],["lib/errors.autherror",{"_index":995,"name":{},"parent":{"2343":{},"2344":{}}}],["lib/errors.clientclosederror",{"_index":989,"name":{},"parent":{"2334":{},"2335":{}}}],["lib/errors.connectiontimeouterror",{"_index":987,"name":{},"parent":{"2331":{},"2332":{}}}],["lib/errors.disconnectsclienterror",{"_index":991,"name":{},"parent":{"2337":{},"2338":{}}}],["lib/errors.socketclosedunexpectedlyerror",{"_index":993,"name":{},"parent":{"2340":{},"2341":{}}}],["lib/errors.watcherror",{"_index":985,"name":{},"parent":{"2328":{},"2329":{}}}],["lib/lua",{"_index":996,"name":{"2345":{}},"parent":{"2346":{},"2347":{},"2348":{},"2349":{},"2350":{},"2351":{},"2352":{},"2353":{},"2354":{},"2355":{},"2356":{},"2357":{}}}],["lib/multi",{"_index":1005,"name":{"2358":{}},"parent":{"2359":{},"2360":{},"2361":{},"2362":{},"2363":{},"2364":{},"2365":{},"2366":{},"2367":{},"2368":{},"2369":{},"2370":{},"2371":{},"2372":{}}}],["lib/ts",{"_index":1014,"name":{"2373":{}},"parent":{"2374":{}}}],["lib/utils",{"_index":1017,"name":{"2375":{}},"parent":{"2376":{}}}],["limit",{"_index":848,"name":{"2127":{},"2137":{}},"parent":{}}],["lindex",{"_index":239,"name":{"322":{},"323":{},"856":{},"857":{}},"parent":{}}],["linkstate",{"_index":593,"name":{"1314":{},"1327":{}},"parent":{}}],["linsert",{"_index":240,"name":{"324":{},"325":{},"858":{},"859":{}},"parent":{}}],["list",{"_index":947,"name":{"2279":{}},"parent":{}}],["llen",{"_index":241,"name":{"326":{},"327":{},"860":{},"861":{}},"parent":{}}],["lmove",{"_index":242,"name":{"328":{},"329":{},"862":{},"863":{}},"parent":{}}],["lmoveside",{"_index":686,"name":{"1596":{}},"parent":{}}],["loading",{"_index":937,"name":{"2267":{}},"parent":{}}],["local_address",{"_index":572,"name":{"1277":{}},"parent":{}}],["lolwut",{"_index":130,"name":{"148":{},"149":{}},"parent":{}}],["longitude",{"_index":908,"name":{"2235":{},"2252":{}},"parent":{}}],["lpop",{"_index":245,"name":{"332":{},"333":{},"866":{},"867":{}},"parent":{}}],["lpop_count",{"_index":243,"name":{"330":{},"864":{}},"parent":{}}],["lpopcount",{"_index":244,"name":{"331":{},"865":{}},"parent":{}}],["lpos",{"_index":248,"name":{"336":{},"337":{},"870":{},"871":{}},"parent":{}}],["lpos_count",{"_index":246,"name":{"334":{},"868":{}},"parent":{}}],["lposcount",{"_index":247,"name":{"335":{},"869":{}},"parent":{}}],["lposoptions",{"_index":691,"name":{"1615":{}},"parent":{}}],["lpush",{"_index":249,"name":{"338":{},"339":{},"872":{},"873":{}},"parent":{}}],["lpushx",{"_index":250,"name":{"340":{},"341":{},"874":{},"875":{}},"parent":{}}],["lrange",{"_index":251,"name":{"342":{},"343":{},"876":{},"877":{}},"parent":{}}],["lrem",{"_index":252,"name":{"344":{},"345":{},"878":{},"879":{}},"parent":{}}],["lset",{"_index":253,"name":{"346":{},"347":{},"880":{},"881":{}},"parent":{}}],["ltrim",{"_index":254,"name":{"348":{},"349":{},"882":{},"883":{}},"parent":{}}],["match",{"_index":746,"name":{"1796":{},"2222":{}},"parent":{}}],["maxcommandredirections",{"_index":510,"name":{"1106":{}},"parent":{}}],["maxlen",{"_index":694,"name":{"1617":{}},"parent":{}}],["maxlength",{"_index":32,"name":{"30":{}},"parent":{}}],["member",{"_index":921,"name":{"2247":{}},"parent":{}}],["memoery_doctor",{"_index":131,"name":{"150":{}},"parent":{}}],["memory_malloc",{"_index":133,"name":{"152":{}},"parent":{}}],["memory_purge",{"_index":136,"name":{"154":{}},"parent":{}}],["memory_stats",{"_index":138,"name":{"156":{}},"parent":{}}],["memory_usage",{"_index":140,"name":{"158":{}},"parent":{}}],["memorydoctor",{"_index":132,"name":{"151":{}},"parent":{}}],["memorymallocstats",{"_index":135,"name":{"153":{}},"parent":{}}],["memorypurge",{"_index":137,"name":{"155":{}},"parent":{}}],["memorystats",{"_index":139,"name":{"157":{}},"parent":{}}],["memoryusage",{"_index":141,"name":{"159":{}},"parent":{}}],["message",{"_index":28,"name":{"23":{},"2227":{}},"parent":{}}],["mget",{"_index":255,"name":{"350":{},"351":{},"884":{},"885":{}},"parent":{}}],["migrate",{"_index":256,"name":{"352":{},"353":{},"886":{},"887":{}},"parent":{}}],["migrating",{"_index":606,"name":{"1340":{}},"parent":{}}],["module_list",{"_index":142,"name":{"160":{}},"parent":{}}],["module_load",{"_index":144,"name":{"162":{}},"parent":{}}],["module_unload",{"_index":146,"name":{"164":{}},"parent":{}}],["modulelist",{"_index":143,"name":{"161":{}},"parent":{}}],["moduleload",{"_index":145,"name":{"163":{}},"parent":{}}],["modules",{"_index":397,"name":{"578":{},"1107":{},"2321":{}},"parent":{}}],["moduleunload",{"_index":147,"name":{"165":{}},"parent":{}}],["movablekeys",{"_index":941,"name":{"2272":{}},"parent":{}}],["move",{"_index":148,"name":{"166":{},"167":{}},"parent":{}}],["mset",{"_index":257,"name":{"354":{},"355":{},"888":{},"889":{}},"parent":{}}],["msetnx",{"_index":258,"name":{"356":{},"357":{},"890":{},"891":{}},"parent":{}}],["multi",{"_index":433,"name":{"643":{},"658":{},"1116":{},"1125":{},"1136":{}},"parent":{}}],["multiexecutor",{"_index":434,"name":{"644":{}},"parent":{}}],["name",{"_index":392,"name":{"572":{},"2298":{}},"parent":{}}],["noack",{"_index":823,"name":{"2038":{}},"parent":{}}],["node",{"_index":608,"name":{"1342":{}},"parent":{}}],["nodebyurl",{"_index":485,"name":{"723":{}},"parent":{}}],["nodelay",{"_index":453,"name":{"673":{},"680":{}},"parent":{}}],["noscript",{"_index":934,"name":{"2264":{}},"parent":{}}],["number_of_keys",{"_index":1002,"name":{"2350":{}},"parent":{}}],["offset",{"_index":850,"name":{"2129":{},"2139":{}},"parent":{}}],["onerror",{"_index":484,"name":{"722":{}},"parent":{}}],["onsocketerror",{"_index":473,"name":{"708":{}},"parent":{}}],["options",{"_index":414,"name":{"600":{},"606":{},"694":{},"720":{},"1114":{},"1146":{}},"parent":{"1147":{},"1148":{},"1149":{}}}],["parser",{"_index":36,"name":{"34":{}},"parent":{}}],["parseresponse",{"_index":43,"name":{"43":{}},"parent":{}}],["parseurl",{"_index":413,"name":{"598":{}},"parent":{}}],["password",{"_index":391,"name":{"571":{},"1206":{}},"parent":{}}],["persist",{"_index":259,"name":{"358":{},"359":{},"892":{},"893":{}},"parent":{}}],["pexpire",{"_index":260,"name":{"360":{},"361":{},"894":{},"895":{}},"parent":{}}],["pexpireat",{"_index":261,"name":{"362":{},"363":{},"896":{},"897":{}},"parent":{}}],["pfadd",{"_index":262,"name":{"364":{},"365":{},"898":{},"899":{}},"parent":{}}],["pfcount",{"_index":263,"name":{"366":{},"367":{},"900":{},"901":{}},"parent":{}}],["pfmerge",{"_index":264,"name":{"368":{},"369":{},"902":{},"903":{}},"parent":{}}],["ping",{"_index":149,"name":{"168":{},"169":{}},"parent":{}}],["pingsent",{"_index":590,"name":{"1311":{},"1324":{}},"parent":{}}],["pmessage",{"_index":30,"name":{"24":{}},"parent":{}}],["pongrecv",{"_index":591,"name":{"1312":{},"1325":{}},"parent":{}}],["port",{"_index":595,"name":{"1316":{},"1329":{}},"parent":{}}],["promisetimeout",{"_index":1018,"name":{"2376":{}},"parent":{}}],["psetex",{"_index":265,"name":{"370":{},"371":{},"904":{},"905":{}},"parent":{}}],["psubscribe",{"_index":15,"name":{"12":{},"26":{},"628":{},"629":{}},"parent":{}}],["pttl",{"_index":266,"name":{"372":{},"373":{},"906":{},"907":{}},"parent":{}}],["pub_sub_messages",{"_index":27,"name":{"21":{}},"parent":{}}],["publish",{"_index":267,"name":{"374":{},"375":{},"908":{},"909":{}},"parent":{}}],["pubsub",{"_index":933,"name":{"2263":{},"2286":{}},"parent":{}}],["pubsub_channels",{"_index":150,"name":{"170":{}},"parent":{}}],["pubsub_numpat",{"_index":152,"name":{"172":{}},"parent":{}}],["pubsub_numsub",{"_index":154,"name":{"174":{}},"parent":{}}],["pubsubchannels",{"_index":151,"name":{"171":{}},"parent":{}}],["pubsublistener",{"_index":20,"name":{"16":{}},"parent":{}}],["pubsubnumpat",{"_index":153,"name":{"173":{}},"parent":{}}],["pubsubnumsub",{"_index":155,"name":{"175":{}},"parent":{}}],["pubsubstate",{"_index":35,"name":{"33":{}},"parent":{}}],["pubsubsubscribecommands",{"_index":12,"name":{"10":{}},"parent":{}}],["pubsubunsubscribecommands",{"_index":16,"name":{"13":{}},"parent":{}}],["punsubscribe",{"_index":19,"name":{"15":{},"28":{},"635":{},"636":{}},"parent":{}}],["pushevalarguments",{"_index":890,"name":{"2214":{}},"parent":{}}],["pushgeocountargument",{"_index":885,"name":{"2209":{}},"parent":{}}],["pushgeosearcharguments",{"_index":886,"name":{"2210":{}},"parent":{}}],["pushoptionalverdictargument",{"_index":894,"name":{"2218":{}},"parent":{}}],["pushpubsubcommand",{"_index":40,"name":{"40":{}},"parent":{}}],["pushscanarguments",{"_index":874,"name":{"2198":{}},"parent":{}}],["pushstringtuplesarguments",{"_index":891,"name":{"2215":{}},"parent":{}}],["pushverdictargument",{"_index":893,"name":{"2217":{}},"parent":{}}],["pushverdictarguments",{"_index":892,"name":{"2216":{}},"parent":{}}],["queue",{"_index":5,"name":{"4":{},"602":{},"2366":{}},"parent":{"5":{},"10":{},"13":{},"16":{},"18":{}}}],["queue.default",{"_index":25,"name":{},"parent":{"19":{},"20":{},"21":{},"22":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{}}}],["queue.default.__type",{"_index":29,"name":{},"parent":{"23":{},"24":{},"25":{},"26":{},"27":{},"28":{}}}],["queue.pubsublistener",{"_index":22,"name":{},"parent":{"17":{}}}],["queue.pubsubsubscribecommands",{"_index":14,"name":{},"parent":{"11":{},"12":{}}}],["queue.pubsubunsubscribecommands",{"_index":18,"name":{},"parent":{"14":{},"15":{}}}],["queue.queuecommandoptions",{"_index":8,"name":{},"parent":{"6":{},"7":{},"8":{},"9":{}}}],["queuecommandoptions",{"_index":6,"name":{"5":{}},"parent":{}}],["quit",{"_index":430,"name":{"638":{},"639":{},"711":{}},"parent":{}}],["random",{"_index":935,"name":{"2265":{}},"parent":{}}],["randomclientiterator",{"_index":496,"name":{"737":{}},"parent":{}}],["randomkey",{"_index":156,"name":{"176":{},"177":{}},"parent":{}}],["rank",{"_index":692,"name":{"1616":{}},"parent":{}}],["read",{"_index":945,"name":{"2275":{}},"parent":{}}],["readonly",{"_index":157,"name":{"178":{},"179":{},"575":{},"2260":{}},"parent":{}}],["readwrite",{"_index":158,"name":{"180":{},"181":{}},"parent":{}}],["reconnectstrategy",{"_index":455,"name":{"675":{},"682":{}},"parent":{}}],["redisclientcommandsignature",{"_index":399,"name":{"580":{}},"parent":{}}],["redisclientmulticommandtype",{"_index":442,"name":{"652":{}},"parent":{}}],["redisclientmultiexecutor",{"_index":443,"name":{"653":{}},"parent":{}}],["redisclientoptions",{"_index":386,"name":{"567":{},"2378":{}},"parent":{}}],["redisclienttype",{"_index":403,"name":{"584":{},"2377":{}},"parent":{}}],["redisclusterclientoptions",{"_index":504,"name":{"1101":{}},"parent":{}}],["redisclustermasternode",{"_index":597,"name":{"1318":{}},"parent":{}}],["redisclustermulticommandtype",{"_index":516,"name":{"1130":{}},"parent":{}}],["redisclustermultiexecutor",{"_index":517,"name":{"1131":{}},"parent":{}}],["redisclusternodelinkstates",{"_index":583,"name":{"1304":{}},"parent":{}}],["redisclusteroptions",{"_index":505,"name":{"1102":{},"2382":{}},"parent":{}}],["redisclusterreplicanode",{"_index":587,"name":{"1307":{}},"parent":{}}],["redisclustertype",{"_index":511,"name":{"1109":{},"2381":{}},"parent":{}}],["rediscommand",{"_index":971,"name":{"2308":{}},"parent":{}}],["rediscommandarguments",{"_index":970,"name":{"2307":{}},"parent":{}}],["rediscommandrawreply",{"_index":969,"name":{"2306":{}},"parent":{}}],["rediscommandreply",{"_index":973,"name":{"2314":{}},"parent":{}}],["rediscommands",{"_index":974,"name":{"2315":{}},"parent":{}}],["rediscover",{"_index":488,"name":{"728":{},"729":{}},"parent":{}}],["redisflushmodes",{"_index":634,"name":{"1420":{}},"parent":{}}],["redismodule",{"_index":975,"name":{"2316":{}},"parent":{}}],["redismodules",{"_index":976,"name":{"2317":{},"2379":{}},"parent":{}}],["redismultiqueuedcommand",{"_index":1006,"name":{"2359":{}},"parent":{}}],["redisnetsocketoptions",{"_index":456,"name":{"676":{}},"parent":{}}],["redisplugins",{"_index":979,"name":{"2320":{}},"parent":{}}],["redisscript",{"_index":977,"name":{"2318":{}},"parent":{}}],["redisscriptconfig",{"_index":1000,"name":{"2348":{}},"parent":{}}],["redisscripts",{"_index":978,"name":{"2319":{},"2380":{}},"parent":{}}],["redissocketcommonoptions",{"_index":450,"name":{"671":{}},"parent":{}}],["redissocketinitiator",{"_index":461,"name":{"686":{}},"parent":{}}],["redissocketoptions",{"_index":460,"name":{"685":{}},"parent":{}}],["redistlssocketoptions",{"_index":457,"name":{"677":{}},"parent":{}}],["rename",{"_index":268,"name":{"376":{},"377":{},"910":{},"911":{}},"parent":{}}],["renamenx",{"_index":269,"name":{"378":{},"379":{},"912":{},"913":{}},"parent":{}}],["replicaof",{"_index":159,"name":{"182":{},"183":{}},"parent":{}}],["replicas",{"_index":599,"name":{"1320":{}},"parent":{}}],["reset",{"_index":489,"name":{"730":{}},"parent":{}}],["restore",{"_index":160,"name":{"184":{}},"parent":{}}],["restoreasking",{"_index":161,"name":{"185":{}},"parent":{}}],["resubscribe",{"_index":41,"name":{"41":{}},"parent":{}}],["retryconnection",{"_index":469,"name":{"704":{}},"parent":{}}],["retrycount",{"_index":799,"name":{"1966":{}},"parent":{}}],["role",{"_index":162,"name":{"186":{},"187":{}},"parent":{}}],["rootnodes",{"_index":506,"name":{"1103":{}},"parent":{}}],["rpop",{"_index":272,"name":{"382":{},"383":{},"916":{},"917":{}},"parent":{}}],["rpop_count",{"_index":270,"name":{"380":{},"914":{}},"parent":{}}],["rpopcount",{"_index":271,"name":{"381":{},"915":{}},"parent":{}}],["rpoplpush",{"_index":273,"name":{"384":{},"385":{},"918":{},"919":{}},"parent":{}}],["rpush",{"_index":274,"name":{"386":{},"387":{},"920":{},"921":{}},"parent":{}}],["rpushx",{"_index":275,"name":{"388":{},"389":{},"922":{},"923":{}},"parent":{}}],["runningrediscoverpromise",{"_index":487,"name":{"727":{}},"parent":{}}],["sadd",{"_index":276,"name":{"390":{},"391":{},"924":{},"925":{}},"parent":{}}],["save",{"_index":163,"name":{"188":{},"189":{}},"parent":{}}],["scan",{"_index":164,"name":{"190":{},"191":{}},"parent":{}}],["scancommandoptions",{"_index":744,"name":{"1794":{}},"parent":{}}],["scaniterator",{"_index":435,"name":{"645":{}},"parent":{}}],["scanoptions",{"_index":896,"name":{"2221":{}},"parent":{}}],["scanreply",{"_index":748,"name":{"1798":{}},"parent":{}}],["scard",{"_index":277,"name":{"392":{},"393":{},"926":{},"927":{}},"parent":{}}],["score",{"_index":904,"name":{"2231":{}},"parent":{}}],["script",{"_index":997,"name":{"2345":{},"2349":{}},"parent":{"2346":{},"2347":{},"2348":{},"2356":{}}}],["script.redisscriptconfig",{"_index":1001,"name":{},"parent":{"2349":{},"2350":{},"2351":{},"2352":{},"2353":{},"2354":{},"2355":{}}}],["script.sha1",{"_index":1004,"name":{},"parent":{"2357":{}}}],["script_debug",{"_index":165,"name":{"192":{}},"parent":{}}],["script_exists",{"_index":167,"name":{"194":{}},"parent":{}}],["script_flush",{"_index":169,"name":{"196":{}},"parent":{}}],["script_kill",{"_index":171,"name":{"198":{}},"parent":{}}],["script_load",{"_index":173,"name":{"200":{}},"parent":{}}],["scriptdebug",{"_index":166,"name":{"193":{}},"parent":{}}],["scriptexists",{"_index":168,"name":{"195":{}},"parent":{}}],["scriptflush",{"_index":170,"name":{"197":{}},"parent":{}}],["scripting",{"_index":958,"name":{"2294":{}},"parent":{}}],["scriptkill",{"_index":172,"name":{"199":{}},"parent":{}}],["scriptload",{"_index":174,"name":{"201":{}},"parent":{}}],["scripts",{"_index":398,"name":{"579":{},"1108":{},"2322":{}},"parent":{}}],["scriptsexecutor",{"_index":427,"name":{"619":{},"665":{},"1122":{},"1141":{}},"parent":{}}],["scriptsha1",{"_index":999,"name":{"2347":{}},"parent":{}}],["scriptsinuse",{"_index":1010,"name":{"2367":{}},"parent":{}}],["sdiff",{"_index":278,"name":{"394":{},"395":{},"928":{},"929":{}},"parent":{}}],["sdiffstore",{"_index":279,"name":{"396":{},"397":{},"930":{},"931":{}},"parent":{}}],["select",{"_index":429,"name":{"621":{},"622":{}},"parent":{}}],["selecteddb",{"_index":417,"name":{"605":{}},"parent":{}}],["sendcommand",{"_index":426,"name":{"617":{},"618":{},"1121":{}},"parent":{}}],["set",{"_index":282,"name":{"402":{},"403":{},"936":{},"937":{},"2277":{}},"parent":{}}],["setbit",{"_index":283,"name":{"404":{},"405":{},"938":{},"939":{}},"parent":{}}],["setex",{"_index":284,"name":{"406":{},"407":{},"940":{},"941":{}},"parent":{}}],["setnx",{"_index":285,"name":{"408":{},"409":{},"942":{},"943":{}},"parent":{}}],["setrange",{"_index":286,"name":{"410":{},"411":{},"944":{},"945":{}},"parent":{}}],["sha1",{"_index":1003,"name":{"2356":{},"2357":{}},"parent":{}}],["shiftwaitingforreply",{"_index":44,"name":{"44":{}},"parent":{}}],["shutdown",{"_index":175,"name":{"202":{},"203":{}},"parent":{}}],["signal",{"_index":10,"name":{"8":{},"591":{}},"parent":{}}],["sinter",{"_index":280,"name":{"398":{},"399":{},"932":{},"933":{}},"parent":{}}],["sinterstore",{"_index":281,"name":{"400":{},"401":{},"934":{},"935":{}},"parent":{}}],["sismember",{"_index":287,"name":{"412":{},"413":{},"946":{},"947":{}},"parent":{}}],["skip_me",{"_index":574,"name":{"1281":{}},"parent":{}}],["skip_monitor",{"_index":939,"name":{"2269":{}},"parent":{}}],["slot",{"_index":1016,"name":{"2373":{}},"parent":{"2374":{}}}],["slotclientiterator",{"_index":494,"name":{"735":{}},"parent":{}}],["slots",{"_index":478,"name":{"714":{},"724":{},"1115":{},"1319":{}},"parent":{"715":{},"718":{}}}],["slots.clusternode",{"_index":481,"name":{},"parent":{"716":{},"717":{}}}],["slots.default",{"_index":483,"name":{},"parent":{"719":{},"720":{},"721":{},"722":{},"723":{},"724":{},"725":{},"726":{},"727":{},"728":{},"729":{},"730":{},"731":{},"732":{},"733":{},"734":{},"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{}}}],["slow",{"_index":953,"name":{"2289":{}},"parent":{}}],["smembers",{"_index":288,"name":{"414":{},"415":{},"948":{},"949":{}},"parent":{}}],["smismember",{"_index":289,"name":{"416":{},"417":{},"950":{},"951":{}},"parent":{}}],["smove",{"_index":290,"name":{"418":{},"419":{},"952":{},"953":{}},"parent":{}}],["socket",{"_index":389,"name":{"569":{},"601":{},"695":{}},"parent":{}}],["socketclosedunexpectedlyerror",{"_index":992,"name":{"2339":{},"2389":{}},"parent":{}}],["sort",{"_index":291,"name":{"420":{},"421":{},"954":{},"955":{},"2240":{}},"parent":{}}],["sort_for_script",{"_index":936,"name":{"2266":{}},"parent":{}}],["sortedset",{"_index":946,"name":{"2278":{}},"parent":{}}],["spop",{"_index":292,"name":{"422":{},"423":{},"956":{},"957":{}},"parent":{}}],["srandmember",{"_index":295,"name":{"426":{},"427":{},"960":{},"961":{}},"parent":{}}],["srandmember_count",{"_index":293,"name":{"424":{},"958":{}},"parent":{}}],["srandmembercount",{"_index":294,"name":{"425":{},"959":{}},"parent":{}}],["srem",{"_index":296,"name":{"428":{},"429":{},"962":{},"963":{}},"parent":{}}],["sscan",{"_index":297,"name":{"430":{},"431":{},"964":{},"965":{}},"parent":{}}],["sscaniterator",{"_index":437,"name":{"647":{}},"parent":{}}],["stable",{"_index":607,"name":{"1341":{}},"parent":{}}],["stale",{"_index":938,"name":{"2268":{}},"parent":{}}],["stats",{"_index":134,"name":{"152":{},"1649":{}},"parent":{"1650":{},"1651":{}}}],["step",{"_index":966,"name":{"2303":{}},"parent":{}}],["stream",{"_index":952,"name":{"2285":{}},"parent":{}}],["streammessagereply",{"_index":899,"name":{"2225":{}},"parent":{}}],["streammessagesreply",{"_index":901,"name":{"2228":{}},"parent":{}}],["streamsmessagesreply",{"_index":902,"name":{"2229":{}},"parent":{}}],["string",{"_index":948,"name":{"2281":{}},"parent":{}}],["stringtuplesarguments",{"_index":927,"name":{"2257":{}},"parent":{}}],["strlen",{"_index":298,"name":{"432":{},"433":{},"966":{},"967":{}},"parent":{}}],["subscribe",{"_index":13,"name":{"11":{},"25":{},"38":{},"624":{},"625":{},"626":{}},"parent":{}}],["sunion",{"_index":299,"name":{"434":{},"435":{},"968":{},"969":{}},"parent":{}}],["sunionstore",{"_index":300,"name":{"436":{},"437":{},"970":{},"971":{}},"parent":{}}],["swapdb",{"_index":176,"name":{"204":{},"205":{}},"parent":{}}],["sync",{"_index":637,"name":{"1422":{}},"parent":{}}],["tick",{"_index":431,"name":{"641":{}},"parent":{}}],["time",{"_index":177,"name":{"206":{},"207":{},"1965":{}},"parent":{}}],["tls",{"_index":458,"name":{"678":{}},"parent":{}}],["touch",{"_index":301,"name":{"438":{},"439":{},"972":{},"973":{}},"parent":{}}],["transaction",{"_index":957,"name":{"2293":{}},"parent":{}}],["transformargumentnumberinfinity",{"_index":879,"name":{"2203":{}},"parent":{}}],["transformarguments",{"_index":531,"name":{"1159":{},"1162":{},"1165":{},"1168":{},"1171":{},"1174":{},"1177":{},"1180":{},"1183":{},"1186":{},"1189":{},"1192":{},"1195":{},"1199":{},"1202":{},"1208":{},"1211":{},"1214":{},"1219":{},"1224":{},"1228":{},"1233":{},"1237":{},"1241":{},"1245":{},"1249":{},"1253":{},"1257":{},"1260":{},"1263":{},"1266":{},"1270":{},"1273":{},"1283":{},"1286":{},"1289":{},"1292":{},"1295":{},"1299":{},"1302":{},"1332":{},"1336":{},"1344":{},"1348":{},"1352":{},"1356":{},"1360":{},"1364":{},"1366":{},"1369":{},"1372":{},"1375":{},"1378":{},"1382":{},"1386":{},"1390":{},"1393":{},"1396":{},"1399":{},"1403":{},"1405":{},"1407":{},"1411":{},"1413":{},"1415":{},"1418":{},"1424":{},"1427":{},"1431":{},"1436":{},"1441":{},"1446":{},"1451":{},"1456":{},"1458":{},"1463":{},"1468":{},"1472":{},"1476":{},"1481":{},"1488":{},"1492":{},"1495":{},"1498":{},"1502":{},"1505":{},"1509":{},"1513":{},"1517":{},"1521":{},"1526":{},"1530":{},"1533":{},"1535":{},"1543":{},"1547":{},"1550":{},"1554":{},"1558":{},"1562":{},"1566":{},"1570":{},"1574":{},"1577":{},"1581":{},"1585":{},"1589":{},"1594":{},"1599":{},"1603":{},"1607":{},"1611":{},"1619":{},"1622":{},"1626":{},"1630":{},"1635":{},"1639":{},"1643":{},"1647":{},"1650":{},"1653":{},"1656":{},"1659":{},"1664":{},"1669":{},"1672":{},"1675":{},"1678":{},"1681":{},"1683":{},"1687":{},"1690":{},"1693":{},"1696":{},"1699":{},"1702":{},"1706":{},"1710":{},"1713":{},"1717":{},"1722":{},"1725":{},"1729":{},"1733":{},"1737":{},"1741":{},"1744":{},"1747":{},"1751":{},"1754":{},"1757":{},"1760":{},"1764":{},"1768":{},"1772":{},"1776":{},"1780":{},"1784":{},"1788":{},"1791":{},"1802":{},"1806":{},"1809":{},"1811":{},"1814":{},"1817":{},"1820":{},"1824":{},"1828":{},"1832":{},"1836":{},"1840":{},"1843":{},"1847":{},"1850":{},"1854":{},"1858":{},"1861":{},"1865":{},"1868":{},"1871":{},"1876":{},"1880":{},"1884":{},"1887":{},"1891":{},"1896":{},"1901":{},"1906":{},"1910":{},"1913":{},"1916":{},"1920":{},"1925":{},"1930":{},"1934":{},"1937":{},"1941":{},"1944":{},"1948":{},"1952":{},"1958":{},"1961":{},"1969":{},"1972":{},"1976":{},"1980":{},"1983":{},"1987":{},"1990":{},"1994":{},"1999":{},"2004":{},"2009":{},"2014":{},"2019":{},"2023":{},"2027":{},"2031":{},"2042":{},"2044":{},"2048":{},"2051":{},"2056":{},"2061":{},"2066":{},"2070":{},"2072":{},"2075":{},"2080":{},"2084":{},"2086":{},"2091":{},"2095":{},"2099":{},"2101":{},"2105":{},"2107":{},"2112":{},"2115":{},"2117":{},"2122":{},"2132":{},"2142":{},"2144":{},"2148":{},"2150":{},"2155":{},"2159":{},"2163":{},"2167":{},"2171":{},"2176":{},"2181":{},"2185":{},"2190":{},"2194":{},"2311":{},"2353":{},"2401":{}},"parent":{}}],["transformargumentstringnumberinfinity",{"_index":880,"name":{"2204":{}},"parent":{}}],["transformcommandarguments",{"_index":525,"name":{"1153":{}},"parent":{}}],["transformcommandreply",{"_index":527,"name":{"1155":{},"2219":{}},"parent":{}}],["transformers",{"_index":871,"name":{"2195":{}},"parent":{"2196":{},"2197":{},"2198":{},"2199":{},"2200":{},"2201":{},"2202":{},"2203":{},"2204":{},"2205":{},"2206":{},"2207":{},"2208":{},"2209":{},"2210":{},"2211":{},"2212":{},"2213":{},"2214":{},"2215":{},"2216":{},"2217":{},"2218":{},"2219":{},"2220":{},"2221":{},"2224":{},"2225":{},"2228":{},"2229":{},"2230":{},"2233":{},"2234":{},"2237":{},"2238":{},"2239":{},"2242":{},"2246":{},"2254":{},"2257":{},"2258":{},"2273":{},"2295":{},"2296":{}}}],["transformers.commandcategories",{"_index":944,"name":{},"parent":{"2274":{},"2275":{},"2276":{},"2277":{},"2278":{},"2279":{},"2280":{},"2281":{},"2282":{},"2283":{},"2284":{},"2285":{},"2286":{},"2287":{},"2288":{},"2289":{},"2290":{},"2291":{},"2292":{},"2293":{},"2294":{}}}],["transformers.commandflags",{"_index":930,"name":{},"parent":{"2259":{},"2260":{},"2261":{},"2262":{},"2263":{},"2264":{},"2265":{},"2266":{},"2267":{},"2268":{},"2269":{},"2270":{},"2271":{},"2272":{}}}],["transformers.commandreply",{"_index":961,"name":{},"parent":{"2297":{}}}],["transformers.commandreply.__type",{"_index":962,"name":{},"parent":{"2298":{},"2299":{},"2300":{},"2301":{},"2302":{},"2303":{},"2304":{}}}],["transformers.evaloptions",{"_index":925,"name":{},"parent":{"2255":{},"2256":{}}}],["transformers.geocoordinates",{"_index":909,"name":{},"parent":{"2235":{},"2236":{}}}],["transformers.georeplywith",{"_index":917,"name":{},"parent":{"2243":{},"2244":{},"2245":{}}}],["transformers.georeplywithmember",{"_index":922,"name":{},"parent":{"2247":{},"2248":{},"2249":{},"2250":{},"2251":{}}}],["transformers.georeplywithmember.__type",{"_index":923,"name":{},"parent":{"2252":{},"2253":{}}}],["transformers.geosearchoptions",{"_index":914,"name":{},"parent":{"2240":{},"2241":{}}}],["transformers.scanoptions",{"_index":897,"name":{},"parent":{"2222":{},"2223":{}}}],["transformers.streammessagereply",{"_index":900,"name":{},"parent":{"2226":{},"2227":{}}}],["transformers.zmember",{"_index":905,"name":{},"parent":{"2231":{},"2232":{}}}],["transformexat",{"_index":888,"name":{"2212":{}},"parent":{}}],["transformgeomemberswithreply",{"_index":887,"name":{"2211":{}},"parent":{}}],["transformlegacycommandarguments",{"_index":528,"name":{"1156":{}},"parent":{}}],["transformpxat",{"_index":889,"name":{"2213":{}},"parent":{}}],["transformreplies",{"_index":1013,"name":{"2372":{}},"parent":{}}],["transformreply",{"_index":532,"name":{"1160":{},"1163":{},"1166":{},"1169":{},"1172":{},"1175":{},"1178":{},"1181":{},"1184":{},"1187":{},"1190":{},"1193":{},"1196":{},"1200":{},"1203":{},"1209":{},"1212":{},"1215":{},"1220":{},"1225":{},"1229":{},"1234":{},"1238":{},"1242":{},"1246":{},"1250":{},"1254":{},"1258":{},"1261":{},"1264":{},"1267":{},"1271":{},"1274":{},"1284":{},"1287":{},"1290":{},"1293":{},"1296":{},"1300":{},"1303":{},"1333":{},"1337":{},"1345":{},"1349":{},"1353":{},"1357":{},"1361":{},"1367":{},"1370":{},"1373":{},"1379":{},"1383":{},"1387":{},"1391":{},"1394":{},"1397":{},"1400":{},"1416":{},"1419":{},"1425":{},"1428":{},"1432":{},"1437":{},"1442":{},"1447":{},"1452":{},"1459":{},"1464":{},"1469":{},"1473":{},"1477":{},"1482":{},"1485":{},"1489":{},"1493":{},"1499":{},"1506":{},"1510":{},"1514":{},"1518":{},"1522":{},"1527":{},"1531":{},"1536":{},"1544":{},"1551":{},"1555":{},"1559":{},"1563":{},"1567":{},"1571":{},"1575":{},"1578":{},"1582":{},"1586":{},"1590":{},"1595":{},"1600":{},"1604":{},"1608":{},"1612":{},"1620":{},"1623":{},"1627":{},"1631":{},"1636":{},"1640":{},"1644":{},"1648":{},"1651":{},"1654":{},"1657":{},"1660":{},"1665":{},"1670":{},"1673":{},"1676":{},"1679":{},"1684":{},"1703":{},"1707":{},"1711":{},"1714":{},"1718":{},"1723":{},"1726":{},"1730":{},"1734":{},"1738":{},"1742":{},"1745":{},"1748":{},"1755":{},"1758":{},"1761":{},"1765":{},"1769":{},"1773":{},"1777":{},"1781":{},"1785":{},"1789":{},"1792":{},"1803":{},"1807":{},"1812":{},"1815":{},"1818":{},"1821":{},"1825":{},"1829":{},"1833":{},"1837":{},"1844":{},"1848":{},"1851":{},"1855":{},"1862":{},"1872":{},"1877":{},"1881":{},"1885":{},"1888":{},"1892":{},"1897":{},"1902":{},"1907":{},"1911":{},"1914":{},"1917":{},"1921":{},"1926":{},"1931":{},"1935":{},"1938":{},"1942":{},"1945":{},"1949":{},"1953":{},"1959":{},"1970":{},"1973":{},"1977":{},"1984":{},"1991":{},"1995":{},"2000":{},"2005":{},"2010":{},"2015":{},"2045":{},"2052":{},"2057":{},"2062":{},"2067":{},"2076":{},"2081":{},"2087":{},"2096":{},"2102":{},"2108":{},"2113":{},"2118":{},"2123":{},"2133":{},"2145":{},"2151":{},"2156":{},"2160":{},"2164":{},"2168":{},"2172":{},"2177":{},"2186":{},"2191":{},"2313":{},"2355":{},"2361":{},"2391":{},"2392":{},"2393":{},"2394":{},"2395":{},"2398":{},"2402":{},"2403":{},"2406":{},"2407":{},"2410":{},"2411":{},"2412":{},"2413":{},"2414":{},"2415":{},"2416":{},"2417":{},"2418":{},"2419":{},"2420":{},"2421":{},"2424":{},"2426":{},"2427":{},"2428":{},"2429":{},"2430":{},"2431":{},"2432":{},"2433":{},"2436":{},"2437":{},"2440":{},"2441":{},"2443":{},"2445":{},"2450":{},"2453":{},"2456":{},"2457":{},"2460":{}},"parent":{}}],["transformreplyboolean",{"_index":872,"name":{"2196":{}},"parent":{}}],["transformreplybooleanarray",{"_index":873,"name":{"2197":{}},"parent":{}}],["transformreplynumberinfinity",{"_index":875,"name":{"2199":{}},"parent":{}}],["transformreplynumberinfinityarray",{"_index":876,"name":{"2200":{}},"parent":{}}],["transformreplynumberinfinitynull",{"_index":877,"name":{"2201":{}},"parent":{}}],["transformreplynumberinfinitynullarray",{"_index":878,"name":{"2202":{}},"parent":{}}],["transformreplysortedsetwithscores",{"_index":884,"name":{"2208":{}},"parent":{}}],["transformreplystreammessages",{"_index":882,"name":{"2206":{}},"parent":{}}],["transformreplystreamsmessages",{"_index":883,"name":{"2207":{}},"parent":{}}],["transformreplytuples",{"_index":881,"name":{"2205":{}},"parent":{}}],["ttl",{"_index":302,"name":{"440":{},"441":{},"974":{},"975":{}},"parent":{}}],["tuplesobject",{"_index":898,"name":{"2224":{}},"parent":{}}],["type",{"_index":303,"name":{"442":{},"443":{},"976":{},"977":{},"1279":{},"1795":{}},"parent":{}}],["unlink",{"_index":304,"name":{"444":{},"445":{},"978":{},"979":{}},"parent":{}}],["unsubscribe",{"_index":17,"name":{"14":{},"27":{},"39":{},"631":{},"632":{},"633":{}},"parent":{}}],["unwatch",{"_index":178,"name":{"208":{},"209":{}},"parent":{}}],["url",{"_index":387,"name":{"568":{},"1309":{},"1322":{}},"parent":{}}],["user",{"_index":573,"name":{"1280":{}},"parent":{}}],["usereplicas",{"_index":509,"name":{"1105":{}},"parent":{}}],["username",{"_index":390,"name":{"570":{},"1205":{}},"parent":{}}],["v4",{"_index":416,"name":{"604":{},"608":{},"660":{}},"parent":{}}],["value",{"_index":671,"name":{"1541":{},"2232":{}},"parent":{}}],["wait",{"_index":179,"name":{"210":{},"211":{}},"parent":{}}],["waitingforreply",{"_index":34,"name":{"32":{}},"parent":{}}],["waitingtobesent",{"_index":33,"name":{"31":{}},"parent":{}}],["watch",{"_index":305,"name":{"446":{},"447":{},"980":{},"981":{}},"parent":{}}],["watcherror",{"_index":984,"name":{"2327":{},"2385":{}},"parent":{}}],["withmodules",{"_index":401,"name":{"582":{}},"parent":{}}],["withscripts",{"_index":402,"name":{"583":{}},"parent":{}}],["writableneeddrain",{"_index":468,"name":{"700":{},"701":{}},"parent":{}}],["write",{"_index":929,"name":{"2259":{},"2276":{}},"parent":{}}],["writecommand",{"_index":474,"name":{"709":{}},"parent":{}}],["xack",{"_index":306,"name":{"448":{},"449":{},"982":{},"983":{}},"parent":{}}],["xadd",{"_index":307,"name":{"450":{},"451":{},"984":{},"985":{}},"parent":{}}],["xautoclaim",{"_index":310,"name":{"454":{},"455":{},"988":{},"989":{}},"parent":{}}],["xautoclaim_justid",{"_index":308,"name":{"452":{},"986":{}},"parent":{}}],["xautoclaimjustid",{"_index":309,"name":{"453":{},"987":{}},"parent":{}}],["xautoclaimoptions",{"_index":792,"name":{"1955":{}},"parent":{}}],["xclaim",{"_index":311,"name":{"456":{},"457":{},"990":{},"991":{}},"parent":{}}],["xclaim_justid",{"_index":312,"name":{"458":{},"992":{}},"parent":{}}],["xclaimjustid",{"_index":313,"name":{"459":{},"993":{}},"parent":{}}],["xclaimoptions",{"_index":796,"name":{"1963":{}},"parent":{}}],["xdel",{"_index":314,"name":{"460":{},"461":{},"994":{},"995":{}},"parent":{}}],["xgroup_create",{"_index":315,"name":{"462":{},"996":{}},"parent":{}}],["xgroup_createconsumer",{"_index":317,"name":{"464":{},"998":{}},"parent":{}}],["xgroup_delconsumer",{"_index":319,"name":{"466":{},"1000":{}},"parent":{}}],["xgroup_destroy",{"_index":321,"name":{"468":{},"1002":{}},"parent":{}}],["xgroup_setid",{"_index":323,"name":{"470":{},"1004":{}},"parent":{}}],["xgroupcreate",{"_index":316,"name":{"463":{},"997":{}},"parent":{}}],["xgroupcreateconsumer",{"_index":318,"name":{"465":{},"999":{}},"parent":{}}],["xgroupdelconsumer",{"_index":320,"name":{"467":{},"1001":{}},"parent":{}}],["xgroupdestroy",{"_index":322,"name":{"469":{},"1003":{}},"parent":{}}],["xgroupsetid",{"_index":324,"name":{"471":{},"1005":{}},"parent":{}}],["xinfo_consumers",{"_index":325,"name":{"472":{},"1006":{}},"parent":{}}],["xinfo_groups",{"_index":327,"name":{"474":{},"1008":{}},"parent":{}}],["xinfo_stream",{"_index":329,"name":{"476":{},"1010":{}},"parent":{}}],["xinfoconsumers",{"_index":326,"name":{"473":{},"1007":{}},"parent":{}}],["xinfogroups",{"_index":328,"name":{"475":{},"1009":{}},"parent":{}}],["xinfostream",{"_index":330,"name":{"477":{},"1011":{}},"parent":{}}],["xlen",{"_index":331,"name":{"478":{},"479":{},"1012":{},"1013":{}},"parent":{}}],["xpending",{"_index":334,"name":{"482":{},"483":{},"1016":{},"1017":{}},"parent":{}}],["xpending_range",{"_index":332,"name":{"480":{},"1014":{}},"parent":{}}],["xpendingrange",{"_index":333,"name":{"481":{},"1015":{}},"parent":{}}],["xrange",{"_index":335,"name":{"484":{},"485":{},"1018":{},"1019":{}},"parent":{}}],["xread",{"_index":336,"name":{"486":{},"487":{},"1020":{},"1021":{}},"parent":{}}],["xreadgroup",{"_index":337,"name":{"488":{},"489":{},"1022":{},"1023":{}},"parent":{}}],["xreadgroupoptions",{"_index":820,"name":{"2035":{}},"parent":{}}],["xreadgroupstream",{"_index":817,"name":{"2032":{}},"parent":{}}],["xrevrange",{"_index":338,"name":{"490":{},"491":{},"1024":{},"1025":{}},"parent":{}}],["xtrim",{"_index":339,"name":{"492":{},"493":{},"1026":{},"1027":{}},"parent":{}}],["zadd",{"_index":340,"name":{"494":{},"495":{},"1028":{},"1029":{}},"parent":{}}],["zcard",{"_index":341,"name":{"496":{},"497":{},"1030":{},"1031":{}},"parent":{}}],["zcount",{"_index":342,"name":{"498":{},"499":{},"1032":{},"1033":{}},"parent":{}}],["zdiff",{"_index":345,"name":{"502":{},"503":{},"1036":{},"1037":{}},"parent":{}}],["zdiff_withscores",{"_index":343,"name":{"500":{},"1034":{}},"parent":{}}],["zdiffstore",{"_index":346,"name":{"504":{},"505":{},"1038":{},"1039":{}},"parent":{}}],["zdiffwithscores",{"_index":344,"name":{"501":{},"1035":{}},"parent":{}}],["zincrby",{"_index":347,"name":{"506":{},"507":{},"1040":{},"1041":{}},"parent":{}}],["zinter",{"_index":350,"name":{"510":{},"511":{},"1044":{},"1045":{}},"parent":{}}],["zinter_withscores",{"_index":348,"name":{"508":{},"1042":{}},"parent":{}}],["zinterstore",{"_index":351,"name":{"512":{},"513":{},"1046":{},"1047":{}},"parent":{}}],["zinterwithscores",{"_index":349,"name":{"509":{},"1043":{}},"parent":{}}],["zlexcount",{"_index":352,"name":{"514":{},"515":{},"1048":{},"1049":{}},"parent":{}}],["zmember",{"_index":903,"name":{"2230":{}},"parent":{}}],["zmscore",{"_index":353,"name":{"516":{},"517":{},"1050":{},"1051":{}},"parent":{}}],["zpopmax",{"_index":356,"name":{"520":{},"521":{},"1054":{},"1055":{}},"parent":{}}],["zpopmax_count",{"_index":354,"name":{"518":{},"1052":{}},"parent":{}}],["zpopmaxcount",{"_index":355,"name":{"519":{},"1053":{}},"parent":{}}],["zpopmin",{"_index":359,"name":{"524":{},"525":{},"1058":{},"1059":{}},"parent":{}}],["zpopmin_count",{"_index":357,"name":{"522":{},"1056":{}},"parent":{}}],["zpopmincount",{"_index":358,"name":{"523":{},"1057":{}},"parent":{}}],["zrandmember",{"_index":364,"name":{"530":{},"531":{},"1064":{},"1065":{}},"parent":{}}],["zrandmember_count",{"_index":362,"name":{"528":{},"1062":{}},"parent":{}}],["zrandmember_count_withscores",{"_index":360,"name":{"526":{},"1060":{}},"parent":{}}],["zrandmembercount",{"_index":363,"name":{"529":{},"1063":{}},"parent":{}}],["zrandmembercountwithscores",{"_index":361,"name":{"527":{},"1061":{}},"parent":{}}],["zrange",{"_index":367,"name":{"534":{},"535":{},"1068":{},"1069":{}},"parent":{}}],["zrange_withscores",{"_index":365,"name":{"532":{},"1066":{}},"parent":{}}],["zrangebylex",{"_index":368,"name":{"536":{},"537":{},"1070":{},"1071":{}},"parent":{}}],["zrangebylexoptions",{"_index":847,"name":{"2126":{}},"parent":{}}],["zrangebyscore",{"_index":371,"name":{"540":{},"541":{},"1074":{},"1075":{}},"parent":{}}],["zrangebyscore_withscores",{"_index":369,"name":{"538":{},"1072":{}},"parent":{}}],["zrangebyscoreoptions",{"_index":853,"name":{"2136":{}},"parent":{}}],["zrangebyscorewithscores",{"_index":370,"name":{"539":{},"1073":{}},"parent":{}}],["zrangestore",{"_index":372,"name":{"542":{},"543":{},"1076":{},"1077":{}},"parent":{}}],["zrangewithscores",{"_index":366,"name":{"533":{},"1067":{}},"parent":{}}],["zrank",{"_index":373,"name":{"544":{},"545":{},"1078":{},"1079":{}},"parent":{}}],["zrem",{"_index":374,"name":{"546":{},"547":{},"1080":{},"1081":{}},"parent":{}}],["zremrangebylex",{"_index":375,"name":{"548":{},"549":{},"1082":{},"1083":{}},"parent":{}}],["zremrangebyrank",{"_index":376,"name":{"550":{},"551":{},"1084":{},"1085":{}},"parent":{}}],["zremrangebyscore",{"_index":377,"name":{"552":{},"553":{},"1086":{},"1087":{}},"parent":{}}],["zrevrank",{"_index":378,"name":{"554":{},"555":{},"1088":{},"1089":{}},"parent":{}}],["zscan",{"_index":379,"name":{"556":{},"557":{},"1090":{},"1091":{}},"parent":{}}],["zscaniterator",{"_index":438,"name":{"648":{}},"parent":{}}],["zscore",{"_index":380,"name":{"558":{},"559":{},"1092":{},"1093":{}},"parent":{}}],["zunion",{"_index":383,"name":{"562":{},"563":{},"1096":{},"1097":{}},"parent":{}}],["zunion_withscores",{"_index":381,"name":{"560":{},"1094":{}},"parent":{}}],["zunionstore",{"_index":384,"name":{"564":{},"565":{},"1098":{},"1099":{}},"parent":{}}],["zunionwithscores",{"_index":382,"name":{"561":{},"1095":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/documentation/client/assets/style.css b/documentation/client/assets/style.css new file mode 100644 index 0000000000..28f90b673c --- /dev/null +++ b/documentation/client/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/documentation/client/assets/widgets.png b/documentation/client/assets/widgets.png new file mode 100644 index 0000000000..c7380532ac Binary files /dev/null and b/documentation/client/assets/widgets.png differ diff --git a/documentation/client/assets/widgets@2x.png b/documentation/client/assets/widgets@2x.png new file mode 100644 index 0000000000..4bbbd57272 Binary files /dev/null and b/documentation/client/assets/widgets@2x.png differ diff --git a/documentation/client/classes/lib_client.default.html b/documentation/client/classes/lib_client.default.html new file mode 100644 index 0000000000..3b4dcc8e4a --- /dev/null +++ b/documentation/client/classes/lib_client.default.html @@ -0,0 +1,205 @@ +default | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

Hierarchy

  • EventEmitter
    • default

Index

Constructors

constructor

Properties

Private Readonly #isolationPool

#isolationPool: Pool<RedisClientType<M, S>>

Private Optional Readonly #options

#options?: RedisClientOptions<M, S>

Private Readonly #queue

#queue: default

Private #selectedDB

#selectedDB: number = 0

Private Readonly #socket

#socket: default

Private Readonly #v4

#v4: Record<string, any> = {}

pSubscribe

pSubscribe: <T>(patterns: string | string[], listener: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T) => Promise<void> = ...

Type declaration

    • <T>(patterns: string | string[], listener: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>
    • Type parameters

      • T: boolean = false

      Parameters

      • patterns: string | string[]
      • listener: PubSubListener<T, T extends true ? Buffer : string>
      • Optional bufferMode: T

      Returns Promise<void>

pUnsubscribe

pUnsubscribe: <T>(patterns?: string | string[], listener?: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T) => Promise<void> = ...

Type declaration

    • <T>(patterns?: string | string[], listener?: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>
    • Type parameters

      • T: boolean = false

      Parameters

      • Optional patterns: string | string[]
      • Optional listener: PubSubListener<T, T extends true ? Buffer : string>
      • Optional bufferMode: T

      Returns Promise<void>

quit

quit: () => Promise<void> = ...

Type declaration

    • (): Promise<void>
    • Returns Promise<void>

select

select: { (db: number): Promise<void>; (options: CommandOptions<ClientCommandOptions>, db: number): Promise<void> } = ...

Type declaration

subscribe

subscribe: <T>(channels: string | string[], listener: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T) => Promise<void> = ...

Type declaration

    • <T>(channels: string | string[], listener: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>
    • Type parameters

      • T: boolean = false

      Parameters

      • channels: string | string[]
      • listener: PubSubListener<T, T extends true ? Buffer : string>
      • Optional bufferMode: T

      Returns Promise<void>

unsubscribe

unsubscribe: <T>(channels?: string | string[], listener?: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T) => Promise<void> = ...

Type declaration

    • <T>(channels?: string | string[], listener?: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>
    • Type parameters

      • T: boolean = false

      Parameters

      • Optional channels: string | string[]
      • Optional listener: PubSubListener<T, T extends true ? Buffer : string>
      • Optional bufferMode: T

      Returns Promise<void>

Static Readonly captureRejectionSymbol

captureRejectionSymbol: typeof captureRejectionSymbol

Static captureRejections

captureRejections: boolean
+

Sets or gets the default captureRejection value for all emitters.

+

Static defaultMaxListeners

defaultMaxListeners: number

Static Readonly errorMonitor

errorMonitor: typeof errorMonitor
+

This symbol shall be used to install a listener for only monitoring 'error' +events. Listeners installed using this symbol are called before the regular +'error' listeners are called.

+

Installing a listener using this symbol does not change the behavior once an +'error' event is emitted, therefore the process will still crash if no +regular 'error' listener is installed.

+

Accessors

isOpen

  • get isOpen(): boolean

options

v4

  • get v4(): Record<string, any>

Methods

Private #defineLegacyCommand

  • #defineLegacyCommand(name: string): void

Private #destroyIsolationPool

  • #destroyIsolationPool(): Promise<void>

Private #initiateOptions

Private #initiateQueue

Private #initiateSocket

Private #legacyMode

  • #legacyMode(): void

Private #sendCommand

Private #subscribe

Private #tick

  • #tick(force?: boolean): void

Private #unsubscribe

PSUBSCRIBE

  • PSUBSCRIBE<T>(patterns: string | string[], listener: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>

PUNSUBSCRIBE

  • PUNSUBSCRIBE<T>(patterns?: string | string[], listener?: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>

QUIT

  • QUIT(): Promise<void>

SELECT

SUBSCRIBE

  • SUBSCRIBE<T>(channels: string | string[], listener: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>

UNSUBSCRIBE

  • UNSUBSCRIBE<T>(channels?: string | string[], listener?: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>

addListener

  • addListener(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Alias for emitter.on(eventName, listener).

    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

commandsExecutor

connect

  • connect(): Promise<void>

disconnect

  • disconnect(): Promise<void>

duplicate

emit

  • emit(eventName: string | symbol, ...args: any[]): boolean
  • +

    Synchronously calls each of the listeners registered for the event namedeventName, in the order they were registered, passing the supplied arguments +to each.

    +

    Returns true if the event had listeners, false otherwise.

    +
    const EventEmitter = require('events');
    const myEmitter = new EventEmitter();

    // First listener
    myEmitter.on('event', function firstListener() {
    console.log('Helloooo! first listener');
    });
    // Second listener
    myEmitter.on('event', function secondListener(arg1, arg2) {
    console.log(`event with parameters ${arg1}, ${arg2} in second listener`);
    });
    // Third listener
    myEmitter.on('event', function thirdListener(...args) {
    const parameters = args.join(', ');
    console.log(`event with parameters ${parameters} in third listener`);
    });

    console.log(myEmitter.listeners('event'));

    myEmitter.emit('event', 1, 2, 3, 4, 5);

    // Prints:
    // [
    // [Function: firstListener],
    // [Function: secondListener],
    // [Function: thirdListener]
    // ]
    // Helloooo! first listener
    // event with parameters 1, 2 in second listener
    // event with parameters 1, 2, 3, 4, 5 in third listener +
    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • Rest ...args: any[]

    Returns boolean

eventNames

  • eventNames(): (string | symbol)[]
  • +

    Returns an array listing the events for which the emitter has registered +listeners. The values in the array are strings or Symbols.

    +
    const EventEmitter = require('events');
    const myEE = new EventEmitter();
    myEE.on('foo', () => {});
    myEE.on('bar', () => {});

    const sym = Symbol('symbol');
    myEE.on(sym, () => {});

    console.log(myEE.eventNames());
    // Prints: [ 'foo', 'bar', Symbol(symbol) ] +
    +
    since

    v6.0.0

    +

    Returns (string | symbol)[]

executeIsolated

  • executeIsolated<T>(fn: (client: RedisClientType<M, S>) => T | Promise<T>): Promise<T>

executeScript

getMaxListeners

  • getMaxListeners(): number
  • +

    Returns the current max listener value for the EventEmitter which is either +set by emitter.setMaxListeners(n) or defaults to defaultMaxListeners.

    +
    since

    v1.0.0

    +

    Returns number

hScanIterator

listenerCount

  • listenerCount(eventName: string | symbol): number
  • +

    Returns the number of listeners listening to the event named eventName.

    +
    since

    v3.2.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event being listened for

      +

    Returns number

listeners

  • listeners(eventName: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName.

    +
    server.on('connection', (stream) => {
    console.log('someone connected!');
    });
    console.log(util.inspect(server.listeners('connection')));
    // Prints: [ [Function] ] +
    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol

    Returns Function[]

multi

multiExecutor

off

  • off(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Alias for emitter.removeListener().

    +
    since

    v10.0.0

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

on

  • on(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Adds the listener function to the end of the listeners array for the +event named eventName. No checks are made to see if the listener has +already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple +times.

    +
    server.on('connection', (stream) => {
    console.log('someone connected!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +

    By default, event listeners are invoked in the order they are added. Theemitter.prependListener() method can be used as an alternative to add the +event listener to the beginning of the listeners array.

    +
    const myEE = new EventEmitter();
    myEE.on('foo', () => console.log('a'));
    myEE.prependListener('foo', () => console.log('b'));
    myEE.emit('foo');
    // Prints:
    // b
    // a +
    +
    since

    v0.1.101

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

once

  • once(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Adds a one-timelistener function for the event named eventName. The +next time eventName is triggered, this listener is removed and then invoked.

    +
    server.once('connection', (stream) => {
    console.log('Ah, we have our first user!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +

    By default, event listeners are invoked in the order they are added. Theemitter.prependOnceListener() method can be used as an alternative to add the +event listener to the beginning of the listeners array.

    +
    const myEE = new EventEmitter();
    myEE.once('foo', () => console.log('a'));
    myEE.prependOnceListener('foo', () => console.log('b'));
    myEE.emit('foo');
    // Prints:
    // b
    // a +
    +
    since

    v0.3.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

prependListener

  • prependListener(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Adds the listener function to the beginning of the listeners array for the +event named eventName. No checks are made to see if the listener has +already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple +times.

    +
    server.prependListener('connection', (stream) => {
    console.log('someone connected!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v6.0.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

prependOnceListener

  • prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Adds a one-timelistener function for the event named eventName to the_beginning_ of the listeners array. The next time eventName is triggered, this +listener is removed, and then invoked.

    +
    server.prependOnceListener('connection', (stream) => {
    console.log('Ah, we have our first user!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v6.0.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

rawListeners

  • rawListeners(eventName: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName, +including any wrappers (such as those created by .once()).

    +
    const emitter = new EventEmitter();
    emitter.once('log', () => console.log('log once'));

    // Returns a new Array with a function `onceWrapper` which has a property
    // `listener` which contains the original listener bound above
    const listeners = emitter.rawListeners('log');
    const logFnWrapper = listeners[0];

    // Logs "log once" to the console and does not unbind the `once` event
    logFnWrapper.listener();

    // Logs "log once" to the console and removes the listener
    logFnWrapper();

    emitter.on('log', () => console.log('log persistently'));
    // Will return a new Array with a single function bound by `.on()` above
    const newListeners = emitter.rawListeners('log');

    // Logs "log persistently" twice
    newListeners[0]();
    emitter.emit('log'); +
    +
    since

    v9.4.0

    +

    Parameters

    • eventName: string | symbol

    Returns Function[]

removeAllListeners

  • removeAllListeners(event?: string | symbol): default<M, S>
  • +

    Removes all listeners, or those of the specified eventName.

    +

    It is bad practice to remove listeners added elsewhere in the code, +particularly when the EventEmitter instance was created by some other +component or module (e.g. sockets or file streams).

    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.1.26

    +

    Parameters

    • Optional event: string | symbol

    Returns default<M, S>

removeListener

  • removeListener(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Removes the specified listener from the listener array for the event namedeventName.

    +
    const callback = (stream) => {
    console.log('someone connected!');
    };
    server.on('connection', callback);
    // ...
    server.removeListener('connection', callback); +
    +

    removeListener() will remove, at most, one instance of a listener from the +listener array. If any single listener has been added multiple times to the +listener array for the specified eventName, then removeListener() must be +called multiple times to remove each instance.

    +

    Once an event is emitted, all listeners attached to it at the +time of emitting are called in order. This implies that anyremoveListener() or removeAllListeners() calls after emitting and_before_ the last listener finishes execution will +not remove them fromemit() in progress. Subsequent events behave as expected.

    +
    const myEmitter = new MyEmitter();

    const callbackA = () => {
    console.log('A');
    myEmitter.removeListener('event', callbackB);
    };

    const callbackB = () => {
    console.log('B');
    };

    myEmitter.on('event', callbackA);

    myEmitter.on('event', callbackB);

    // callbackA removes listener callbackB but it will still be called.
    // Internal listener array at time of emit [callbackA, callbackB]
    myEmitter.emit('event');
    // Prints:
    // A
    // B

    // callbackB is now removed.
    // Internal listener array [callbackA]
    myEmitter.emit('event');
    // Prints:
    // A +
    +

    Because listeners are managed using an internal array, calling this will +change the position indices of any listener registered after the listener +being removed. This will not impact the order in which listeners are called, +but it means that any copies of the listener array as returned by +the emitter.listeners() method will need to be recreated.

    +

    When a single function has been added as a handler multiple times for a single +event (as in the example below), removeListener() will remove the most +recently added instance. In the example the once('ping')listener is removed:

    +
    const ee = new EventEmitter();

    function pong() {
    console.log('pong');
    }

    ee.on('ping', pong);
    ee.once('ping', pong);
    ee.removeListener('ping', pong);

    ee.emit('ping');
    ee.emit('ping'); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

sScanIterator

  • sScanIterator(key: string, options?: ScanOptions): AsyncIterable<string>

scanIterator

scriptsExecutor

sendCommand

setMaxListeners

  • setMaxListeners(n: number): default<M, S>
  • +

    By default EventEmitters will print a warning if more than 10 listeners are +added for a particular event. This is a useful default that helps finding +memory leaks. The emitter.setMaxListeners() method allows the limit to be +modified for this specific EventEmitter instance. The value can be set toInfinity (or 0) to indicate an unlimited number of listeners.

    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.3.5

    +

    Parameters

    • n: number

    Returns default<M, S>

zScanIterator

Static commandOptions

Static create

Static extend

Static getEventListeners

  • getEventListeners(emitter: EventEmitter | DOMEventTarget, name: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName.

    +

    For EventEmitters this behaves exactly the same as calling .listeners on +the emitter.

    +

    For EventTargets this is the only way to get the event listeners for the +event target. This is useful for debugging and diagnostic purposes.

    +
    const { getEventListeners, EventEmitter } = require('events');

    {
    const ee = new EventEmitter();
    const listener = () => console.log('Events are fun');
    ee.on('foo', listener);
    getEventListeners(ee, 'foo'); // [listener]
    }
    {
    const et = new EventTarget();
    const listener = () => console.log('Events are fun');
    et.addEventListener('foo', listener);
    getEventListeners(et, 'foo'); // [listener]
    } +
    +
    since

    v15.2.0

    +

    Parameters

    • emitter: EventEmitter | DOMEventTarget
    • name: string | symbol

    Returns Function[]

Static listenerCount

  • listenerCount(emitter: EventEmitter, eventName: string | symbol): number
  • +

    A class method that returns the number of listeners for the given eventNameregistered on the given emitter.

    +
    const { EventEmitter, listenerCount } = require('events');
    const myEmitter = new EventEmitter();
    myEmitter.on('event', () => {});
    myEmitter.on('event', () => {});
    console.log(listenerCount(myEmitter, 'event'));
    // Prints: 2 +
    +
    since

    v0.9.12

    +
    deprecated

    Since v3.2.0 - Use listenerCount instead.

    +

    Parameters

    • emitter: EventEmitter
      +

      The emitter to query

      +
    • eventName: string | symbol
      +

      The event name

      +

    Returns number

Static on

  • on(emitter: EventEmitter, eventName: string, options?: StaticEventEmitterOptions): AsyncIterableIterator<any>
  • +

    ```js +const { on, EventEmitter } = require('events');

    +

    (async () => { + const ee = new EventEmitter();

    +

    // Emit later on + process.nextTick(() => { + ee.emit('foo', 'bar'); + ee.emit('foo', 42); + });

    +

    for await (const event of on(ee, 'foo')) { + // The execution of this inner block is synchronous and it + // processes one event at a time (even with await). Do not use + // if concurrent execution is required. + console.log(event); // prints ['bar'] [42] + } + // Unreachable here +})();

    +

    Returns an `AsyncIterator` that iterates `eventName` events. It will throw
    if the `EventEmitter` emits `'error'`. It removes all listeners when
    exiting the loop. The `value` returned by each iteration is an array
    composed of the emitted event arguments.

    An `AbortSignal` can be used to cancel waiting on events:

    ```js
    const { on, EventEmitter } = require('events');
    const ac = new AbortController();

    (async () => {
    const ee = new EventEmitter();

    // Emit later on
    process.nextTick(() => {
    ee.emit('foo', 'bar');
    ee.emit('foo', 42);
    });

    for await (const event of on(ee, 'foo', { signal: ac.signal })) {
    // The execution of this inner block is synchronous and it
    // processes one event at a time (even with await). Do not use
    // if concurrent execution is required.
    console.log(event); // prints ['bar'] [42]
    }
    // Unreachable here
    })();

    process.nextTick(() => ac.abort()); +
    +
    since

    v13.6.0, v12.16.0

    +

    Parameters

    • emitter: EventEmitter
    • eventName: string
      +

      The name of the event being listened for

      +
    • Optional options: StaticEventEmitterOptions

    Returns AsyncIterableIterator<any>

    that iterates eventName events emitted by the emitter

    +

Static once

  • once(emitter: NodeEventTarget, eventName: string | symbol, options?: StaticEventEmitterOptions): Promise<any[]>
  • once(emitter: DOMEventTarget, eventName: string, options?: StaticEventEmitterOptions): Promise<any[]>
  • +

    Creates a Promise that is fulfilled when the EventEmitter emits the given +event or that is rejected if the EventEmitter emits 'error' while waiting. +The Promise will resolve with an array of all the arguments emitted to the +given event.

    +

    This method is intentionally generic and works with the web platform EventTarget interface, which has no special'error' event +semantics and does not listen to the 'error' event.

    +
    const { once, EventEmitter } = require('events');

    async function run() {
    const ee = new EventEmitter();

    process.nextTick(() => {
    ee.emit('myevent', 42);
    });

    const [value] = await once(ee, 'myevent');
    console.log(value);

    const err = new Error('kaboom');
    process.nextTick(() => {
    ee.emit('error', err);
    });

    try {
    await once(ee, 'myevent');
    } catch (err) {
    console.log('error happened', err);
    }
    }

    run(); +
    +

    The special handling of the 'error' event is only used when events.once()is used to wait for another event. If events.once() is used to wait for the +'error' event itself, then it is treated as any other kind of event without +special handling:

    +
    const { EventEmitter, once } = require('events');

    const ee = new EventEmitter();

    once(ee, 'error')
    .then(([err]) => console.log('ok', err.message))
    .catch((err) => console.log('error', err.message));

    ee.emit('error', new Error('boom'));

    // Prints: ok boom +
    +

    An AbortSignal can be used to cancel waiting for the event:

    +
    const { EventEmitter, once } = require('events');

    const ee = new EventEmitter();
    const ac = new AbortController();

    async function foo(emitter, event, signal) {
    try {
    await once(emitter, event, { signal });
    console.log('event emitted!');
    } catch (error) {
    if (error.name === 'AbortError') {
    console.error('Waiting for the event was canceled!');
    } else {
    console.error('There was an error', error.message);
    }
    }
    }

    foo(ee, 'foo', ac.signal);
    ac.abort(); // Abort waiting for the event
    ee.emit('foo'); // Prints: Waiting for the event was canceled! +
    +
    since

    v11.13.0, v10.16.0

    +

    Parameters

    • emitter: NodeEventTarget
    • eventName: string | symbol
    • Optional options: StaticEventEmitterOptions

    Returns Promise<any[]>

  • Parameters

    • emitter: DOMEventTarget
    • eventName: string
    • Optional options: StaticEventEmitterOptions

    Returns Promise<any[]>

Static parseURL

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Private property
  • Private method
  • Enumeration
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_client_commands_queue.default.html b/documentation/client/classes/lib_client_commands_queue.default.html new file mode 100644 index 0000000000..4cec643a1a --- /dev/null +++ b/documentation/client/classes/lib_client_commands_queue.default.html @@ -0,0 +1 @@ +default | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • default

Index

Constructors

constructor

  • new default(maxLength: undefined | null | number): default

Properties

Private #chainInExecution

#chainInExecution: undefined | symbol

Private Readonly #maxLength

#maxLength: undefined | null | number

Private Readonly #parser

#parser: any = ...

Private #pubSubState

#pubSubState: undefined | PubSubState

Private Readonly #waitingForReply

#waitingForReply: Yallist<CommandWaitingForReply> = ...

Private Readonly #waitingToBeSent

#waitingToBeSent: Yallist<CommandWaitingToBeSent> = ...

Static Private Readonly #PUB_SUB_MESSAGES

#PUB_SUB_MESSAGES: { message: Buffer; pMessage: Buffer; pSubscribe: Buffer; pUnsubscribe: Buffer; subscribe: Buffer; unsubscribe: Buffer } = ...

Type declaration

  • message: Buffer
  • pMessage: Buffer
  • pSubscribe: Buffer
  • pUnsubscribe: Buffer
  • subscribe: Buffer
  • unsubscribe: Buffer

Methods

Private #initiatePubSubState

  • #initiatePubSubState(): PubSubState

Private #pushPubSubCommand

Private #shiftWaitingForReply

  • #shiftWaitingForReply(): CommandWaitingForReply

addCommand

flushAll

  • flushAll(err: Error): void

flushWaitingForReply

  • flushWaitingForReply(err: Error): void

getCommandToSend

parseResponse

  • parseResponse(data: Buffer): void

resubscribe

  • resubscribe(): undefined | Promise<any>

subscribe

  • subscribe<T>(command: PubSubSubscribeCommands, channels: PubSubArgumentTypes | PubSubArgumentTypes[], listener: PubSubListener<T, T extends true ? Buffer : string>, bufferMode?: T): Promise<void>

unsubscribe

Static Private #emitPubSubMessage

  • #emitPubSubMessage(listenersMap: PubSubListenersMap, message: Buffer, channel: Buffer, pattern?: Buffer): void

Static Private #flushQueue

  • #flushQueue<T>(queue: Yallist<T>, err: Error): void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Method
  • Interface
  • Interface with type parameter
  • Private property
  • Private method
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_client_multi_command.default.html b/documentation/client/classes/lib_client_multi_command.default.html new file mode 100644 index 0000000000..f4f5c3128d --- /dev/null +++ b/documentation/client/classes/lib_client_multi_command.default.html @@ -0,0 +1 @@ +default | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • default

Index

Constructors

constructor

Properties

Private Readonly #executor

Private Readonly #multi

#multi: default = ...

EXEC

EXEC: (execAsPipeline?: boolean) => Promise<RedisCommandRawReply[]> = ...

Type declaration

Readonly v4

v4: Record<string, any> = {}

Methods

Private #defineLegacyCommand

  • #defineLegacyCommand(name: string): void

Private #legacyMode

  • #legacyMode(): void

addCommand

commandsExecutor

exec

execAsPipeline

scriptsExecutor

Static extend

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Private property
  • Private method
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_client_socket.default.html b/documentation/client/classes/lib_client_socket.default.html new file mode 100644 index 0000000000..bab7561ed2 --- /dev/null +++ b/documentation/client/classes/lib_client_socket.default.html @@ -0,0 +1,205 @@ +default | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • EventEmitter
    • default

Index

Constructors

constructor

Properties

Private Optional Readonly #initiator

Private #isCorked

#isCorked: boolean = false

Private #isOpen

#isOpen: boolean = false

Private #isReady

#isReady: boolean = false

Private Readonly #options

Private Optional #socket

#socket?: Socket | TLSSocket

Private #writableNeedDrain

#writableNeedDrain: boolean = false

Static Readonly captureRejectionSymbol

captureRejectionSymbol: typeof captureRejectionSymbol

Static captureRejections

captureRejections: boolean
+

Sets or gets the default captureRejection value for all emitters.

+

Static defaultMaxListeners

defaultMaxListeners: number

Static Readonly errorMonitor

errorMonitor: typeof errorMonitor
+

This symbol shall be used to install a listener for only monitoring 'error' +events. Listeners installed using this symbol are called before the regular +'error' listeners are called.

+

Installing a listener using this symbol does not change the behavior once an +'error' event is emitted, therefore the process will still crash if no +regular 'error' listener is installed.

+

Accessors

isOpen

  • get isOpen(): boolean

isReady

  • get isReady(): boolean

writableNeedDrain

  • get writableNeedDrain(): boolean

Methods

Private #connect

  • #connect(hadError?: boolean): Promise<void>

Private #createNetSocket

  • #createNetSocket(): CreateSocketReturn<Socket>

Private #createSocket

  • #createSocket(): Promise<Socket | TLSSocket>

Private #createTlsSocket

  • #createTlsSocket(): CreateSocketReturn<TLSSocket>

Private #onSocketError

  • #onSocketError(err: Error): void

Private #retryConnection

  • #retryConnection(retries: number, hadError?: boolean): Promise<Socket | TLSSocket>

addListener

  • addListener(eventName: string | symbol, listener: (...args: any[]) => void): default
  • +

    Alias for emitter.on(eventName, listener).

    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default

connect

  • connect(): Promise<void>

cork

  • cork(): void

disconnect

  • disconnect(): void

emit

  • emit(eventName: string | symbol, ...args: any[]): boolean
  • +

    Synchronously calls each of the listeners registered for the event namedeventName, in the order they were registered, passing the supplied arguments +to each.

    +

    Returns true if the event had listeners, false otherwise.

    +
    const EventEmitter = require('events');
    const myEmitter = new EventEmitter();

    // First listener
    myEmitter.on('event', function firstListener() {
    console.log('Helloooo! first listener');
    });
    // Second listener
    myEmitter.on('event', function secondListener(arg1, arg2) {
    console.log(`event with parameters ${arg1}, ${arg2} in second listener`);
    });
    // Third listener
    myEmitter.on('event', function thirdListener(...args) {
    const parameters = args.join(', ');
    console.log(`event with parameters ${parameters} in third listener`);
    });

    console.log(myEmitter.listeners('event'));

    myEmitter.emit('event', 1, 2, 3, 4, 5);

    // Prints:
    // [
    // [Function: firstListener],
    // [Function: secondListener],
    // [Function: thirdListener]
    // ]
    // Helloooo! first listener
    // event with parameters 1, 2 in second listener
    // event with parameters 1, 2, 3, 4, 5 in third listener +
    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • Rest ...args: any[]

    Returns boolean

eventNames

  • eventNames(): (string | symbol)[]
  • +

    Returns an array listing the events for which the emitter has registered +listeners. The values in the array are strings or Symbols.

    +
    const EventEmitter = require('events');
    const myEE = new EventEmitter();
    myEE.on('foo', () => {});
    myEE.on('bar', () => {});

    const sym = Symbol('symbol');
    myEE.on(sym, () => {});

    console.log(myEE.eventNames());
    // Prints: [ 'foo', 'bar', Symbol(symbol) ] +
    +
    since

    v6.0.0

    +

    Returns (string | symbol)[]

getMaxListeners

  • getMaxListeners(): number
  • +

    Returns the current max listener value for the EventEmitter which is either +set by emitter.setMaxListeners(n) or defaults to defaultMaxListeners.

    +
    since

    v1.0.0

    +

    Returns number

listenerCount

  • listenerCount(eventName: string | symbol): number
  • +

    Returns the number of listeners listening to the event named eventName.

    +
    since

    v3.2.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event being listened for

      +

    Returns number

listeners

  • listeners(eventName: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName.

    +
    server.on('connection', (stream) => {
    console.log('someone connected!');
    });
    console.log(util.inspect(server.listeners('connection')));
    // Prints: [ [Function] ] +
    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol

    Returns Function[]

off

  • off(eventName: string | symbol, listener: (...args: any[]) => void): default
  • +

    Alias for emitter.removeListener().

    +
    since

    v10.0.0

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default

on

  • on(eventName: string | symbol, listener: (...args: any[]) => void): default
  • +

    Adds the listener function to the end of the listeners array for the +event named eventName. No checks are made to see if the listener has +already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple +times.

    +
    server.on('connection', (stream) => {
    console.log('someone connected!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +

    By default, event listeners are invoked in the order they are added. Theemitter.prependListener() method can be used as an alternative to add the +event listener to the beginning of the listeners array.

    +
    const myEE = new EventEmitter();
    myEE.on('foo', () => console.log('a'));
    myEE.prependListener('foo', () => console.log('b'));
    myEE.emit('foo');
    // Prints:
    // b
    // a +
    +
    since

    v0.1.101

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default

once

  • once(eventName: string | symbol, listener: (...args: any[]) => void): default
  • +

    Adds a one-timelistener function for the event named eventName. The +next time eventName is triggered, this listener is removed and then invoked.

    +
    server.once('connection', (stream) => {
    console.log('Ah, we have our first user!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +

    By default, event listeners are invoked in the order they are added. Theemitter.prependOnceListener() method can be used as an alternative to add the +event listener to the beginning of the listeners array.

    +
    const myEE = new EventEmitter();
    myEE.once('foo', () => console.log('a'));
    myEE.prependOnceListener('foo', () => console.log('b'));
    myEE.emit('foo');
    // Prints:
    // b
    // a +
    +
    since

    v0.3.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default

prependListener

  • prependListener(eventName: string | symbol, listener: (...args: any[]) => void): default
  • +

    Adds the listener function to the beginning of the listeners array for the +event named eventName. No checks are made to see if the listener has +already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple +times.

    +
    server.prependListener('connection', (stream) => {
    console.log('someone connected!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v6.0.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default

prependOnceListener

  • prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): default
  • +

    Adds a one-timelistener function for the event named eventName to the_beginning_ of the listeners array. The next time eventName is triggered, this +listener is removed, and then invoked.

    +
    server.prependOnceListener('connection', (stream) => {
    console.log('Ah, we have our first user!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v6.0.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default

quit

  • quit(fn: () => Promise<unknown>): Promise<void>

rawListeners

  • rawListeners(eventName: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName, +including any wrappers (such as those created by .once()).

    +
    const emitter = new EventEmitter();
    emitter.once('log', () => console.log('log once'));

    // Returns a new Array with a function `onceWrapper` which has a property
    // `listener` which contains the original listener bound above
    const listeners = emitter.rawListeners('log');
    const logFnWrapper = listeners[0];

    // Logs "log once" to the console and does not unbind the `once` event
    logFnWrapper.listener();

    // Logs "log once" to the console and removes the listener
    logFnWrapper();

    emitter.on('log', () => console.log('log persistently'));
    // Will return a new Array with a single function bound by `.on()` above
    const newListeners = emitter.rawListeners('log');

    // Logs "log persistently" twice
    newListeners[0]();
    emitter.emit('log'); +
    +
    since

    v9.4.0

    +

    Parameters

    • eventName: string | symbol

    Returns Function[]

removeAllListeners

  • removeAllListeners(event?: string | symbol): default
  • +

    Removes all listeners, or those of the specified eventName.

    +

    It is bad practice to remove listeners added elsewhere in the code, +particularly when the EventEmitter instance was created by some other +component or module (e.g. sockets or file streams).

    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.1.26

    +

    Parameters

    • Optional event: string | symbol

    Returns default

removeListener

  • removeListener(eventName: string | symbol, listener: (...args: any[]) => void): default
  • +

    Removes the specified listener from the listener array for the event namedeventName.

    +
    const callback = (stream) => {
    console.log('someone connected!');
    };
    server.on('connection', callback);
    // ...
    server.removeListener('connection', callback); +
    +

    removeListener() will remove, at most, one instance of a listener from the +listener array. If any single listener has been added multiple times to the +listener array for the specified eventName, then removeListener() must be +called multiple times to remove each instance.

    +

    Once an event is emitted, all listeners attached to it at the +time of emitting are called in order. This implies that anyremoveListener() or removeAllListeners() calls after emitting and_before_ the last listener finishes execution will +not remove them fromemit() in progress. Subsequent events behave as expected.

    +
    const myEmitter = new MyEmitter();

    const callbackA = () => {
    console.log('A');
    myEmitter.removeListener('event', callbackB);
    };

    const callbackB = () => {
    console.log('B');
    };

    myEmitter.on('event', callbackA);

    myEmitter.on('event', callbackB);

    // callbackA removes listener callbackB but it will still be called.
    // Internal listener array at time of emit [callbackA, callbackB]
    myEmitter.emit('event');
    // Prints:
    // A
    // B

    // callbackB is now removed.
    // Internal listener array [callbackA]
    myEmitter.emit('event');
    // Prints:
    // A +
    +

    Because listeners are managed using an internal array, calling this will +change the position indices of any listener registered after the listener +being removed. This will not impact the order in which listeners are called, +but it means that any copies of the listener array as returned by +the emitter.listeners() method will need to be recreated.

    +

    When a single function has been added as a handler multiple times for a single +event (as in the example below), removeListener() will remove the most +recently added instance. In the example the once('ping')listener is removed:

    +
    const ee = new EventEmitter();

    function pong() {
    console.log('pong');
    }

    ee.on('ping', pong);
    ee.once('ping', pong);
    ee.removeListener('ping', pong);

    ee.emit('ping');
    ee.emit('ping'); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default

setMaxListeners

  • setMaxListeners(n: number): default
  • +

    By default EventEmitters will print a warning if more than 10 listeners are +added for a particular event. This is a useful default that helps finding +memory leaks. The emitter.setMaxListeners() method allows the limit to be +modified for this specific EventEmitter instance. The value can be set toInfinity (or 0) to indicate an unlimited number of listeners.

    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.3.5

    +

    Parameters

    • n: number

    Returns default

writeCommand

Static Private #defaultReconnectStrategy

  • #defaultReconnectStrategy(retries: number): number

Static Private #initiateOptions

Static Private #isTlsSocket

Static getEventListeners

  • getEventListeners(emitter: EventEmitter | DOMEventTarget, name: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName.

    +

    For EventEmitters this behaves exactly the same as calling .listeners on +the emitter.

    +

    For EventTargets this is the only way to get the event listeners for the +event target. This is useful for debugging and diagnostic purposes.

    +
    const { getEventListeners, EventEmitter } = require('events');

    {
    const ee = new EventEmitter();
    const listener = () => console.log('Events are fun');
    ee.on('foo', listener);
    getEventListeners(ee, 'foo'); // [listener]
    }
    {
    const et = new EventTarget();
    const listener = () => console.log('Events are fun');
    et.addEventListener('foo', listener);
    getEventListeners(et, 'foo'); // [listener]
    } +
    +
    since

    v15.2.0

    +

    Parameters

    • emitter: EventEmitter | DOMEventTarget
    • name: string | symbol

    Returns Function[]

Static listenerCount

  • listenerCount(emitter: EventEmitter, eventName: string | symbol): number
  • +

    A class method that returns the number of listeners for the given eventNameregistered on the given emitter.

    +
    const { EventEmitter, listenerCount } = require('events');
    const myEmitter = new EventEmitter();
    myEmitter.on('event', () => {});
    myEmitter.on('event', () => {});
    console.log(listenerCount(myEmitter, 'event'));
    // Prints: 2 +
    +
    since

    v0.9.12

    +
    deprecated

    Since v3.2.0 - Use listenerCount instead.

    +

    Parameters

    • emitter: EventEmitter
      +

      The emitter to query

      +
    • eventName: string | symbol
      +

      The event name

      +

    Returns number

Static on

  • on(emitter: EventEmitter, eventName: string, options?: StaticEventEmitterOptions): AsyncIterableIterator<any>
  • +

    ```js +const { on, EventEmitter } = require('events');

    +

    (async () => { + const ee = new EventEmitter();

    +

    // Emit later on + process.nextTick(() => { + ee.emit('foo', 'bar'); + ee.emit('foo', 42); + });

    +

    for await (const event of on(ee, 'foo')) { + // The execution of this inner block is synchronous and it + // processes one event at a time (even with await). Do not use + // if concurrent execution is required. + console.log(event); // prints ['bar'] [42] + } + // Unreachable here +})();

    +

    Returns an `AsyncIterator` that iterates `eventName` events. It will throw
    if the `EventEmitter` emits `'error'`. It removes all listeners when
    exiting the loop. The `value` returned by each iteration is an array
    composed of the emitted event arguments.

    An `AbortSignal` can be used to cancel waiting on events:

    ```js
    const { on, EventEmitter } = require('events');
    const ac = new AbortController();

    (async () => {
    const ee = new EventEmitter();

    // Emit later on
    process.nextTick(() => {
    ee.emit('foo', 'bar');
    ee.emit('foo', 42);
    });

    for await (const event of on(ee, 'foo', { signal: ac.signal })) {
    // The execution of this inner block is synchronous and it
    // processes one event at a time (even with await). Do not use
    // if concurrent execution is required.
    console.log(event); // prints ['bar'] [42]
    }
    // Unreachable here
    })();

    process.nextTick(() => ac.abort()); +
    +
    since

    v13.6.0, v12.16.0

    +

    Parameters

    • emitter: EventEmitter
    • eventName: string
      +

      The name of the event being listened for

      +
    • Optional options: StaticEventEmitterOptions

    Returns AsyncIterableIterator<any>

    that iterates eventName events emitted by the emitter

    +

Static once

  • once(emitter: NodeEventTarget, eventName: string | symbol, options?: StaticEventEmitterOptions): Promise<any[]>
  • once(emitter: DOMEventTarget, eventName: string, options?: StaticEventEmitterOptions): Promise<any[]>
  • +

    Creates a Promise that is fulfilled when the EventEmitter emits the given +event or that is rejected if the EventEmitter emits 'error' while waiting. +The Promise will resolve with an array of all the arguments emitted to the +given event.

    +

    This method is intentionally generic and works with the web platform EventTarget interface, which has no special'error' event +semantics and does not listen to the 'error' event.

    +
    const { once, EventEmitter } = require('events');

    async function run() {
    const ee = new EventEmitter();

    process.nextTick(() => {
    ee.emit('myevent', 42);
    });

    const [value] = await once(ee, 'myevent');
    console.log(value);

    const err = new Error('kaboom');
    process.nextTick(() => {
    ee.emit('error', err);
    });

    try {
    await once(ee, 'myevent');
    } catch (err) {
    console.log('error happened', err);
    }
    }

    run(); +
    +

    The special handling of the 'error' event is only used when events.once()is used to wait for another event. If events.once() is used to wait for the +'error' event itself, then it is treated as any other kind of event without +special handling:

    +
    const { EventEmitter, once } = require('events');

    const ee = new EventEmitter();

    once(ee, 'error')
    .then(([err]) => console.log('ok', err.message))
    .catch((err) => console.log('error', err.message));

    ee.emit('error', new Error('boom'));

    // Prints: ok boom +
    +

    An AbortSignal can be used to cancel waiting for the event:

    +
    const { EventEmitter, once } = require('events');

    const ee = new EventEmitter();
    const ac = new AbortController();

    async function foo(emitter, event, signal) {
    try {
    await once(emitter, event, { signal });
    console.log('event emitted!');
    } catch (error) {
    if (error.name === 'AbortError') {
    console.error('Waiting for the event was canceled!');
    } else {
    console.error('There was an error', error.message);
    }
    }
    }

    foo(ee, 'foo', ac.signal);
    ac.abort(); // Abort waiting for the event
    ee.emit('foo'); // Prints: Waiting for the event was canceled! +
    +
    since

    v11.13.0, v10.16.0

    +

    Parameters

    • emitter: NodeEventTarget
    • eventName: string | symbol
    • Optional options: StaticEventEmitterOptions

    Returns Promise<any[]>

  • Parameters

    • emitter: DOMEventTarget
    • eventName: string
    • Optional options: StaticEventEmitterOptions

    Returns Promise<any[]>

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Method
  • Interface
  • Interface with type parameter
  • Private property
  • Private method
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_cluster.default.html b/documentation/client/classes/lib_cluster.default.html new file mode 100644 index 0000000000..a80819cca7 --- /dev/null +++ b/documentation/client/classes/lib_cluster.default.html @@ -0,0 +1,205 @@ +default | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

Hierarchy

  • EventEmitter
    • default

Index

Constructors

constructor

Properties

Private Readonly #Multi

#Multi: new (...args: [executor: RedisClusterMultiExecutor, firstKey?: string | Buffer]) => RedisClusterMultiCommandType<M, S>

Type declaration

Private Readonly #options

#options: RedisClusterOptions<M, S>

Private Readonly #slots

#slots: default<M, S>

Static Readonly captureRejectionSymbol

captureRejectionSymbol: typeof captureRejectionSymbol

Static captureRejections

captureRejections: boolean
+

Sets or gets the default captureRejection value for all emitters.

+

Static defaultMaxListeners

defaultMaxListeners: number

Static Readonly errorMonitor

errorMonitor: typeof errorMonitor
+

This symbol shall be used to install a listener for only monitoring 'error' +events. Listeners installed using this symbol are called before the regular +'error' listeners are called.

+

Installing a listener using this symbol does not change the behavior once an +'error' event is emitted, therefore the process will still crash if no +regular 'error' listener is installed.

+

Methods

Private #handleCommandError

addListener

  • addListener(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Alias for emitter.on(eventName, listener).

    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

commandsExecutor

connect

  • connect(): Promise<void>

disconnect

  • disconnect(): Promise<void>

duplicate

emit

  • emit(eventName: string | symbol, ...args: any[]): boolean
  • +

    Synchronously calls each of the listeners registered for the event namedeventName, in the order they were registered, passing the supplied arguments +to each.

    +

    Returns true if the event had listeners, false otherwise.

    +
    const EventEmitter = require('events');
    const myEmitter = new EventEmitter();

    // First listener
    myEmitter.on('event', function firstListener() {
    console.log('Helloooo! first listener');
    });
    // Second listener
    myEmitter.on('event', function secondListener(arg1, arg2) {
    console.log(`event with parameters ${arg1}, ${arg2} in second listener`);
    });
    // Third listener
    myEmitter.on('event', function thirdListener(...args) {
    const parameters = args.join(', ');
    console.log(`event with parameters ${parameters} in third listener`);
    });

    console.log(myEmitter.listeners('event'));

    myEmitter.emit('event', 1, 2, 3, 4, 5);

    // Prints:
    // [
    // [Function: firstListener],
    // [Function: secondListener],
    // [Function: thirdListener]
    // ]
    // Helloooo! first listener
    // event with parameters 1, 2 in second listener
    // event with parameters 1, 2, 3, 4, 5 in third listener +
    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • Rest ...args: any[]

    Returns boolean

eventNames

  • eventNames(): (string | symbol)[]
  • +

    Returns an array listing the events for which the emitter has registered +listeners. The values in the array are strings or Symbols.

    +
    const EventEmitter = require('events');
    const myEE = new EventEmitter();
    myEE.on('foo', () => {});
    myEE.on('bar', () => {});

    const sym = Symbol('symbol');
    myEE.on(sym, () => {});

    console.log(myEE.eventNames());
    // Prints: [ 'foo', 'bar', Symbol(symbol) ] +
    +
    since

    v6.0.0

    +

    Returns (string | symbol)[]

executeScript

getMasters

getMaxListeners

  • getMaxListeners(): number
  • +

    Returns the current max listener value for the EventEmitter which is either +set by emitter.setMaxListeners(n) or defaults to defaultMaxListeners.

    +
    since

    v1.0.0

    +

    Returns number

getSlotMaster

listenerCount

  • listenerCount(eventName: string | symbol): number
  • +

    Returns the number of listeners listening to the event named eventName.

    +
    since

    v3.2.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event being listened for

      +

    Returns number

listeners

  • listeners(eventName: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName.

    +
    server.on('connection', (stream) => {
    console.log('someone connected!');
    });
    console.log(util.inspect(server.listeners('connection')));
    // Prints: [ [Function] ] +
    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol

    Returns Function[]

multi

off

  • off(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Alias for emitter.removeListener().

    +
    since

    v10.0.0

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

on

  • on(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Adds the listener function to the end of the listeners array for the +event named eventName. No checks are made to see if the listener has +already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple +times.

    +
    server.on('connection', (stream) => {
    console.log('someone connected!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +

    By default, event listeners are invoked in the order they are added. Theemitter.prependListener() method can be used as an alternative to add the +event listener to the beginning of the listeners array.

    +
    const myEE = new EventEmitter();
    myEE.on('foo', () => console.log('a'));
    myEE.prependListener('foo', () => console.log('b'));
    myEE.emit('foo');
    // Prints:
    // b
    // a +
    +
    since

    v0.1.101

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

once

  • once(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Adds a one-timelistener function for the event named eventName. The +next time eventName is triggered, this listener is removed and then invoked.

    +
    server.once('connection', (stream) => {
    console.log('Ah, we have our first user!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +

    By default, event listeners are invoked in the order they are added. Theemitter.prependOnceListener() method can be used as an alternative to add the +event listener to the beginning of the listeners array.

    +
    const myEE = new EventEmitter();
    myEE.once('foo', () => console.log('a'));
    myEE.prependOnceListener('foo', () => console.log('b'));
    myEE.emit('foo');
    // Prints:
    // b
    // a +
    +
    since

    v0.3.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

prependListener

  • prependListener(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Adds the listener function to the beginning of the listeners array for the +event named eventName. No checks are made to see if the listener has +already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple +times.

    +
    server.prependListener('connection', (stream) => {
    console.log('someone connected!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v6.0.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

prependOnceListener

  • prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Adds a one-timelistener function for the event named eventName to the_beginning_ of the listeners array. The next time eventName is triggered, this +listener is removed, and then invoked.

    +
    server.prependOnceListener('connection', (stream) => {
    console.log('Ah, we have our first user!');
    }); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v6.0.0

    +

    Parameters

    • eventName: string | symbol
      +

      The name of the event.

      +
    • listener: (...args: any[]) => void
      +

      The callback function

      +
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

rawListeners

  • rawListeners(eventName: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName, +including any wrappers (such as those created by .once()).

    +
    const emitter = new EventEmitter();
    emitter.once('log', () => console.log('log once'));

    // Returns a new Array with a function `onceWrapper` which has a property
    // `listener` which contains the original listener bound above
    const listeners = emitter.rawListeners('log');
    const logFnWrapper = listeners[0];

    // Logs "log once" to the console and does not unbind the `once` event
    logFnWrapper.listener();

    // Logs "log once" to the console and removes the listener
    logFnWrapper();

    emitter.on('log', () => console.log('log persistently'));
    // Will return a new Array with a single function bound by `.on()` above
    const newListeners = emitter.rawListeners('log');

    // Logs "log persistently" twice
    newListeners[0]();
    emitter.emit('log'); +
    +
    since

    v9.4.0

    +

    Parameters

    • eventName: string | symbol

    Returns Function[]

removeAllListeners

  • removeAllListeners(event?: string | symbol): default<M, S>
  • +

    Removes all listeners, or those of the specified eventName.

    +

    It is bad practice to remove listeners added elsewhere in the code, +particularly when the EventEmitter instance was created by some other +component or module (e.g. sockets or file streams).

    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.1.26

    +

    Parameters

    • Optional event: string | symbol

    Returns default<M, S>

removeListener

  • removeListener(eventName: string | symbol, listener: (...args: any[]) => void): default<M, S>
  • +

    Removes the specified listener from the listener array for the event namedeventName.

    +
    const callback = (stream) => {
    console.log('someone connected!');
    };
    server.on('connection', callback);
    // ...
    server.removeListener('connection', callback); +
    +

    removeListener() will remove, at most, one instance of a listener from the +listener array. If any single listener has been added multiple times to the +listener array for the specified eventName, then removeListener() must be +called multiple times to remove each instance.

    +

    Once an event is emitted, all listeners attached to it at the +time of emitting are called in order. This implies that anyremoveListener() or removeAllListeners() calls after emitting and_before_ the last listener finishes execution will +not remove them fromemit() in progress. Subsequent events behave as expected.

    +
    const myEmitter = new MyEmitter();

    const callbackA = () => {
    console.log('A');
    myEmitter.removeListener('event', callbackB);
    };

    const callbackB = () => {
    console.log('B');
    };

    myEmitter.on('event', callbackA);

    myEmitter.on('event', callbackB);

    // callbackA removes listener callbackB but it will still be called.
    // Internal listener array at time of emit [callbackA, callbackB]
    myEmitter.emit('event');
    // Prints:
    // A
    // B

    // callbackB is now removed.
    // Internal listener array [callbackA]
    myEmitter.emit('event');
    // Prints:
    // A +
    +

    Because listeners are managed using an internal array, calling this will +change the position indices of any listener registered after the listener +being removed. This will not impact the order in which listeners are called, +but it means that any copies of the listener array as returned by +the emitter.listeners() method will need to be recreated.

    +

    When a single function has been added as a handler multiple times for a single +event (as in the example below), removeListener() will remove the most +recently added instance. In the example the once('ping')listener is removed:

    +
    const ee = new EventEmitter();

    function pong() {
    console.log('pong');
    }

    ee.on('ping', pong);
    ee.once('ping', pong);
    ee.removeListener('ping', pong);

    ee.emit('ping');
    ee.emit('ping'); +
    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.1.26

    +

    Parameters

    • eventName: string | symbol
    • listener: (...args: any[]) => void
        • (...args: any[]): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns default<M, S>

scriptsExecutor

sendCommand

setMaxListeners

  • setMaxListeners(n: number): default<M, S>
  • +

    By default EventEmitters will print a warning if more than 10 listeners are +added for a particular event. This is a useful default that helps finding +memory leaks. The emitter.setMaxListeners() method allows the limit to be +modified for this specific EventEmitter instance. The value can be set toInfinity (or 0) to indicate an unlimited number of listeners.

    +

    Returns a reference to the EventEmitter, so that calls can be chained.

    +
    since

    v0.3.5

    +

    Parameters

    • n: number

    Returns default<M, S>

Static create

Static extractFirstKey

Static getEventListeners

  • getEventListeners(emitter: EventEmitter | DOMEventTarget, name: string | symbol): Function[]
  • +

    Returns a copy of the array of listeners for the event named eventName.

    +

    For EventEmitters this behaves exactly the same as calling .listeners on +the emitter.

    +

    For EventTargets this is the only way to get the event listeners for the +event target. This is useful for debugging and diagnostic purposes.

    +
    const { getEventListeners, EventEmitter } = require('events');

    {
    const ee = new EventEmitter();
    const listener = () => console.log('Events are fun');
    ee.on('foo', listener);
    getEventListeners(ee, 'foo'); // [listener]
    }
    {
    const et = new EventTarget();
    const listener = () => console.log('Events are fun');
    et.addEventListener('foo', listener);
    getEventListeners(et, 'foo'); // [listener]
    } +
    +
    since

    v15.2.0

    +

    Parameters

    • emitter: EventEmitter | DOMEventTarget
    • name: string | symbol

    Returns Function[]

Static listenerCount

  • listenerCount(emitter: EventEmitter, eventName: string | symbol): number
  • +

    A class method that returns the number of listeners for the given eventNameregistered on the given emitter.

    +
    const { EventEmitter, listenerCount } = require('events');
    const myEmitter = new EventEmitter();
    myEmitter.on('event', () => {});
    myEmitter.on('event', () => {});
    console.log(listenerCount(myEmitter, 'event'));
    // Prints: 2 +
    +
    since

    v0.9.12

    +
    deprecated

    Since v3.2.0 - Use listenerCount instead.

    +

    Parameters

    • emitter: EventEmitter
      +

      The emitter to query

      +
    • eventName: string | symbol
      +

      The event name

      +

    Returns number

Static on

  • on(emitter: EventEmitter, eventName: string, options?: StaticEventEmitterOptions): AsyncIterableIterator<any>
  • +

    ```js +const { on, EventEmitter } = require('events');

    +

    (async () => { + const ee = new EventEmitter();

    +

    // Emit later on + process.nextTick(() => { + ee.emit('foo', 'bar'); + ee.emit('foo', 42); + });

    +

    for await (const event of on(ee, 'foo')) { + // The execution of this inner block is synchronous and it + // processes one event at a time (even with await). Do not use + // if concurrent execution is required. + console.log(event); // prints ['bar'] [42] + } + // Unreachable here +})();

    +

    Returns an `AsyncIterator` that iterates `eventName` events. It will throw
    if the `EventEmitter` emits `'error'`. It removes all listeners when
    exiting the loop. The `value` returned by each iteration is an array
    composed of the emitted event arguments.

    An `AbortSignal` can be used to cancel waiting on events:

    ```js
    const { on, EventEmitter } = require('events');
    const ac = new AbortController();

    (async () => {
    const ee = new EventEmitter();

    // Emit later on
    process.nextTick(() => {
    ee.emit('foo', 'bar');
    ee.emit('foo', 42);
    });

    for await (const event of on(ee, 'foo', { signal: ac.signal })) {
    // The execution of this inner block is synchronous and it
    // processes one event at a time (even with await). Do not use
    // if concurrent execution is required.
    console.log(event); // prints ['bar'] [42]
    }
    // Unreachable here
    })();

    process.nextTick(() => ac.abort()); +
    +
    since

    v13.6.0, v12.16.0

    +

    Parameters

    • emitter: EventEmitter
    • eventName: string
      +

      The name of the event being listened for

      +
    • Optional options: StaticEventEmitterOptions

    Returns AsyncIterableIterator<any>

    that iterates eventName events emitted by the emitter

    +

Static once

  • once(emitter: NodeEventTarget, eventName: string | symbol, options?: StaticEventEmitterOptions): Promise<any[]>
  • once(emitter: DOMEventTarget, eventName: string, options?: StaticEventEmitterOptions): Promise<any[]>
  • +

    Creates a Promise that is fulfilled when the EventEmitter emits the given +event or that is rejected if the EventEmitter emits 'error' while waiting. +The Promise will resolve with an array of all the arguments emitted to the +given event.

    +

    This method is intentionally generic and works with the web platform EventTarget interface, which has no special'error' event +semantics and does not listen to the 'error' event.

    +
    const { once, EventEmitter } = require('events');

    async function run() {
    const ee = new EventEmitter();

    process.nextTick(() => {
    ee.emit('myevent', 42);
    });

    const [value] = await once(ee, 'myevent');
    console.log(value);

    const err = new Error('kaboom');
    process.nextTick(() => {
    ee.emit('error', err);
    });

    try {
    await once(ee, 'myevent');
    } catch (err) {
    console.log('error happened', err);
    }
    }

    run(); +
    +

    The special handling of the 'error' event is only used when events.once()is used to wait for another event. If events.once() is used to wait for the +'error' event itself, then it is treated as any other kind of event without +special handling:

    +
    const { EventEmitter, once } = require('events');

    const ee = new EventEmitter();

    once(ee, 'error')
    .then(([err]) => console.log('ok', err.message))
    .catch((err) => console.log('error', err.message));

    ee.emit('error', new Error('boom'));

    // Prints: ok boom +
    +

    An AbortSignal can be used to cancel waiting for the event:

    +
    const { EventEmitter, once } = require('events');

    const ee = new EventEmitter();
    const ac = new AbortController();

    async function foo(emitter, event, signal) {
    try {
    await once(emitter, event, { signal });
    console.log('event emitted!');
    } catch (error) {
    if (error.name === 'AbortError') {
    console.error('Waiting for the event was canceled!');
    } else {
    console.error('There was an error', error.message);
    }
    }
    }

    foo(ee, 'foo', ac.signal);
    ac.abort(); // Abort waiting for the event
    ee.emit('foo'); // Prints: Waiting for the event was canceled! +
    +
    since

    v11.13.0, v10.16.0

    +

    Parameters

    • emitter: NodeEventTarget
    • eventName: string | symbol
    • Optional options: StaticEventEmitterOptions

    Returns Promise<any[]>

  • Parameters

    • emitter: DOMEventTarget
    • eventName: string
    • Optional options: StaticEventEmitterOptions

    Returns Promise<any[]>

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Method
  • Interface
  • Interface with type parameter
  • Private property
  • Private method
  • Enumeration
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_cluster_cluster_slots.default.html b/documentation/client/classes/lib_cluster_cluster_slots.default.html new file mode 100644 index 0000000000..5f4983467c --- /dev/null +++ b/documentation/client/classes/lib_cluster_cluster_slots.default.html @@ -0,0 +1 @@ +default | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

Hierarchy

  • default

Index

Constructors

constructor

Properties

Private Readonly #Client

Private Readonly #nodeByUrl

#nodeByUrl: Map<string, ClusterNode<M, S>> = ...

Private Readonly #onError

#onError: OnError

Private Readonly #options

#options: RedisClusterOptions<M, S>

Private Optional #randomClientIterator

#randomClientIterator?: IterableIterator<ClusterNode<M, S>>

Private Optional #runningRediscoverPromise

#runningRediscoverPromise?: Promise<void>

Private Readonly #slots

#slots: SlotNodes<M, S>[] = []

Methods

Private #clientOptionsDefaults

Private #discoverNodes

Private #getRandomClient

Private #getSlotClient

Private #initiateClient

Private #initiateClientForNode

Private #rediscover

Private #reset

Private #slotClientIterator

  • #slotClientIterator(slotNumber: number): IterableIterator<RedisClientType<M, S>>

connect

  • connect(): Promise<void>

disconnect

  • disconnect(): Promise<void>

getClient

  • getClient(firstKey?: string | Buffer, isReadonly?: boolean): RedisClientType<M, S>

getMasters

getNodeByUrl

  • getNodeByUrl(url: string): undefined | ClusterNode<M, S>

getSlotMaster

rediscover

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Method
  • Interface
  • Interface with type parameter
  • Private property
  • Private method
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_cluster_multi_command.default.html b/documentation/client/classes/lib_cluster_multi_command.default.html new file mode 100644 index 0000000000..94552da5d7 --- /dev/null +++ b/documentation/client/classes/lib_cluster_multi_command.default.html @@ -0,0 +1 @@ +default | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • default

Index

Constructors

constructor

Properties

Private Readonly #executor

Private #firstKey

#firstKey: undefined | string | Buffer

Private Readonly #multi

#multi: default = ...

EXEC

EXEC: (execAsPipeline?: boolean) => Promise<RedisCommandRawReply[]> = ...

Type declaration

Methods

addCommand

commandsExecutor

exec

execAsPipeline

scriptsExecutor

Static extend

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Enumeration
  • Private property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_errors.AbortError.html b/documentation/client/classes/lib_errors.AbortError.html new file mode 100644 index 0000000000..b41f587fa2 --- /dev/null +++ b/documentation/client/classes/lib_errors.AbortError.html @@ -0,0 +1,6 @@ +AbortError | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Error
    • AbortError

Index

Constructors

constructor

Properties

message

message: string

name

name: string

Optional stack

stack?: string

Static Optional prepareStackTrace

prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration

Static stackTraceLimit

stackTraceLimit: number

Methods

Static captureStackTrace

  • captureStackTrace(targetObject: object, constructorOpt?: Function): void
  • +

    Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Interface
  • Interface with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_errors.AuthError.html b/documentation/client/classes/lib_errors.AuthError.html new file mode 100644 index 0000000000..2341b79d54 --- /dev/null +++ b/documentation/client/classes/lib_errors.AuthError.html @@ -0,0 +1,6 @@ +AuthError | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Error
    • AuthError

Index

Constructors

constructor

Properties

message

message: string

name

name: string

Optional stack

stack?: string

Static Optional prepareStackTrace

prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration

Static stackTraceLimit

stackTraceLimit: number

Methods

Static captureStackTrace

  • captureStackTrace(targetObject: object, constructorOpt?: Function): void
  • +

    Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Interface
  • Interface with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_errors.ClientClosedError.html b/documentation/client/classes/lib_errors.ClientClosedError.html new file mode 100644 index 0000000000..8ddfb33a94 --- /dev/null +++ b/documentation/client/classes/lib_errors.ClientClosedError.html @@ -0,0 +1,6 @@ +ClientClosedError | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Error
    • ClientClosedError

Index

Constructors

constructor

Properties

message

message: string

name

name: string

Optional stack

stack?: string

Static Optional prepareStackTrace

prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration

Static stackTraceLimit

stackTraceLimit: number

Methods

Static captureStackTrace

  • captureStackTrace(targetObject: object, constructorOpt?: Function): void
  • +

    Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Interface
  • Interface with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_errors.ConnectionTimeoutError.html b/documentation/client/classes/lib_errors.ConnectionTimeoutError.html new file mode 100644 index 0000000000..b3c1761c42 --- /dev/null +++ b/documentation/client/classes/lib_errors.ConnectionTimeoutError.html @@ -0,0 +1,6 @@ +ConnectionTimeoutError | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Error
    • ConnectionTimeoutError

Index

Constructors

constructor

Properties

message

message: string

name

name: string

Optional stack

stack?: string

Static Optional prepareStackTrace

prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration

Static stackTraceLimit

stackTraceLimit: number

Methods

Static captureStackTrace

  • captureStackTrace(targetObject: object, constructorOpt?: Function): void
  • +

    Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Interface
  • Interface with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_errors.DisconnectsClientError.html b/documentation/client/classes/lib_errors.DisconnectsClientError.html new file mode 100644 index 0000000000..5bd5869fd7 --- /dev/null +++ b/documentation/client/classes/lib_errors.DisconnectsClientError.html @@ -0,0 +1,6 @@ +DisconnectsClientError | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Error
    • DisconnectsClientError

Index

Constructors

constructor

Properties

message

message: string

name

name: string

Optional stack

stack?: string

Static Optional prepareStackTrace

prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration

Static stackTraceLimit

stackTraceLimit: number

Methods

Static captureStackTrace

  • captureStackTrace(targetObject: object, constructorOpt?: Function): void
  • +

    Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Interface
  • Interface with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_errors.SocketClosedUnexpectedlyError.html b/documentation/client/classes/lib_errors.SocketClosedUnexpectedlyError.html new file mode 100644 index 0000000000..30396c24a3 --- /dev/null +++ b/documentation/client/classes/lib_errors.SocketClosedUnexpectedlyError.html @@ -0,0 +1,6 @@ +SocketClosedUnexpectedlyError | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Error
    • SocketClosedUnexpectedlyError

Index

Constructors

constructor

Properties

message

message: string

name

name: string

Optional stack

stack?: string

Static Optional prepareStackTrace

prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration

Static stackTraceLimit

stackTraceLimit: number

Methods

Static captureStackTrace

  • captureStackTrace(targetObject: object, constructorOpt?: Function): void
  • +

    Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Interface
  • Interface with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_errors.WatchError.html b/documentation/client/classes/lib_errors.WatchError.html new file mode 100644 index 0000000000..00356a77f5 --- /dev/null +++ b/documentation/client/classes/lib_errors.WatchError.html @@ -0,0 +1,6 @@ +WatchError | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Error
    • WatchError

Index

Constructors

constructor

Properties

message

message: string

name

name: string

Optional stack

stack?: string

Static Optional prepareStackTrace

prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any

Type declaration

Static stackTraceLimit

stackTraceLimit: number

Methods

Static captureStackTrace

  • captureStackTrace(targetObject: object, constructorOpt?: Function): void
  • +

    Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Interface
  • Interface with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/classes/lib_multi_command.default.html b/documentation/client/classes/lib_multi_command.default.html new file mode 100644 index 0000000000..ee980f0b17 --- /dev/null +++ b/documentation/client/classes/lib_multi_command.default.html @@ -0,0 +1 @@ +default | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • default

Index

Constructors

constructor

Properties

Readonly queue

Readonly scriptsInUse

scriptsInUse: Set<string> = ...

Methods

addCommand

addScript

exec

handleExecReplies

transformReplies

Static generateChainId

  • generateChainId(): symbol

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Class
  • Class with type parameter
  • Constructor
  • Property
  • Method
  • Interface
  • Interface with type parameter
  • Enumeration
  • Static method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_client_commands_queue.PubSubSubscribeCommands.html b/documentation/client/enums/lib_client_commands_queue.PubSubSubscribeCommands.html new file mode 100644 index 0000000000..2f849b0fae --- /dev/null +++ b/documentation/client/enums/lib_client_commands_queue.PubSubSubscribeCommands.html @@ -0,0 +1 @@ +PubSubSubscribeCommands | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

PSUBSCRIBE

PSUBSCRIBE = "PSUBSCRIBE"

SUBSCRIBE

SUBSCRIBE = "SUBSCRIBE"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_client_commands_queue.PubSubUnsubscribeCommands.html b/documentation/client/enums/lib_client_commands_queue.PubSubUnsubscribeCommands.html new file mode 100644 index 0000000000..bde7e0e2a8 --- /dev/null +++ b/documentation/client/enums/lib_client_commands_queue.PubSubUnsubscribeCommands.html @@ -0,0 +1 @@ +PubSubUnsubscribeCommands | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

PUNSUBSCRIBE

PUNSUBSCRIBE = "PUNSUBSCRIBE"

UNSUBSCRIBE

UNSUBSCRIBE = "UNSUBSCRIBE"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_commands_CLIENT_KILL.ClientKillFilters.html b/documentation/client/enums/lib_commands_CLIENT_KILL.ClientKillFilters.html new file mode 100644 index 0000000000..34e819d3ef --- /dev/null +++ b/documentation/client/enums/lib_commands_CLIENT_KILL.ClientKillFilters.html @@ -0,0 +1 @@ +ClientKillFilters | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

ADDRESS

ADDRESS = "ADDR"

ID

ID = "ID"

LOCAL_ADDRESS

LOCAL_ADDRESS = "LADDR"

SKIP_ME

SKIP_ME = "SKIPME"

TYPE

TYPE = "TYPE"

USER

USER = "USER"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_commands_CLUSTER_NODES.RedisClusterNodeLinkStates.html b/documentation/client/enums/lib_commands_CLUSTER_NODES.RedisClusterNodeLinkStates.html new file mode 100644 index 0000000000..a8cbe480b5 --- /dev/null +++ b/documentation/client/enums/lib_commands_CLUSTER_NODES.RedisClusterNodeLinkStates.html @@ -0,0 +1 @@ +RedisClusterNodeLinkStates | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

CONNECTED

CONNECTED = "connected"

DISCONNECTED

DISCONNECTED = "disconnected"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_commands_CLUSTER_SETSLOT.ClusterSlotStates.html b/documentation/client/enums/lib_commands_CLUSTER_SETSLOT.ClusterSlotStates.html new file mode 100644 index 0000000000..5d9d4b7349 --- /dev/null +++ b/documentation/client/enums/lib_commands_CLUSTER_SETSLOT.ClusterSlotStates.html @@ -0,0 +1 @@ +ClusterSlotStates | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

IMPORTING

IMPORTING = "IMPORTING"

MIGRATING

MIGRATING = "MIGRATING"

NODE

NODE = "NODE"

STABLE

STABLE = "STABLE"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_commands_FLUSHALL.RedisFlushModes.html b/documentation/client/enums/lib_commands_FLUSHALL.RedisFlushModes.html new file mode 100644 index 0000000000..b8fa242f0b --- /dev/null +++ b/documentation/client/enums/lib_commands_FLUSHALL.RedisFlushModes.html @@ -0,0 +1 @@ +RedisFlushModes | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

ASYNC

ASYNC = "ASYNC"

SYNC

SYNC = "SYNC"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_commands_generic_transformers.CommandCategories.html b/documentation/client/enums/lib_commands_generic_transformers.CommandCategories.html new file mode 100644 index 0000000000..f3aa6ca504 --- /dev/null +++ b/documentation/client/enums/lib_commands_generic_transformers.CommandCategories.html @@ -0,0 +1 @@ +CommandCategories | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

ADMIN

ADMIN = "@admin"

BITMAP

BITMAP = "@bitmap"

BLOCKING

BLOCKING = "@blocking"

CONNECTION

CONNECTION = "@connection"

DANGEROUS

DANGEROUS = "@dangerous"

FAST

FAST = "@fast"

GEO

GEO = "@geo"

HASH

HASH = "@hash"

HYPERLOGLOG

HYPERLOGLOG = "@hyperloglog"

KEYSPACE

KEYSPACE = "@keyspace"

LIST

LIST = "@list"

PUBSUB

PUBSUB = "@pubsub"

READ

READ = "@read"

SCRIPTING

SCRIPTING = "@scripting"

SET

SET = "@set"

SLOW

SLOW = "@slow"

SORTEDSET

SORTEDSET = "@sortedset"

STREAM

STREAM = "@stream"

STRING

STRING = "@string"

TRANSACTION

TRANSACTION = "@transaction"

WRITE

WRITE = "@write"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_commands_generic_transformers.CommandFlags.html b/documentation/client/enums/lib_commands_generic_transformers.CommandFlags.html new file mode 100644 index 0000000000..a6ff073e7c --- /dev/null +++ b/documentation/client/enums/lib_commands_generic_transformers.CommandFlags.html @@ -0,0 +1 @@ +CommandFlags | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/enums/lib_commands_generic_transformers.GeoReplyWith.html b/documentation/client/enums/lib_commands_generic_transformers.GeoReplyWith.html new file mode 100644 index 0000000000..311983be8f --- /dev/null +++ b/documentation/client/enums/lib_commands_generic_transformers.GeoReplyWith.html @@ -0,0 +1 @@ +GeoReplyWith | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

COORDINATES

COORDINATES = "WITHCOORD"

DISTANCE

DISTANCE = "WITHDIST"

HASH

HASH = "WITHHASH"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/index.html b/documentation/client/index.html new file mode 100644 index 0000000000..e3567f5601 --- /dev/null +++ b/documentation/client/index.html @@ -0,0 +1,6 @@ +@node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

@node-redis/client

+ +

@node-redis/client

+
+

The source code and documentation for this package are in the main node-redis repo.

+

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_client.ClientCommandOptions.html b/documentation/client/interfaces/lib_client.ClientCommandOptions.html new file mode 100644 index 0000000000..40808f5ca8 --- /dev/null +++ b/documentation/client/interfaces/lib_client.ClientCommandOptions.html @@ -0,0 +1 @@ +ClientCommandOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional asap

asap?: boolean

Optional chainId

chainId?: symbol

Optional ignorePubSubMode

ignorePubSubMode?: boolean

Optional isolated

isolated?: boolean

Optional signal

signal?: AbortSignal

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_client.RedisClientOptions.html b/documentation/client/interfaces/lib_client.RedisClientOptions.html new file mode 100644 index 0000000000..0ff5fbbb79 --- /dev/null +++ b/documentation/client/interfaces/lib_client.RedisClientOptions.html @@ -0,0 +1 @@ +RedisClientOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface RedisClientOptions<M, S>

Type parameters

Hierarchy

Index

Properties

Optional commandsQueueMaxLength

commandsQueueMaxLength?: number

Optional database

database?: number

Optional isolationPoolOptions

isolationPoolOptions?: Options

Optional legacyMode

legacyMode?: boolean

Optional modules

modules?: M

Optional name

name?: string

Optional password

password?: string

Optional readonly

readonly?: boolean

Optional scripts

scripts?: S

Optional socket

Optional url

url?: string

Optional username

username?: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_client_commands_queue.QueueCommandOptions.html b/documentation/client/interfaces/lib_client_commands_queue.QueueCommandOptions.html new file mode 100644 index 0000000000..d697c59d8a --- /dev/null +++ b/documentation/client/interfaces/lib_client_commands_queue.QueueCommandOptions.html @@ -0,0 +1 @@ +QueueCommandOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional asap

asap?: boolean

Optional chainId

chainId?: symbol

Optional ignorePubSubMode

ignorePubSubMode?: boolean

Optional signal

signal?: AbortSignal

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_client_socket.RedisSocketCommonOptions.html b/documentation/client/interfaces/lib_client_socket.RedisSocketCommonOptions.html new file mode 100644 index 0000000000..8b21dcc7b6 --- /dev/null +++ b/documentation/client/interfaces/lib_client_socket.RedisSocketCommonOptions.html @@ -0,0 +1 @@ +RedisSocketCommonOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional connectTimeout

connectTimeout?: number

Optional keepAlive

keepAlive?: number | false

Optional noDelay

noDelay?: boolean

Methods

Optional reconnectStrategy

  • reconnectStrategy(retries: number): number | Error

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Method
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_client_socket.RedisTlsSocketOptions.html b/documentation/client/interfaces/lib_client_socket.RedisTlsSocketOptions.html new file mode 100644 index 0000000000..14fe892ac4 --- /dev/null +++ b/documentation/client/interfaces/lib_client_socket.RedisTlsSocketOptions.html @@ -0,0 +1,172 @@ +RedisTlsSocketOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional ALPNProtocols

ALPNProtocols?: Uint8Array | string[] | Uint8Array[]
+

An array of strings or a Buffer naming possible ALPN protocols. +(Protocols should be ordered by their priority.)

+

Optional SNICallback

SNICallback?: (servername: string, cb: (err: null | Error, ctx?: SecureContext) => void) => void

Type declaration

    • (servername: string, cb: (err: null | Error, ctx?: SecureContext) => void): void
    • +

      SNICallback(servername, cb) A function that will be +called if the client supports SNI TLS extension. Two arguments +will be passed when called: servername and cb. SNICallback should +invoke cb(null, ctx), where ctx is a SecureContext instance. +(tls.createSecureContext(...) can be used to get a proper +SecureContext.) If SNICallback wasn't provided the default callback +with high-level API will be used (see below).

      +

      Parameters

      • servername: string
      • cb: (err: null | Error, ctx?: SecureContext) => void
          • (err: null | Error, ctx?: SecureContext): void
          • Parameters

            • err: null | Error
            • Optional ctx: SecureContext

            Returns void

      Returns void

Optional ca

ca?: string | Buffer | (string | Buffer)[]
+

Optionally override the trusted CA certificates. Default is to trust +the well-known CAs curated by Mozilla. Mozilla's CAs are completely +replaced when CAs are explicitly specified using this option.

+

Optional cert

cert?: string | Buffer | (string | Buffer)[]
+

Cert chains in PEM format. One cert chain should be provided per + private key. Each cert chain should consist of the PEM formatted + certificate for a provided private key, followed by the PEM + formatted intermediate certificates (if any), in order, and not + including the root CA (the root CA must be pre-known to the peer, + see ca). When providing multiple cert chains, they do not have to + be in the same order as their private keys in key. If the + intermediate certificates are not provided, the peer will not be + able to validate the certificate, and the handshake will fail.

+

Optional checkServerIdentity

checkServerIdentity?: (hostname: string, cert: PeerCertificate) => Error | undefined

Type declaration

    • (hostname: string, cert: PeerCertificate): Error | undefined
    • +

      Verifies the certificate cert is issued to hostname.

      +

      Returns Error object, populating it with reason, host, and cert on +failure. On success, returns undefined.

      +

      This function can be overwritten by providing alternative function as part of +the options.checkServerIdentity option passed to tls.connect(). The +overwriting function can call tls.checkServerIdentity() of course, to augment +the checks done with additional verification.

      +

      This function is only called if the certificate passed all other checks, such as +being issued by trusted CA (options.ca).

      +
      since

      v0.8.4

      +

      Parameters

      • hostname: string
        +

        The host name or IP address to verify the certificate against.

        +
      • cert: PeerCertificate
        +

        A certificate object representing the peer's certificate.

        +

      Returns Error | undefined

Optional ciphers

ciphers?: string
+

Cipher suite specification, replacing the default. For more +information, see modifying the default cipher suite. Permitted +ciphers can be obtained via tls.getCiphers(). Cipher names must be +uppercased in order for OpenSSL to accept them.

+

Optional clientCertEngine

clientCertEngine?: string
+

Name of an OpenSSL engine which can provide the client certificate.

+

Optional connectTimeout

connectTimeout?: number

Optional crl

crl?: string | Buffer | (string | Buffer)[]
+

PEM formatted CRLs (Certificate Revocation Lists).

+

Optional dhparam

dhparam?: string | Buffer
+

Diffie Hellman parameters, required for Perfect Forward Secrecy. Use +openssl dhparam to create the parameters. The key length must be +greater than or equal to 1024 bits or else an error will be thrown. +Although 1024 bits is permissible, use 2048 bits or larger for +stronger security. If omitted or invalid, the parameters are +silently discarded and DHE ciphers will not be available.

+

Optional ecdhCurve

ecdhCurve?: string
+

A string describing a named curve or a colon separated list of curve +NIDs or names, for example P-521:P-384:P-256, to use for ECDH key +agreement. Set to auto to select the curve automatically. Use +crypto.getCurves() to obtain a list of available curve names. On +recent releases, openssl ecparam -list_curves will also display the +name and description of each available elliptic curve. Default: +tls.DEFAULT_ECDH_CURVE.

+

Optional enableTrace

enableTrace?: boolean
+

When enabled, TLS packet trace information is written to stderr. This can be +used to debug TLS connection problems.

+
default

false

+

Optional honorCipherOrder

honorCipherOrder?: boolean
+

Attempt to use the server's cipher suite preferences instead of the +client's. When true, causes SSL_OP_CIPHER_SERVER_PREFERENCE to be +set in secureOptions

+

Optional host

host?: string

Optional keepAlive

keepAlive?: number | false

Optional key

key?: string | Buffer | (Buffer | KeyObject)[]
+

Private keys in PEM format. PEM allows the option of private keys +being encrypted. Encrypted keys will be decrypted with +options.passphrase. Multiple keys using different algorithms can be +provided either as an array of unencrypted key strings or buffers, +or an array of objects in the form {pem: <string|buffer>[, +passphrase: ]}. The object form can only occur in an array. +object.passphrase is optional. Encrypted keys will be decrypted with +object.passphrase if provided, or options.passphrase if it is not.

+

Optional lookup

lookup?: LookupFunction

Optional maxVersion

maxVersion?: SecureVersion
+

Optionally set the maximum TLS version to allow. One +of 'TLSv1.3', 'TLSv1.2', 'TLSv1.1', or 'TLSv1'. Cannot be specified along with the +secureProtocol option, use one or the other. +Default: 'TLSv1.3', unless changed using CLI options. Using +--tls-max-v1.2 sets the default to 'TLSv1.2'. Using --tls-max-v1.3 sets the default to +'TLSv1.3'. If multiple of the options are provided, the highest maximum is used.

+

Optional minDHSize

minDHSize?: number

Optional minVersion

minVersion?: SecureVersion
+

Optionally set the minimum TLS version to allow. One +of 'TLSv1.3', 'TLSv1.2', 'TLSv1.1', or 'TLSv1'. Cannot be specified along with the +secureProtocol option, use one or the other. It is not recommended to use +less than TLSv1.2, but it may be required for interoperability. +Default: 'TLSv1.2', unless changed using CLI options. Using +--tls-v1.0 sets the default to 'TLSv1'. Using --tls-v1.1 sets the default to +'TLSv1.1'. Using --tls-min-v1.3 sets the default to +'TLSv1.3'. If multiple of the options are provided, the lowest minimum is used.

+

Optional noDelay

noDelay?: boolean

Optional passphrase

passphrase?: string
+

Shared passphrase used for a single private key and/or a PFX.

+

Optional path

path?: string

Optional pfx

pfx?: string | Buffer | (string | Buffer | PxfObject)[]
+

PFX or PKCS12 encoded private key and certificate chain. pfx is an +alternative to providing key and cert individually. PFX is usually +encrypted, if it is, passphrase will be used to decrypt it. Multiple +PFX can be provided either as an array of unencrypted PFX buffers, +or an array of objects in the form {buf: <string|buffer>[, +passphrase: ]}. The object form can only occur in an array. +object.passphrase is optional. Encrypted PFX will be decrypted with +object.passphrase if provided, or options.passphrase if it is not.

+

Optional port

port?: number

Optional privateKeyEngine

privateKeyEngine?: string
+

Name of an OpenSSL engine to get private key from. Should be used +together with privateKeyIdentifier.

+

Optional privateKeyIdentifier

privateKeyIdentifier?: string
+

Identifier of a private key managed by an OpenSSL engine. Should be +used together with privateKeyEngine. Should not be set together with +key, because both options define a private key in different ways.

+

Optional rejectUnauthorized

rejectUnauthorized?: boolean
+

If true the server will reject any connection which is not +authorized with the list of supplied CAs. This option only has an +effect if requestCert is true.

+
default

true

+

Optional requestCert

requestCert?: boolean
+

If true the server will request a certificate from clients that +connect and attempt to verify that certificate. Defaults to +false.

+

Optional secureContext

secureContext?: SecureContext
+

An optional TLS context object from tls.createSecureContext()

+

Optional secureOptions

secureOptions?: number
+

Optionally affect the OpenSSL protocol behavior, which is not +usually necessary. This should be used carefully if at all! Value is +a numeric bitmask of the SSL_OP_* options from OpenSSL Options

+

Optional secureProtocol

secureProtocol?: string
+

Legacy mechanism to select the TLS protocol version to use, it does +not support independent control of the minimum and maximum version, +and does not support limiting the protocol to TLSv1.3. Use +minVersion and maxVersion instead. The possible values are listed as +SSL_METHODS, use the function names as strings. For example, use +'TLSv1_1_method' to force TLS version 1.1, or 'TLS_method' to allow +any TLS protocol version up to TLSv1.3. It is not recommended to use +TLS versions less than 1.2, but it may be required for +interoperability. Default: none, see minVersion.

+

Optional servername

servername?: string

Optional session

session?: Buffer

Optional sessionIdContext

sessionIdContext?: string
+

Opaque identifier used by servers to ensure session state is not +shared between applications. Unused by clients.

+

Optional sessionTimeout

sessionTimeout?: number
+

The number of seconds after which a TLS session created by the +server will no longer be resumable. See Session Resumption for more +information. Default: 300.

+

Optional sigalgs

sigalgs?: string
+

Colon-separated list of supported signature algorithms. The list + can contain digest algorithms (SHA256, MD5 etc.), public key + algorithms (RSA-PSS, ECDSA etc.), combination of both (e.g + 'RSA+SHA384') or TLS v1.3 scheme names (e.g. rsa_pss_pss_sha512).

+

Optional socket

socket?: Socket

Optional ticketKeys

ticketKeys?: Buffer
+

48-bytes of cryptographically strong pseudo-random data. +See Session Resumption for more information.

+

Optional timeout

timeout?: number

tls

tls: true

Methods

Optional pskCallback

  • pskCallback(hint: null | string): null | PSKCallbackNegotation
  • +

    When negotiating TLS-PSK (pre-shared keys), this function is called +with optional identity hint provided by the server or null +in case of TLS 1.3 where hint was removed. +It will be necessary to provide a custom tls.checkServerIdentity() +for the connection as the default one will try to check hostname/IP +of the server against the certificate but that's not applicable for PSK +because there won't be a certificate present. +More information can be found in the RFC 4279.

    +

    Parameters

    • hint: null | string
      +

      message sent from the server to help client +decide which identity to use during negotiation. +Always null if TLS 1.3 is used.

      +

    Returns null | PSKCallbackNegotation

    Return null to stop the negotiation process. psk must be +compatible with the selected cipher's digest. +identity must use UTF-8 encoding.

    +

Optional reconnectStrategy

  • reconnectStrategy(retries: number): number | Error

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_cluster.RedisClusterOptions.html b/documentation/client/interfaces/lib_cluster.RedisClusterOptions.html new file mode 100644 index 0000000000..1dd3ce04ea --- /dev/null +++ b/documentation/client/interfaces/lib_cluster.RedisClusterOptions.html @@ -0,0 +1 @@ +RedisClusterOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface RedisClusterOptions<M, S>

Type parameters

Hierarchy

Index

Properties

Optional defaults

defaults?: Partial<RedisClusterClientOptions>

Optional maxCommandRedirections

maxCommandRedirections?: number

Optional modules

modules?: M

rootNodes

Optional scripts

scripts?: S

Optional useReplicas

useReplicas?: boolean

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_cluster_cluster_slots.ClusterNode.html b/documentation/client/interfaces/lib_cluster_cluster_slots.ClusterNode.html new file mode 100644 index 0000000000..cb2549e7fb --- /dev/null +++ b/documentation/client/interfaces/lib_cluster_cluster_slots.ClusterNode.html @@ -0,0 +1 @@ +ClusterNode | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Type parameters

Hierarchy

  • ClusterNode

Index

Properties

Properties

client

client: RedisClientType<M, S>

id

id: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands.RedisCommand.html b/documentation/client/interfaces/lib_commands.RedisCommand.html new file mode 100644 index 0000000000..c6c6096c7e --- /dev/null +++ b/documentation/client/interfaces/lib_commands.RedisCommand.html @@ -0,0 +1 @@ +RedisCommand | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional BUFFER_MODE

BUFFER_MODE?: boolean

Optional FIRST_KEY_INDEX

FIRST_KEY_INDEX?: number | ((...args: any[]) => string)

Optional IS_READ_ONLY

IS_READ_ONLY?: boolean

Methods

transformArguments

Optional transformReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Method
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands.RedisCommands.html b/documentation/client/interfaces/lib_commands.RedisCommands.html new file mode 100644 index 0000000000..8f8af8760e --- /dev/null +++ b/documentation/client/interfaces/lib_commands.RedisCommands.html @@ -0,0 +1 @@ +RedisCommands | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RedisCommands

Indexable

[command: string]: RedisCommand

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands.RedisModule.html b/documentation/client/interfaces/lib_commands.RedisModule.html new file mode 100644 index 0000000000..df36423399 --- /dev/null +++ b/documentation/client/interfaces/lib_commands.RedisModule.html @@ -0,0 +1 @@ +RedisModule | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RedisModule

Indexable

[command: string]: RedisCommand

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands.RedisModules.html b/documentation/client/interfaces/lib_commands.RedisModules.html new file mode 100644 index 0000000000..8831013c76 --- /dev/null +++ b/documentation/client/interfaces/lib_commands.RedisModules.html @@ -0,0 +1 @@ +RedisModules | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RedisModules

Indexable

[module: string]: RedisModule

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands.RedisPlugins.html b/documentation/client/interfaces/lib_commands.RedisPlugins.html new file mode 100644 index 0000000000..224206c8d8 --- /dev/null +++ b/documentation/client/interfaces/lib_commands.RedisPlugins.html @@ -0,0 +1 @@ +RedisPlugins | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface RedisPlugins<M, S>

Type parameters

Hierarchy

Index

Properties

Properties

Optional modules

modules?: M

Optional scripts

scripts?: S

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands.RedisScripts.html b/documentation/client/interfaces/lib_commands.RedisScripts.html new file mode 100644 index 0000000000..881ca5521f --- /dev/null +++ b/documentation/client/interfaces/lib_commands.RedisScripts.html @@ -0,0 +1 @@ +RedisScripts | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RedisScripts

Indexable

[script: string]: RedisScript

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_AUTH.AuthOptions.html b/documentation/client/interfaces/lib_commands_AUTH.AuthOptions.html new file mode 100644 index 0000000000..7e29749e3a --- /dev/null +++ b/documentation/client/interfaces/lib_commands_AUTH.AuthOptions.html @@ -0,0 +1 @@ +AuthOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • AuthOptions

Index

Properties

password

password: string

Optional username

username?: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html b/documentation/client/interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html new file mode 100644 index 0000000000..92d0bfffc6 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_CLUSTER_NODES.RedisClusterMasterNode.html @@ -0,0 +1 @@ +RedisClusterMasterNode | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

configEpoch

configEpoch: number

cport

cport: null | number

flags

flags: string[]

host

host: string

id

id: string

linkState

pingSent

pingSent: number

pongRecv

pongRecv: number

port

port: number

replicas

slots

slots: { from: number; to: number }[]

url

url: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html b/documentation/client/interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html new file mode 100644 index 0000000000..2af26aa69d --- /dev/null +++ b/documentation/client/interfaces/lib_commands_CLUSTER_NODES.RedisClusterReplicaNode.html @@ -0,0 +1 @@ +RedisClusterReplicaNode | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

configEpoch

configEpoch: number

cport

cport: null | number

flags

flags: string[]

host

host: string

id

id: string

linkState

pingSent

pingSent: number

pongRecv

pongRecv: number

port

port: number

url

url: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_HSCAN.HScanTuple.html b/documentation/client/interfaces/lib_commands_HSCAN.HScanTuple.html new file mode 100644 index 0000000000..bb2506509b --- /dev/null +++ b/documentation/client/interfaces/lib_commands_HSCAN.HScanTuple.html @@ -0,0 +1 @@ +HScanTuple | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • HScanTuple

Index

Properties

Properties

field

field: string

value

value: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_LPOS.LPosOptions.html b/documentation/client/interfaces/lib_commands_LPOS.LPosOptions.html new file mode 100644 index 0000000000..00c3d26caa --- /dev/null +++ b/documentation/client/interfaces/lib_commands_LPOS.LPosOptions.html @@ -0,0 +1 @@ +LPosOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • LPosOptions

Index

Properties

Properties

Optional MAXLEN

MAXLEN?: number

Optional RANK

RANK?: number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_SCAN.ScanCommandOptions.html b/documentation/client/interfaces/lib_commands_SCAN.ScanCommandOptions.html new file mode 100644 index 0000000000..cd611953c1 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_SCAN.ScanCommandOptions.html @@ -0,0 +1 @@ +ScanCommandOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Properties

Optional COUNT

COUNT?: number

Optional MATCH

MATCH?: string

Optional TYPE

TYPE?: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_SCAN.ScanReply.html b/documentation/client/interfaces/lib_commands_SCAN.ScanReply.html new file mode 100644 index 0000000000..a00cf1efef --- /dev/null +++ b/documentation/client/interfaces/lib_commands_SCAN.ScanReply.html @@ -0,0 +1 @@ +ScanReply | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ScanReply

Index

Properties

Properties

cursor

cursor: number

keys

keys: string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_XAUTOCLAIM.XAutoClaimOptions.html b/documentation/client/interfaces/lib_commands_XAUTOCLAIM.XAutoClaimOptions.html new file mode 100644 index 0000000000..c9013bc4bc --- /dev/null +++ b/documentation/client/interfaces/lib_commands_XAUTOCLAIM.XAutoClaimOptions.html @@ -0,0 +1 @@ +XAutoClaimOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • XAutoClaimOptions

Index

Properties

Properties

Optional COUNT

COUNT?: number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_XCLAIM.XClaimOptions.html b/documentation/client/interfaces/lib_commands_XCLAIM.XClaimOptions.html new file mode 100644 index 0000000000..50ec2cdfb8 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_XCLAIM.XClaimOptions.html @@ -0,0 +1 @@ +XClaimOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • XClaimOptions

Index

Properties

Optional FORCE

FORCE?: true

Optional IDLE

IDLE?: number

Optional RETRYCOUNT

RETRYCOUNT?: number

Optional TIME

TIME?: number | Date

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_XREADGROUP.XReadGroupOptions.html b/documentation/client/interfaces/lib_commands_XREADGROUP.XReadGroupOptions.html new file mode 100644 index 0000000000..163f776f97 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_XREADGROUP.XReadGroupOptions.html @@ -0,0 +1 @@ +XReadGroupOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • XReadGroupOptions

Index

Properties

Properties

Optional BLOCK

BLOCK?: number

Optional COUNT

COUNT?: number

Optional NOACK

NOACK?: true

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_XREADGROUP.XReadGroupStream.html b/documentation/client/interfaces/lib_commands_XREADGROUP.XReadGroupStream.html new file mode 100644 index 0000000000..e6f66871a8 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_XREADGROUP.XReadGroupStream.html @@ -0,0 +1 @@ +XReadGroupStream | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • XReadGroupStream

Index

Properties

Properties

id

id: string

key

key: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_ZRANGEBYLEX.ZRangeByLexOptions.html b/documentation/client/interfaces/lib_commands_ZRANGEBYLEX.ZRangeByLexOptions.html new file mode 100644 index 0000000000..5e22421450 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_ZRANGEBYLEX.ZRangeByLexOptions.html @@ -0,0 +1 @@ +ZRangeByLexOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ZRangeByLexOptions

Index

Properties

Properties

Optional LIMIT

LIMIT?: { count: number; offset: number }

Type declaration

  • count: number
  • offset: number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_ZRANGEBYSCORE.ZRangeByScoreOptions.html b/documentation/client/interfaces/lib_commands_ZRANGEBYSCORE.ZRangeByScoreOptions.html new file mode 100644 index 0000000000..d5d51fa255 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_ZRANGEBYSCORE.ZRangeByScoreOptions.html @@ -0,0 +1 @@ +ZRangeByScoreOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ZRangeByScoreOptions

Index

Properties

Properties

Optional LIMIT

LIMIT?: { count: number; offset: number }

Type declaration

  • count: number
  • offset: number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_generic_transformers.EvalOptions.html b/documentation/client/interfaces/lib_commands_generic_transformers.EvalOptions.html new file mode 100644 index 0000000000..0ac604f61f --- /dev/null +++ b/documentation/client/interfaces/lib_commands_generic_transformers.EvalOptions.html @@ -0,0 +1 @@ +EvalOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • EvalOptions

Index

Properties

Properties

Optional arguments

arguments?: string[]

Optional keys

keys?: string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_generic_transformers.GeoCoordinates.html b/documentation/client/interfaces/lib_commands_generic_transformers.GeoCoordinates.html new file mode 100644 index 0000000000..36cd5c4dc1 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_generic_transformers.GeoCoordinates.html @@ -0,0 +1 @@ +GeoCoordinates | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • GeoCoordinates

Index

Properties

latitude

latitude: string | number

longitude

longitude: string | number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html b/documentation/client/interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html new file mode 100644 index 0000000000..67a4e82f27 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_generic_transformers.GeoReplyWithMember.html @@ -0,0 +1 @@ +GeoReplyWithMember | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • GeoReplyWithMember

Index

Properties

Optional coordinates

coordinates?: { latitude: string; longitude: string }

Type declaration

  • latitude: string
  • longitude: string

Optional distance

distance?: number

Optional hash

hash?: string

member

member: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_generic_transformers.GeoSearchOptions.html b/documentation/client/interfaces/lib_commands_generic_transformers.GeoSearchOptions.html new file mode 100644 index 0000000000..d02c860962 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_generic_transformers.GeoSearchOptions.html @@ -0,0 +1 @@ +GeoSearchOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • GeoSearchOptions

Index

Properties

Properties

Optional COUNT

COUNT?: GeoCountArgument

Optional SORT

SORT?: "ASC" | "DESC"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_generic_transformers.ScanOptions.html b/documentation/client/interfaces/lib_commands_generic_transformers.ScanOptions.html new file mode 100644 index 0000000000..4cfa6963c6 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_generic_transformers.ScanOptions.html @@ -0,0 +1 @@ +ScanOptions | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Properties

Optional COUNT

COUNT?: number

Optional MATCH

MATCH?: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_generic_transformers.StreamMessageReply.html b/documentation/client/interfaces/lib_commands_generic_transformers.StreamMessageReply.html new file mode 100644 index 0000000000..3fca9da9b2 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_generic_transformers.StreamMessageReply.html @@ -0,0 +1 @@ +StreamMessageReply | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • StreamMessageReply

Index

Properties

Properties

id

id: string

message

message: TuplesObject

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_generic_transformers.TuplesObject.html b/documentation/client/interfaces/lib_commands_generic_transformers.TuplesObject.html new file mode 100644 index 0000000000..532d87c975 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_generic_transformers.TuplesObject.html @@ -0,0 +1 @@ +TuplesObject | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • TuplesObject

Indexable

[field: string]: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_commands_generic_transformers.ZMember.html b/documentation/client/interfaces/lib_commands_generic_transformers.ZMember.html new file mode 100644 index 0000000000..378dad2c78 --- /dev/null +++ b/documentation/client/interfaces/lib_commands_generic_transformers.ZMember.html @@ -0,0 +1 @@ +ZMember | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ZMember

Index

Properties

Properties

score

score: number

value

value: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_lua_script.RedisScriptConfig.html b/documentation/client/interfaces/lib_lua_script.RedisScriptConfig.html new file mode 100644 index 0000000000..5375d392b0 --- /dev/null +++ b/documentation/client/interfaces/lib_lua_script.RedisScriptConfig.html @@ -0,0 +1 @@ +RedisScriptConfig | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional BUFFER_MODE

BUFFER_MODE?: boolean

Optional FIRST_KEY_INDEX

FIRST_KEY_INDEX?: number | ((...args: any[]) => string)

Optional IS_READ_ONLY

IS_READ_ONLY?: boolean

NUMBER_OF_KEYS

NUMBER_OF_KEYS: number

SCRIPT

SCRIPT: string

Methods

transformArguments

Optional transformReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_lua_script.SHA1.html b/documentation/client/interfaces/lib_lua_script.SHA1.html new file mode 100644 index 0000000000..759c2fab21 --- /dev/null +++ b/documentation/client/interfaces/lib_lua_script.SHA1.html @@ -0,0 +1 @@ +SHA1 | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • SHA1

Index

Properties

Properties

SHA1

SHA1: string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/interfaces/lib_multi_command.RedisMultiQueuedCommand.html b/documentation/client/interfaces/lib_multi_command.RedisMultiQueuedCommand.html new file mode 100644 index 0000000000..fcc6cab27b --- /dev/null +++ b/documentation/client/interfaces/lib_multi_command.RedisMultiQueuedCommand.html @@ -0,0 +1 @@ +RedisMultiQueuedCommand | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • RedisMultiQueuedCommand

Index

Properties

args

Optional transformReply

transformReply?: (reply: RedisCommandRawReply, preserved?: unknown) => any

Type declaration

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Property
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules.html b/documentation/client/modules.html new file mode 100644 index 0000000000..5b7df90f2a --- /dev/null +++ b/documentation/client/modules.html @@ -0,0 +1 @@ +@node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

@node-redis/client

Index

Modules

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/index.html b/documentation/client/modules/index.html new file mode 100644 index 0000000000..dbccd686a3 --- /dev/null +++ b/documentation/client/modules/index.html @@ -0,0 +1 @@ +index | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

References

AbortError

Re-exports AbortError

AuthError

Re-exports AuthError

ClientClosedError

Re-exports ClientClosedError

ConnectionTimeoutError

Re-exports ConnectionTimeoutError

DisconnectsClientError

Re-exports DisconnectsClientError

RedisClientOptions

Re-exports RedisClientOptions

RedisClientType

Re-exports RedisClientType

RedisClusterOptions

Re-exports RedisClusterOptions

RedisClusterType

Re-exports RedisClusterType

RedisModules

Re-exports RedisModules

RedisScripts

Re-exports RedisScripts

SocketClosedUnexpectedlyError

Re-exports SocketClosedUnexpectedlyError

WatchError

Re-exports WatchError

defineScript

Re-exports defineScript

Functions

Const commandOptions

Const createClient

Const createCluster

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_client.html b/documentation/client/modules/lib_client.html new file mode 100644 index 0000000000..830314743c --- /dev/null +++ b/documentation/client/modules/lib_client.html @@ -0,0 +1 @@ +lib/client | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

ClientLegacyCommandArguments

ClientLegacyCommandArguments: LegacyCommandArguments | [...LegacyCommandArguments, ClientLegacyCallback]

InstantiableRedisClient

InstantiableRedisClient<M, S>: new (...args: ConstructorParameters<typeof default>) => RedisClientType<M, S>

Type parameters

Type declaration

RedisClientCommandSignature

RedisClientCommandSignature<C>: (...args: Parameters<C["transformArguments"]> | [options: CommandOptions<ClientCommandOptions>, rest: Parameters<C["transformArguments"]>]) => Promise<RedisCommandReply<C>>

Type parameters

Type declaration

RedisClientType

RedisClientType<M, S>: default<M, S> & WithCommands & WithModules<M> & WithScripts<S>

Type parameters

WithModules

WithModules<M>: { [ P in keyof M as M[P] extends never ? never : P]: { [ C in keyof M[P]]: RedisClientCommandSignature<M[P][C]> } }

Type parameters

WithScripts

WithScripts<S>: { [ P in keyof S as S[P] extends never ? never : P]: RedisClientCommandSignature<S[P]> }

Type parameters

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_client_commands.html b/documentation/client/modules/lib_client_commands.html new file mode 100644 index 0000000000..e3fc7c751f --- /dev/null +++ b/documentation/client/modules/lib_client_commands.html @@ -0,0 +1 @@ +lib/client/commands | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/client/commands

Index

Properties

Properties

default

default: { ACL_CAT: lib/commands/ACL_CAT; ACL_DELUSER: lib/commands/ACL_DELUSER; ACL_GENPASS: lib/commands/ACL_GENPASS; ACL_GETUSER: lib/commands/ACL_GETUSER; ACL_LIST: lib/commands/ACL_LIST; ACL_LOAD: lib/commands/ACL_LOAD; ACL_LOG: lib/commands/ACL_LOG; ACL_LOG_RESET: lib/commands/ACL_LOG_RESET; ACL_SAVE: lib/commands/ACL_SAVE; ACL_SETUSER: lib/commands/ACL_SETUSER; ACL_USERS: lib/commands/ACL_USERS; ACL_WHOAMI: lib/commands/ACL_WHOAMI; APPEND: lib/commands/APPEND; ASKING: lib/commands/ASKING; AUTH: lib/commands/AUTH; BGREWRITEAOF: lib/commands/BGREWRITEAOF; BGSAVE: lib/commands/BGSAVE; BITCOUNT: lib/commands/BITCOUNT; BITFIELD: lib/commands/BITFIELD; BITOP: lib/commands/BITOP; BITPOS: lib/commands/BITPOS; BLMOVE: lib/commands/BLMOVE; BLPOP: lib/commands/BLPOP; BRPOP: lib/commands/BRPOP; BRPOPLPUSH: lib/commands/BRPOPLPUSH; BZPOPMAX: lib/commands/BZPOPMAX; BZPOPMIN: lib/commands/BZPOPMIN; CLIENT_CACHING: lib/commands/CLIENT_CACHING; CLIENT_GETNAME: lib/commands/CLIENT_GETNAME; CLIENT_GETREDIR: lib/commands/CLIENT_GETREDIR; CLIENT_ID: lib/commands/CLIENT_ID; CLIENT_INFO: lib/commands/CLIENT_INFO; CLIENT_KILL: lib/commands/CLIENT_KILL; CLIENT_SETNAME: lib/commands/CLIENT_SETNAME; CLUSTER_ADDSLOTS: lib/commands/CLUSTER_ADDSLOTS; CLUSTER_FLUSHSLOTS: lib/commands/CLUSTER_FLUSHSLOTS; CLUSTER_INFO: lib/commands/CLUSTER_INFO; CLUSTER_MEET: lib/commands/CLUSTER_MEET; CLUSTER_NODES: lib/commands/CLUSTER_NODES; CLUSTER_RESET: lib/commands/CLUSTER_RESET; CLUSTER_SETSLOT: lib/commands/CLUSTER_SETSLOT; CLUSTER_SLOTS: lib/commands/CLUSTER_SLOTS; COMMAND: lib/commands/COMMAND; COMMAND_COUNT: lib/commands/COMMAND_COUNT; COMMAND_GETKEYS: lib/commands/COMMAND_GETKEYS; COMMAND_INFO: lib/commands/COMMAND_INFO; CONFIG_GET: lib/commands/CONFIG_GET; CONFIG_RESETASTAT: lib/commands/CONFIG_RESETSTAT; CONFIG_REWRITE: lib/commands/CONFIG_REWRITE; CONFIG_SET: lib/commands/CONFIG_SET; COPY: lib/commands/COPY; DBSIZE: lib/commands/DBSIZE; DECR: lib/commands/DECR; DECRBY: lib/commands/DECRBY; DEL: lib/commands/DEL; DISCARD: lib/commands/DISCARD; DUMP: lib/commands/DUMP; ECHO: lib/commands/ECHO; EVAL: lib/commands/EVAL; EVALSHA: lib/commands/EVALSHA; EXISTS: lib/commands/EXISTS; EXPIRE: lib/commands/EXPIRE; EXPIREAT: lib/commands/EXPIREAT; FAILOVER: lib/commands/FAILOVER; FLUSHALL: lib/commands/FLUSHALL; FLUSHDB: lib/commands/FLUSHDB; GEOADD: lib/commands/GEOADD; GEODIST: lib/commands/GEODIST; GEOHASH: lib/commands/GEOHASH; GEOPOS: lib/commands/GEOPOS; GEOSEARCH: lib/commands/GEOSEARCH; GEOSEARCHSTORE: lib/commands/GEOSEARCHSTORE; GEOSEARCH_WITH: lib/commands/GEOSEARCH_WITH; GET: lib/commands/GET; GETBIT: lib/commands/GETBIT; GETDEL: lib/commands/GETDEL; GETEX: lib/commands/GETEX; GETRANGE: lib/commands/GETRANGE; GETSET: lib/commands/GETSET; GET_BUFFER: lib/commands/GET_BUFFER; HDEL: lib/commands/HDEL; HELLO: lib/commands/HELLO; HEXISTS: lib/commands/HEXISTS; HGET: lib/commands/HGET; HGETALL: lib/commands/HGETALL; HINCRBY: lib/commands/HINCRBY; HINCRBYFLOAT: lib/commands/HINCRBYFLOAT; HKEYS: lib/commands/HKEYS; HLEN: lib/commands/HLEN; HMGET: lib/commands/HMGET; HRANDFIELD: lib/commands/HRANDFIELD; HRANDFIELD_COUNT: lib/commands/HRANDFIELD_COUNT; HRANDFIELD_COUNT_WITHVALUES: lib/commands/HRANDFIELD_COUNT_WITHVALUES; HSCAN: lib/commands/HSCAN; HSET: lib/commands/HSET; HSETNX: lib/commands/HSETNX; HSTRLEN: lib/commands/HSTRLEN; HVALS: lib/commands/HVALS; INCR: lib/commands/INCR; INCRBY: lib/commands/INCRBY; INCRBYFLOAT: lib/commands/INCRBYFLOAT; INFO: lib/commands/INFO; KEYS: lib/commands/KEYS; LASTSAVE: lib/commands/LASTSAVE; LINDEX: lib/commands/LINDEX; LINSERT: lib/commands/LINSERT; LLEN: lib/commands/LLEN; LMOVE: lib/commands/LMOVE; LOLWUT: lib/commands/LOLWUT; LPOP: lib/commands/LPOP; LPOP_COUNT: lib/commands/LPOP_COUNT; LPOS: lib/commands/LPOS; LPOS_COUNT: lib/commands/LPOS_COUNT; LPUSH: lib/commands/LPUSH; LPUSHX: lib/commands/LPUSHX; LRANGE: lib/commands/LRANGE; LREM: lib/commands/LREM; LSET: lib/commands/LSET; LTRIM: lib/commands/LTRIM; MEMOERY_DOCTOR: lib/commands/MEMORY_DOCTOR; MEMORY_MALLOC-STATS: lib/commands/MEMORY_MALLOC-STATS; MEMORY_PURGE: lib/commands/MEMORY_PURGE; MEMORY_STATS: lib/commands/MEMORY_STATS; MEMORY_USAGE: lib/commands/MEMORY_USAGE; MGET: lib/commands/MGET; MIGRATE: lib/commands/MIGRATE; MODULE_LIST: lib/commands/MODULE_LIST; MODULE_LOAD: lib/commands/MODULE_LOAD; MODULE_UNLOAD: lib/commands/MODULE_UNLOAD; MOVE: lib/commands/MOVE; MSET: lib/commands/MSET; MSETNX: lib/commands/MSETNX; PERSIST: lib/commands/PERSIST; PEXPIRE: lib/commands/PEXPIRE; PEXPIREAT: lib/commands/PEXPIREAT; PFADD: lib/commands/PFADD; PFCOUNT: lib/commands/PFCOUNT; PFMERGE: lib/commands/PFMERGE; PING: lib/commands/PING; PSETEX: lib/commands/PSETEX; PTTL: lib/commands/PTTL; PUBLISH: lib/commands/PUBLISH; PUBSUB_CHANNELS: lib/commands/PUBSUB_CHANNELS; PUBSUB_NUMPAT: lib/commands/PUBSUB_NUMPAT; PUBSUB_NUMSUB: lib/commands/PUBSUB_NUMSUB; RANDOMKEY: lib/commands/RANDOMKEY; READONLY: lib/commands/READONLY; READWRITE: lib/commands/READWRITE; RENAME: lib/commands/RENAME; RENAMENX: lib/commands/RENAMENX; REPLICAOF: lib/commands/REPLICAOF; RESTORE-ASKING: lib/commands/RESTORE-ASKING; ROLE: lib/commands/ROLE; RPOP: lib/commands/RPOP; RPOPLPUSH: lib/commands/RPOPLPUSH; RPOP_COUNT: lib/commands/RPOP_COUNT; RPUSH: lib/commands/RPUSH; RPUSHX: lib/commands/RPUSHX; SADD: lib/commands/SADD; SAVE: lib/commands/SAVE; SCAN: lib/commands/SCAN; SCARD: lib/commands/SCARD; SCRIPT_DEBUG: lib/commands/SCRIPT_DEBUG; SCRIPT_EXISTS: lib/commands/SCRIPT_EXISTS; SCRIPT_FLUSH: lib/commands/SCRIPT_FLUSH; SCRIPT_KILL: lib/commands/SCRIPT_KILL; SCRIPT_LOAD: lib/commands/SCRIPT_LOAD; SDIFF: lib/commands/SDIFF; SDIFFSTORE: lib/commands/SDIFFSTORE; SET: lib/commands/SET; SETBIT: lib/commands/SETBIT; SETEX: lib/commands/SETEX; SETNX: lib/commands/SETNX; SETRANGE: lib/commands/SETRANGE; SHUTDOWN: lib/commands/SHUTDOWN; SINTER: lib/commands/SINTER; SINTERSTORE: lib/commands/SINTERSTORE; SISMEMBER: lib/commands/SISMEMBER; SMEMBERS: lib/commands/SMEMBERS; SMISMEMBER: lib/commands/SMISMEMBER; SMOVE: lib/commands/SMOVE; SORT: lib/commands/SORT; SPOP: lib/commands/SPOP; SRANDMEMBER: lib/commands/SRANDMEMBER; SRANDMEMBER_COUNT: lib/commands/SRANDMEMBER_COUNT; SREM: lib/commands/SREM; SSCAN: lib/commands/SSCAN; STRLEN: lib/commands/STRLEN; SUNION: lib/commands/SUNION; SUNIONSTORE: lib/commands/SUNIONSTORE; SWAPDB: lib/commands/SWAPDB; TIME: lib/commands/TIME; TOUCH: lib/commands/TOUCH; TTL: lib/commands/TTL; TYPE: lib/commands/TYPE; UNLINK: lib/commands/UNLINK; UNWATCH: lib/commands/UNWATCH; WAIT: lib/commands/WAIT; WATCH: lib/commands/WATCH; XACK: lib/commands/XACK; XADD: lib/commands/XADD; XAUTOCLAIM: lib/commands/XAUTOCLAIM; XAUTOCLAIM_JUSTID: lib/commands/XAUTOCLAIM_JUSTID; XCLAIM: lib/commands/XCLAIM; XCLAIM_JUSTID: lib/commands/XCLAIM_JUSTID; XDEL: lib/commands/XDEL; XGROUP_CREATE: lib/commands/XGROUP_CREATE; XGROUP_CREATECONSUMER: lib/commands/XGROUP_CREATECONSUMER; XGROUP_DELCONSUMER: lib/commands/XGROUP_DELCONSUMER; XGROUP_DESTROY: lib/commands/XGROUP_DESTROY; XGROUP_SETID: lib/commands/XGROUP_SETID; XINFO_CONSUMERS: lib/commands/XINFO_CONSUMERS; XINFO_GROUPS: lib/commands/XINFO_GROUPS; XINFO_STREAM: lib/commands/XINFO_STREAM; XLEN: lib/commands/XLEN; XPENDING: lib/commands/XPENDING; XPENDING_RANGE: lib/commands/XPENDING_RANGE; XRANGE: lib/commands/XRANGE; XREAD: lib/commands/XREAD; XREADGROUP: lib/commands/XREADGROUP; XREVRANGE: lib/commands/XREVRANGE; XTRIM: lib/commands/XTRIM; ZADD: lib/commands/ZADD; ZCARD: lib/commands/ZCARD; ZCOUNT: lib/commands/ZCOUNT; ZDIFF: lib/commands/ZDIFF; ZDIFFSTORE: lib/commands/ZDIFFSTORE; ZDIFF_WITHSCORES: lib/commands/ZDIFF_WITHSCORES; ZINCRBY: lib/commands/ZINCRBY; ZINTER: lib/commands/ZINTER; ZINTERSTORE: lib/commands/ZINTERSTORE; ZINTER_WITHSCORES: lib/commands/ZINTER_WITHSCORES; ZLEXCOUNT: lib/commands/ZLEXCOUNT; ZMSCORE: lib/commands/ZMSCORE; ZPOPMAX: lib/commands/ZPOPMAX; ZPOPMAX_COUNT: lib/commands/ZPOPMAX_COUNT; ZPOPMIN: lib/commands/ZPOPMIN; ZPOPMIN_COUNT: lib/commands/ZPOPMIN_COUNT; ZRANDMEMBER: lib/commands/ZRANDMEMBER; ZRANDMEMBER_COUNT: lib/commands/ZRANDMEMBER_COUNT; ZRANDMEMBER_COUNT_WITHSCORES: lib/commands/ZRANDMEMBER_COUNT_WITHSCORES; ZRANGE: lib/commands/ZRANGE; ZRANGEBYLEX: lib/commands/ZRANGEBYLEX; ZRANGEBYSCORE: lib/commands/ZRANGEBYSCORE; ZRANGEBYSCORE_WITHSCORES: lib/commands/ZRANGEBYSCORE_WITHSCORES; ZRANGESTORE: lib/commands/ZRANGESTORE; ZRANGE_WITHSCORES: lib/commands/ZRANGE_WITHSCORES; ZRANK: lib/commands/ZRANK; ZREM: lib/commands/ZREM; ZREMRANGEBYLEX: lib/commands/ZREMRANGEBYLEX; ZREMRANGEBYRANK: lib/commands/ZREMRANGEBYRANK; ZREMRANGEBYSCORE: lib/commands/ZREMRANGEBYSCORE; ZREVRANK: lib/commands/ZREVRANK; ZSCAN: lib/commands/ZSCAN; ZSCORE: lib/commands/ZSCORE; ZUNION: lib/commands/ZUNION; ZUNIONSTORE: lib/commands/ZUNIONSTORE; ZUNION_WITHSCORES: lib/commands/ZUNION_WITHSCORES; aclCat: lib/commands/ACL_CAT; aclDelUser: lib/commands/ACL_DELUSER; aclGenPass: lib/commands/ACL_GENPASS; aclGetUser: lib/commands/ACL_GETUSER; aclList: lib/commands/ACL_LIST; aclLoad: lib/commands/ACL_LOAD; aclLog: lib/commands/ACL_LOG; aclLogReset: lib/commands/ACL_LOG_RESET; aclSave: lib/commands/ACL_SAVE; aclSetUser: lib/commands/ACL_SETUSER; aclUsers: lib/commands/ACL_USERS; aclWhoAmI: lib/commands/ACL_WHOAMI; append: lib/commands/APPEND; asking: lib/commands/ASKING; auth: lib/commands/AUTH; bgRewriteAof: lib/commands/BGREWRITEAOF; bgSave: lib/commands/BGSAVE; bitCount: lib/commands/BITCOUNT; bitField: lib/commands/BITFIELD; bitOp: lib/commands/BITOP; bitPos: lib/commands/BITPOS; blMove: lib/commands/BLMOVE; blPop: lib/commands/BLPOP; brPop: lib/commands/BRPOP; brPopLPush: lib/commands/BRPOPLPUSH; bzPopMax: lib/commands/BZPOPMAX; bzPopMin: lib/commands/BZPOPMIN; clientCaching: lib/commands/CLIENT_CACHING; clientGetName: lib/commands/CLIENT_GETNAME; clientGetRedir: lib/commands/CLIENT_GETREDIR; clientId: lib/commands/CLIENT_ID; clientInfo: lib/commands/CLIENT_INFO; clientKill: lib/commands/CLIENT_KILL; clientSetName: lib/commands/CLIENT_SETNAME; clusterAddSlots: lib/commands/CLUSTER_ADDSLOTS; clusterFlushSlots: lib/commands/CLUSTER_FLUSHSLOTS; clusterInfo: lib/commands/CLUSTER_INFO; clusterMeet: lib/commands/CLUSTER_MEET; clusterNodes: lib/commands/CLUSTER_NODES; clusterReset: lib/commands/CLUSTER_RESET; clusterSetSlot: lib/commands/CLUSTER_SETSLOT; clusterSlots: lib/commands/CLUSTER_SLOTS; command: lib/commands/COMMAND; commandCount: lib/commands/COMMAND_COUNT; commandGetKeys: lib/commands/COMMAND_GETKEYS; commandInfo: lib/commands/COMMAND_INFO; configGet: lib/commands/CONFIG_GET; configResetStat: lib/commands/CONFIG_RESETSTAT; configRewrite: lib/commands/CONFIG_REWRITE; configSet: lib/commands/CONFIG_SET; copy: lib/commands/COPY; dbSize: lib/commands/DBSIZE; decr: lib/commands/DECR; decrBy: lib/commands/DECRBY; del: lib/commands/DEL; discard: lib/commands/DISCARD; dump: lib/commands/DUMP; echo: lib/commands/ECHO; eval: lib/commands/EVAL; evalSha: lib/commands/EVALSHA; exists: lib/commands/EXISTS; expire: lib/commands/EXPIRE; expireAt: lib/commands/EXPIREAT; failover: lib/commands/FAILOVER; flushAll: lib/commands/FLUSHALL; flushDb: lib/commands/FLUSHDB; geoAdd: lib/commands/GEOADD; geoDist: lib/commands/GEODIST; geoHash: lib/commands/GEOHASH; geoPos: lib/commands/GEOPOS; geoSearch: lib/commands/GEOSEARCH; geoSearchStore: lib/commands/GEOSEARCHSTORE; geoSearchWith: lib/commands/GEOSEARCH_WITH; get: lib/commands/GET; getBit: lib/commands/GETBIT; getBuffer: lib/commands/GET_BUFFER; getDel: lib/commands/GETDEL; getEx: lib/commands/GETEX; getRange: lib/commands/GETRANGE; getSet: lib/commands/GETSET; hDel: lib/commands/HDEL; hExists: lib/commands/HEXISTS; hGet: lib/commands/HGET; hGetAll: lib/commands/HGETALL; hIncrBy: lib/commands/HINCRBY; hIncrByFloat: lib/commands/HINCRBYFLOAT; hKeys: lib/commands/HKEYS; hLen: lib/commands/HLEN; hRandField: lib/commands/HRANDFIELD; hRandFieldCount: lib/commands/HRANDFIELD_COUNT; hRandFieldCountWithValues: lib/commands/HRANDFIELD_COUNT_WITHVALUES; hScan: lib/commands/HSCAN; hSet: lib/commands/HSET; hSetNX: lib/commands/HSETNX; hStrLen: lib/commands/HSTRLEN; hVals: lib/commands/HVALS; hello: lib/commands/HELLO; hmGet: lib/commands/HMGET; incr: lib/commands/INCR; incrBy: lib/commands/INCRBY; incrByFloat: lib/commands/INCRBYFLOAT; info: lib/commands/INFO; keys: lib/commands/KEYS; lIndex: lib/commands/LINDEX; lInsert: lib/commands/LINSERT; lLen: lib/commands/LLEN; lMove: lib/commands/LMOVE; lPop: lib/commands/LPOP; lPopCount: lib/commands/LPOP_COUNT; lPos: lib/commands/LPOS; lPosCount: lib/commands/LPOS_COUNT; lPush: lib/commands/LPUSH; lPushX: lib/commands/LPUSHX; lRange: lib/commands/LRANGE; lRem: lib/commands/LREM; lSet: lib/commands/LSET; lTrim: lib/commands/LTRIM; lastSave: lib/commands/LASTSAVE; lolwut: lib/commands/LOLWUT; mGet: lib/commands/MGET; mSet: lib/commands/MSET; mSetNX: lib/commands/MSETNX; memoryDoctor: lib/commands/MEMORY_DOCTOR; memoryMallocStats: lib/commands/MEMORY_MALLOC-STATS; memoryPurge: lib/commands/MEMORY_PURGE; memoryStats: lib/commands/MEMORY_STATS; memoryUsage: lib/commands/MEMORY_USAGE; migrate: lib/commands/MIGRATE; moduleList: lib/commands/MODULE_LIST; moduleLoad: lib/commands/MODULE_LOAD; moduleUnload: lib/commands/MODULE_UNLOAD; move: lib/commands/MOVE; pExpire: lib/commands/PEXPIRE; pExpireAt: lib/commands/PEXPIREAT; pSetEx: lib/commands/PSETEX; pTTL: lib/commands/PTTL; persist: lib/commands/PERSIST; pfAdd: lib/commands/PFADD; pfCount: lib/commands/PFCOUNT; pfMerge: lib/commands/PFMERGE; ping: lib/commands/PING; pubSubChannels: lib/commands/PUBSUB_CHANNELS; pubSubNumPat: lib/commands/PUBSUB_NUMPAT; pubSubNumSub: lib/commands/PUBSUB_NUMSUB; publish: lib/commands/PUBLISH; rPop: lib/commands/RPOP; rPopCount: lib/commands/RPOP_COUNT; rPopLPush: lib/commands/RPOPLPUSH; rPush: lib/commands/RPUSH; rPushX: lib/commands/RPUSHX; randomKey: lib/commands/RANDOMKEY; readonly: lib/commands/READONLY; readwrite: lib/commands/READWRITE; rename: lib/commands/RENAME; renameNX: lib/commands/RENAMENX; replicaOf: lib/commands/REPLICAOF; restoreAsking: lib/commands/RESTORE-ASKING; role: lib/commands/ROLE; sAdd: lib/commands/SADD; sCard: lib/commands/SCARD; sDiff: lib/commands/SDIFF; sDiffStore: lib/commands/SDIFFSTORE; sInter: lib/commands/SINTER; sInterStore: lib/commands/SINTERSTORE; sIsMember: lib/commands/SISMEMBER; sMembers: lib/commands/SMEMBERS; sMove: lib/commands/SMOVE; sPop: lib/commands/SPOP; sRandMember: lib/commands/SRANDMEMBER; sRandMemberCount: lib/commands/SRANDMEMBER_COUNT; sRem: lib/commands/SREM; sScan: lib/commands/SSCAN; sUnion: lib/commands/SUNION; sUnionStore: lib/commands/SUNIONSTORE; save: lib/commands/SAVE; scan: lib/commands/SCAN; scriptDebug: lib/commands/SCRIPT_DEBUG; scriptExists: lib/commands/SCRIPT_EXISTS; scriptFlush: lib/commands/SCRIPT_FLUSH; scriptKill: lib/commands/SCRIPT_KILL; scriptLoad: lib/commands/SCRIPT_LOAD; set: lib/commands/SET; setBit: lib/commands/SETBIT; setEx: lib/commands/SETEX; setNX: lib/commands/SETNX; setRange: lib/commands/SETRANGE; shutdown: lib/commands/SHUTDOWN; smIsMember: lib/commands/SMISMEMBER; sort: lib/commands/SORT; strLen: lib/commands/STRLEN; swapDb: lib/commands/SWAPDB; time: lib/commands/TIME; touch: lib/commands/TOUCH; ttl: lib/commands/TTL; type: lib/commands/TYPE; unlink: lib/commands/UNLINK; unwatch: lib/commands/UNWATCH; wait: lib/commands/WAIT; watch: lib/commands/WATCH; xAck: lib/commands/XACK; xAdd: lib/commands/XADD; xAutoClaim: lib/commands/XAUTOCLAIM; xAutoClaimJustId: lib/commands/XAUTOCLAIM_JUSTID; xClaim: lib/commands/XCLAIM; xClaimJustId: lib/commands/XCLAIM_JUSTID; xDel: lib/commands/XDEL; xGroupCreate: lib/commands/XGROUP_CREATE; xGroupCreateConsumer: lib/commands/XGROUP_CREATECONSUMER; xGroupDelConsumer: lib/commands/XGROUP_DELCONSUMER; xGroupDestroy: lib/commands/XGROUP_DESTROY; xGroupSetId: lib/commands/XGROUP_SETID; xInfoConsumers: lib/commands/XINFO_CONSUMERS; xInfoGroups: lib/commands/XINFO_GROUPS; xInfoStream: lib/commands/XINFO_STREAM; xLen: lib/commands/XLEN; xPending: lib/commands/XPENDING; xPendingRange: lib/commands/XPENDING_RANGE; xRange: lib/commands/XRANGE; xRead: lib/commands/XREAD; xReadGroup: lib/commands/XREADGROUP; xRevRange: lib/commands/XREVRANGE; xTrim: lib/commands/XTRIM; zAdd: lib/commands/ZADD; zCard: lib/commands/ZCARD; zCount: lib/commands/ZCOUNT; zDiff: lib/commands/ZDIFF; zDiffStore: lib/commands/ZDIFFSTORE; zDiffWithScores: lib/commands/ZDIFF_WITHSCORES; zIncrBy: lib/commands/ZINCRBY; zInter: lib/commands/ZINTER; zInterStore: lib/commands/ZINTERSTORE; zInterWithScores: lib/commands/ZINTER_WITHSCORES; zLexCount: lib/commands/ZLEXCOUNT; zPopMax: lib/commands/ZPOPMAX; zPopMaxCount: lib/commands/ZPOPMAX_COUNT; zPopMin: lib/commands/ZPOPMIN; zPopMinCount: lib/commands/ZPOPMIN_COUNT; zRandMember: lib/commands/ZRANDMEMBER; zRandMemberCount: lib/commands/ZRANDMEMBER_COUNT; zRandMemberCountWithScores: lib/commands/ZRANDMEMBER_COUNT_WITHSCORES; zRange: lib/commands/ZRANGE; zRangeByLex: lib/commands/ZRANGEBYLEX; zRangeByScore: lib/commands/ZRANGEBYSCORE; zRangeByScoreWithScores: lib/commands/ZRANGEBYSCORE_WITHSCORES; zRangeStore: lib/commands/ZRANGESTORE; zRangeWithScores: lib/commands/ZRANGE_WITHSCORES; zRank: lib/commands/ZRANK; zRem: lib/commands/ZREM; zRemRangeByLex: lib/commands/ZREMRANGEBYLEX; zRemRangeByRank: lib/commands/ZREMRANGEBYRANK; zRemRangeByScore: lib/commands/ZREMRANGEBYSCORE; zRevRank: lib/commands/ZREVRANK; zScan: lib/commands/ZSCAN; zScore: lib/commands/ZSCORE; zUnion: lib/commands/ZUNION; zUnionStore: lib/commands/ZUNIONSTORE; zUnionWithScores: lib/commands/ZUNION_WITHSCORES; zmScore: lib/commands/ZMSCORE }

Type declaration

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_client_commands_queue.html b/documentation/client/modules/lib_client_commands_queue.html new file mode 100644 index 0000000000..09ec70164f --- /dev/null +++ b/documentation/client/modules/lib_client_commands_queue.html @@ -0,0 +1 @@ +lib/client/commands-queue | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/client/commands-queue

Index

Type aliases

PubSubListener

PubSubListener<BUFFER_MODE, T>: (message: T, channel: T) => unknown

Type parameters

  • BUFFER_MODE: boolean = false

  • T = BUFFER_MODE extends true ? Buffer : string

Type declaration

    • (message: T, channel: T): unknown
    • Parameters

      • message: T
      • channel: T

      Returns unknown

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_client_multi_command.html b/documentation/client/modules/lib_client_multi_command.html new file mode 100644 index 0000000000..da5721818b --- /dev/null +++ b/documentation/client/modules/lib_client_multi_command.html @@ -0,0 +1 @@ +lib/client/multi-command | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/client/multi-command

Index

Type aliases

RedisClientMultiCommandType

RedisClientMultiCommandType<M, S>: default & WithCommands<M, S> & WithModules<M, S> & WithScripts<M, S>

Type parameters

RedisClientMultiExecutor

RedisClientMultiExecutor: (queue: RedisMultiQueuedCommand[], chainId?: symbol) => Promise<RedisCommandRawReply[]>

Type declaration

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_client_socket.html b/documentation/client/modules/lib_client_socket.html new file mode 100644 index 0000000000..46d6a648a3 --- /dev/null +++ b/documentation/client/modules/lib_client_socket.html @@ -0,0 +1 @@ +lib/client/socket | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/client/socket

Index

Type aliases

RedisNetSocketOptions

RedisNetSocketOptions: Partial<net.SocketConnectOpts>

RedisSocketInitiator

RedisSocketInitiator: () => Promise<void>

Type declaration

    • (): Promise<void>
    • Returns Promise<void>

RedisSocketOptions

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_cluster.html b/documentation/client/modules/lib_cluster.html new file mode 100644 index 0000000000..a2608b21c3 --- /dev/null +++ b/documentation/client/modules/lib_cluster.html @@ -0,0 +1 @@ +lib/cluster | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

RedisClusterClientOptions

RedisClusterClientOptions: Omit<RedisClientOptions<Record<string, never>, Record<string, never>>, "modules" | "scripts">

RedisClusterType

RedisClusterType<M, S>: default<M, S> & WithCommands & WithModules<M> & WithScripts<S>

Type parameters

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_cluster_cluster_slots.html b/documentation/client/modules/lib_cluster_cluster_slots.html new file mode 100644 index 0000000000..2a8260a29b --- /dev/null +++ b/documentation/client/modules/lib_cluster_cluster_slots.html @@ -0,0 +1 @@ +lib/cluster/cluster-slots | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/cluster/cluster-slots

Index

Classes

Interfaces

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_cluster_commands.html b/documentation/client/modules/lib_cluster_commands.html new file mode 100644 index 0000000000..83206732a2 --- /dev/null +++ b/documentation/client/modules/lib_cluster_commands.html @@ -0,0 +1 @@ +lib/cluster/commands | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/cluster/commands

Index

Properties

Properties

default

default: { APPEND: lib/commands/APPEND; BITCOUNT: lib/commands/BITCOUNT; BITFIELD: lib/commands/BITFIELD; BITOP: lib/commands/BITOP; BITPOS: lib/commands/BITPOS; BLMOVE: lib/commands/BLMOVE; BLPOP: lib/commands/BLPOP; BRPOP: lib/commands/BRPOP; BRPOPLPUSH: lib/commands/BRPOPLPUSH; BZPOPMAX: lib/commands/BZPOPMAX; BZPOPMIN: lib/commands/BZPOPMIN; COPY: lib/commands/COPY; DECR: lib/commands/DECR; DECRBY: lib/commands/DECRBY; DEL: lib/commands/DEL; DUMP: lib/commands/DUMP; EVAL: lib/commands/EVAL; EVALSHA: lib/commands/EVALSHA; EXISTS: lib/commands/EXISTS; EXPIRE: lib/commands/EXPIRE; EXPIREAT: lib/commands/EXPIREAT; GEOADD: lib/commands/GEOADD; GEODIST: lib/commands/GEODIST; GEOHASH: lib/commands/GEOHASH; GEOPOS: lib/commands/GEOPOS; GEOSEARCH: lib/commands/GEOSEARCH; GEOSEARCHSTORE: lib/commands/GEOSEARCHSTORE; GEOSEARCH_WITH: lib/commands/GEOSEARCH_WITH; GET: lib/commands/GET; GETBIT: lib/commands/GETBIT; GETDEL: lib/commands/GETDEL; GETEX: lib/commands/GETEX; GETRANGE: lib/commands/GETRANGE; GETSET: lib/commands/GETSET; GET_BUFFER: lib/commands/GET_BUFFER; HDEL: lib/commands/HDEL; HEXISTS: lib/commands/HEXISTS; HGET: lib/commands/HGET; HGETALL: lib/commands/HGETALL; HINCRBY: lib/commands/HINCRBY; HINCRBYFLOAT: lib/commands/HINCRBYFLOAT; HKEYS: lib/commands/HKEYS; HLEN: lib/commands/HLEN; HMGET: lib/commands/HMGET; HRANDFIELD: lib/commands/HRANDFIELD; HRANDFIELD_COUNT: lib/commands/HRANDFIELD_COUNT; HRANDFIELD_COUNT_WITHVALUES: lib/commands/HRANDFIELD_COUNT_WITHVALUES; HSCAN: lib/commands/HSCAN; HSET: lib/commands/HSET; HSETNX: lib/commands/HSETNX; HSTRLEN: lib/commands/HSTRLEN; HVALS: lib/commands/HVALS; INCR: lib/commands/INCR; INCRBY: lib/commands/INCRBY; INCRBYFLOAT: lib/commands/INCRBYFLOAT; LINDEX: lib/commands/LINDEX; LINSERT: lib/commands/LINSERT; LLEN: lib/commands/LLEN; LMOVE: lib/commands/LMOVE; LPOP: lib/commands/LPOP; LPOP_COUNT: lib/commands/LPOP_COUNT; LPOS: lib/commands/LPOS; LPOS_COUNT: lib/commands/LPOS_COUNT; LPUSH: lib/commands/LPUSH; LPUSHX: lib/commands/LPUSHX; LRANGE: lib/commands/LRANGE; LREM: lib/commands/LREM; LSET: lib/commands/LSET; LTRIM: lib/commands/LTRIM; MGET: lib/commands/MGET; MIGRATE: lib/commands/MIGRATE; MSET: lib/commands/MSET; MSETNX: lib/commands/MSETNX; PERSIST: lib/commands/PERSIST; PEXPIRE: lib/commands/PEXPIRE; PEXPIREAT: lib/commands/PEXPIREAT; PFADD: lib/commands/PFADD; PFCOUNT: lib/commands/PFCOUNT; PFMERGE: lib/commands/PFMERGE; PSETEX: lib/commands/PSETEX; PTTL: lib/commands/PTTL; PUBLISH: lib/commands/PUBLISH; RENAME: lib/commands/RENAME; RENAMENX: lib/commands/RENAMENX; RPOP: lib/commands/RPOP; RPOPLPUSH: lib/commands/RPOPLPUSH; RPOP_COUNT: lib/commands/RPOP_COUNT; RPUSH: lib/commands/RPUSH; RPUSHX: lib/commands/RPUSHX; SADD: lib/commands/SADD; SCARD: lib/commands/SCARD; SDIFF: lib/commands/SDIFF; SDIFFSTORE: lib/commands/SDIFFSTORE; SET: lib/commands/SET; SETBIT: lib/commands/SETBIT; SETEX: lib/commands/SETEX; SETNX: lib/commands/SETNX; SETRANGE: lib/commands/SETRANGE; SINTER: lib/commands/SINTER; SINTERSTORE: lib/commands/SINTERSTORE; SISMEMBER: lib/commands/SISMEMBER; SMEMBERS: lib/commands/SMEMBERS; SMISMEMBER: lib/commands/SMISMEMBER; SMOVE: lib/commands/SMOVE; SORT: lib/commands/SORT; SPOP: lib/commands/SPOP; SRANDMEMBER: lib/commands/SRANDMEMBER; SRANDMEMBER_COUNT: lib/commands/SRANDMEMBER_COUNT; SREM: lib/commands/SREM; SSCAN: lib/commands/SSCAN; STRLEN: lib/commands/STRLEN; SUNION: lib/commands/SUNION; SUNIONSTORE: lib/commands/SUNIONSTORE; TOUCH: lib/commands/TOUCH; TTL: lib/commands/TTL; TYPE: lib/commands/TYPE; UNLINK: lib/commands/UNLINK; WATCH: lib/commands/WATCH; XACK: lib/commands/XACK; XADD: lib/commands/XADD; XAUTOCLAIM: lib/commands/XAUTOCLAIM; XAUTOCLAIM_JUSTID: lib/commands/XAUTOCLAIM_JUSTID; XCLAIM: lib/commands/XCLAIM; XCLAIM_JUSTID: lib/commands/XCLAIM_JUSTID; XDEL: lib/commands/XDEL; XGROUP_CREATE: lib/commands/XGROUP_CREATE; XGROUP_CREATECONSUMER: lib/commands/XGROUP_CREATECONSUMER; XGROUP_DELCONSUMER: lib/commands/XGROUP_DELCONSUMER; XGROUP_DESTROY: lib/commands/XGROUP_DESTROY; XGROUP_SETID: lib/commands/XGROUP_SETID; XINFO_CONSUMERS: lib/commands/XINFO_CONSUMERS; XINFO_GROUPS: lib/commands/XINFO_GROUPS; XINFO_STREAM: lib/commands/XINFO_STREAM; XLEN: lib/commands/XLEN; XPENDING: lib/commands/XPENDING; XPENDING_RANGE: lib/commands/XPENDING_RANGE; XRANGE: lib/commands/XRANGE; XREAD: lib/commands/XREAD; XREADGROUP: lib/commands/XREADGROUP; XREVRANGE: lib/commands/XREVRANGE; XTRIM: lib/commands/XTRIM; ZADD: lib/commands/ZADD; ZCARD: lib/commands/ZCARD; ZCOUNT: lib/commands/ZCOUNT; ZDIFF: lib/commands/ZDIFF; ZDIFFSTORE: lib/commands/ZDIFFSTORE; ZDIFF_WITHSCORES: lib/commands/ZDIFF_WITHSCORES; ZINCRBY: lib/commands/ZINCRBY; ZINTER: lib/commands/ZINTER; ZINTERSTORE: lib/commands/ZINTERSTORE; ZINTER_WITHSCORES: lib/commands/ZINTER_WITHSCORES; ZLEXCOUNT: lib/commands/ZLEXCOUNT; ZMSCORE: lib/commands/ZMSCORE; ZPOPMAX: lib/commands/ZPOPMAX; ZPOPMAX_COUNT: lib/commands/ZPOPMAX_COUNT; ZPOPMIN: lib/commands/ZPOPMIN; ZPOPMIN_COUNT: lib/commands/ZPOPMIN_COUNT; ZRANDMEMBER: lib/commands/ZRANDMEMBER; ZRANDMEMBER_COUNT: lib/commands/ZRANDMEMBER_COUNT; ZRANDMEMBER_COUNT_WITHSCORES: lib/commands/ZRANDMEMBER_COUNT_WITHSCORES; ZRANGE: lib/commands/ZRANGE; ZRANGEBYLEX: lib/commands/ZRANGEBYLEX; ZRANGEBYSCORE: lib/commands/ZRANGEBYSCORE; ZRANGEBYSCORE_WITHSCORES: lib/commands/ZRANGEBYSCORE_WITHSCORES; ZRANGESTORE: lib/commands/ZRANGESTORE; ZRANGE_WITHSCORES: lib/commands/ZRANGE_WITHSCORES; ZRANK: lib/commands/ZRANK; ZREM: lib/commands/ZREM; ZREMRANGEBYLEX: lib/commands/ZREMRANGEBYLEX; ZREMRANGEBYRANK: lib/commands/ZREMRANGEBYRANK; ZREMRANGEBYSCORE: lib/commands/ZREMRANGEBYSCORE; ZREVRANK: lib/commands/ZREVRANK; ZSCAN: lib/commands/ZSCAN; ZSCORE: lib/commands/ZSCORE; ZUNION: lib/commands/ZUNION; ZUNIONSTORE: lib/commands/ZUNIONSTORE; ZUNION_WITHSCORES: lib/commands/ZUNION_WITHSCORES; append: lib/commands/APPEND; bitCount: lib/commands/BITCOUNT; bitField: lib/commands/BITFIELD; bitOp: lib/commands/BITOP; bitPos: lib/commands/BITPOS; blMove: lib/commands/BLMOVE; blPop: lib/commands/BLPOP; brPop: lib/commands/BRPOP; brPopLPush: lib/commands/BRPOPLPUSH; bzPopMax: lib/commands/BZPOPMAX; bzPopMin: lib/commands/BZPOPMIN; copy: lib/commands/COPY; decr: lib/commands/DECR; decrBy: lib/commands/DECRBY; del: lib/commands/DEL; dump: lib/commands/DUMP; eval: lib/commands/EVAL; evalSha: lib/commands/EVALSHA; exists: lib/commands/EXISTS; expire: lib/commands/EXPIRE; expireAt: lib/commands/EXPIREAT; geoAdd: lib/commands/GEOADD; geoDist: lib/commands/GEODIST; geoHash: lib/commands/GEOHASH; geoPos: lib/commands/GEOPOS; geoSearch: lib/commands/GEOSEARCH; geoSearchStore: lib/commands/GEOSEARCHSTORE; geoSearchWith: lib/commands/GEOSEARCH_WITH; get: lib/commands/GET; getBit: lib/commands/GETBIT; getBuffer: lib/commands/GET_BUFFER; getDel: lib/commands/GETDEL; getEx: lib/commands/GETEX; getRange: lib/commands/GETRANGE; getSet: lib/commands/GETSET; hDel: lib/commands/HDEL; hExists: lib/commands/HEXISTS; hGet: lib/commands/HGET; hGetAll: lib/commands/HGETALL; hIncrBy: lib/commands/HINCRBY; hIncrByFloat: lib/commands/HINCRBYFLOAT; hKeys: lib/commands/HKEYS; hLen: lib/commands/HLEN; hRandField: lib/commands/HRANDFIELD; hRandFieldCount: lib/commands/HRANDFIELD_COUNT; hRandFieldCountWithValues: lib/commands/HRANDFIELD_COUNT_WITHVALUES; hScan: lib/commands/HSCAN; hSet: lib/commands/HSET; hSetNX: lib/commands/HSETNX; hStrLen: lib/commands/HSTRLEN; hVals: lib/commands/HVALS; hmGet: lib/commands/HMGET; incr: lib/commands/INCR; incrBy: lib/commands/INCRBY; incrByFloat: lib/commands/INCRBYFLOAT; lIndex: lib/commands/LINDEX; lInsert: lib/commands/LINSERT; lLen: lib/commands/LLEN; lMove: lib/commands/LMOVE; lPop: lib/commands/LPOP; lPopCount: lib/commands/LPOP_COUNT; lPos: lib/commands/LPOS; lPosCount: lib/commands/LPOS_COUNT; lPush: lib/commands/LPUSH; lPushX: lib/commands/LPUSHX; lRange: lib/commands/LRANGE; lRem: lib/commands/LREM; lSet: lib/commands/LSET; lTrim: lib/commands/LTRIM; mGet: lib/commands/MGET; mSet: lib/commands/MSET; mSetNX: lib/commands/MSETNX; migrate: lib/commands/MIGRATE; pExpire: lib/commands/PEXPIRE; pExpireAt: lib/commands/PEXPIREAT; pSetEx: lib/commands/PSETEX; pTTL: lib/commands/PTTL; persist: lib/commands/PERSIST; pfAdd: lib/commands/PFADD; pfCount: lib/commands/PFCOUNT; pfMerge: lib/commands/PFMERGE; publish: lib/commands/PUBLISH; rPop: lib/commands/RPOP; rPopCount: lib/commands/RPOP_COUNT; rPopLPush: lib/commands/RPOPLPUSH; rPush: lib/commands/RPUSH; rPushX: lib/commands/RPUSHX; rename: lib/commands/RENAME; renameNX: lib/commands/RENAMENX; sAdd: lib/commands/SADD; sCard: lib/commands/SCARD; sDiff: lib/commands/SDIFF; sDiffStore: lib/commands/SDIFFSTORE; sInter: lib/commands/SINTER; sInterStore: lib/commands/SINTERSTORE; sIsMember: lib/commands/SISMEMBER; sMembers: lib/commands/SMEMBERS; sMove: lib/commands/SMOVE; sPop: lib/commands/SPOP; sRandMember: lib/commands/SRANDMEMBER; sRandMemberCount: lib/commands/SRANDMEMBER_COUNT; sRem: lib/commands/SREM; sScan: lib/commands/SSCAN; sUnion: lib/commands/SUNION; sUnionStore: lib/commands/SUNIONSTORE; set: lib/commands/SET; setBit: lib/commands/SETBIT; setEx: lib/commands/SETEX; setNX: lib/commands/SETNX; setRange: lib/commands/SETRANGE; smIsMember: lib/commands/SMISMEMBER; sort: lib/commands/SORT; strLen: lib/commands/STRLEN; touch: lib/commands/TOUCH; ttl: lib/commands/TTL; type: lib/commands/TYPE; unlink: lib/commands/UNLINK; watch: lib/commands/WATCH; xAck: lib/commands/XACK; xAdd: lib/commands/XADD; xAutoClaim: lib/commands/XAUTOCLAIM; xAutoClaimJustId: lib/commands/XAUTOCLAIM_JUSTID; xClaim: lib/commands/XCLAIM; xClaimJustId: lib/commands/XCLAIM_JUSTID; xDel: lib/commands/XDEL; xGroupCreate: lib/commands/XGROUP_CREATE; xGroupCreateConsumer: lib/commands/XGROUP_CREATECONSUMER; xGroupDelConsumer: lib/commands/XGROUP_DELCONSUMER; xGroupDestroy: lib/commands/XGROUP_DESTROY; xGroupSetId: lib/commands/XGROUP_SETID; xInfoConsumers: lib/commands/XINFO_CONSUMERS; xInfoGroups: lib/commands/XINFO_GROUPS; xInfoStream: lib/commands/XINFO_STREAM; xLen: lib/commands/XLEN; xPending: lib/commands/XPENDING; xPendingRange: lib/commands/XPENDING_RANGE; xRange: lib/commands/XRANGE; xRead: lib/commands/XREAD; xReadGroup: lib/commands/XREADGROUP; xRevRange: lib/commands/XREVRANGE; xTrim: lib/commands/XTRIM; zAdd: lib/commands/ZADD; zCard: lib/commands/ZCARD; zCount: lib/commands/ZCOUNT; zDiff: lib/commands/ZDIFF; zDiffStore: lib/commands/ZDIFFSTORE; zDiffWithScores: lib/commands/ZDIFF_WITHSCORES; zIncrBy: lib/commands/ZINCRBY; zInter: lib/commands/ZINTER; zInterStore: lib/commands/ZINTERSTORE; zInterWithScores: lib/commands/ZINTER_WITHSCORES; zLexCount: lib/commands/ZLEXCOUNT; zPopMax: lib/commands/ZPOPMAX; zPopMaxCount: lib/commands/ZPOPMAX_COUNT; zPopMin: lib/commands/ZPOPMIN; zPopMinCount: lib/commands/ZPOPMIN_COUNT; zRandMember: lib/commands/ZRANDMEMBER; zRandMemberCount: lib/commands/ZRANDMEMBER_COUNT; zRandMemberCountWithScores: lib/commands/ZRANDMEMBER_COUNT_WITHSCORES; zRange: lib/commands/ZRANGE; zRangeByLex: lib/commands/ZRANGEBYLEX; zRangeByScore: lib/commands/ZRANGEBYSCORE; zRangeByScoreWithScores: lib/commands/ZRANGEBYSCORE_WITHSCORES; zRangeStore: lib/commands/ZRANGESTORE; zRangeWithScores: lib/commands/ZRANGE_WITHSCORES; zRank: lib/commands/ZRANK; zRem: lib/commands/ZREM; zRemRangeByLex: lib/commands/ZREMRANGEBYLEX; zRemRangeByRank: lib/commands/ZREMRANGEBYRANK; zRemRangeByScore: lib/commands/ZREMRANGEBYSCORE; zRevRank: lib/commands/ZREVRANK; zScan: lib/commands/ZSCAN; zScore: lib/commands/ZSCORE; zUnion: lib/commands/ZUNION; zUnionStore: lib/commands/ZUNIONSTORE; zUnionWithScores: lib/commands/ZUNION_WITHSCORES; zmScore: lib/commands/ZMSCORE }

Type declaration

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_cluster_multi_command.html b/documentation/client/modules/lib_cluster_multi_command.html new file mode 100644 index 0000000000..5bd4ecbac4 --- /dev/null +++ b/documentation/client/modules/lib_cluster_multi_command.html @@ -0,0 +1 @@ +lib/cluster/multi-command | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/cluster/multi-command

Index

Type aliases

RedisClusterMultiCommandType

RedisClusterMultiCommandType<M, S>: default & WithCommands<M, S> & WithModules<M, S> & WithScripts<M, S>

Type parameters

RedisClusterMultiExecutor

RedisClusterMultiExecutor: (queue: RedisMultiQueuedCommand[], firstKey?: string | Buffer, chainId?: symbol) => Promise<RedisCommandRawReply[]>

Type declaration

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_command_options.html b/documentation/client/modules/lib_command_options.html new file mode 100644 index 0000000000..0a5dac3151 --- /dev/null +++ b/documentation/client/modules/lib_command_options.html @@ -0,0 +1 @@ +lib/command-options | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/command-options

Index

Type aliases

CommandOptions

CommandOptions<T>: T & { [symbol]: true }

Type parameters

  • T

Functions

commandOptions

isCommandOptions

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commander.html b/documentation/client/modules/lib_commander.html new file mode 100644 index 0000000000..bac8901e10 --- /dev/null +++ b/documentation/client/modules/lib_commander.html @@ -0,0 +1 @@ +lib/commander | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

LegacyCommandArguments

LegacyCommandArguments: (string | number | Buffer | LegacyCommandArguments)[]

Functions

encodeCommand

extendWithCommands

  • extendWithCommands<T>(__namedParameters: ExtendWithCommandsConfig<T>): void

extendWithModulesAndScripts

  • extendWithModulesAndScripts<T>(config: ExtendWithModulesAndScriptsConfig<T>): T

transformCommandArguments

transformCommandReply

transformLegacyCommandArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands.html b/documentation/client/modules/lib_commands.html new file mode 100644 index 0000000000..65804331b3 --- /dev/null +++ b/documentation/client/modules/lib_commands.html @@ -0,0 +1 @@ +lib/commands | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

RedisCommandArguments

RedisCommandArguments: (string | Buffer)[] & { preserve?: unknown }

RedisCommandRawReply

RedisCommandRawReply: string | number | Buffer | RedisCommandRawReply[] | null | undefined

RedisCommandReply

RedisCommandReply<C>: C["transformReply"] extends (...args: any) => infer T ? T : RedisCommandRawReply

Type parameters

RedisScript

RedisScript: RedisScriptConfig & SHA1

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_CAT.html b/documentation/client/modules/lib_commands_ACL_CAT.html new file mode 100644 index 0000000000..8e0c7177de --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_CAT.html @@ -0,0 +1 @@ +lib/commands/ACL_CAT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_CAT

Index

Functions

transformArguments

  • transformArguments(categoryName?: string): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_DELUSER.html b/documentation/client/modules/lib_commands_ACL_DELUSER.html new file mode 100644 index 0000000000..9831b7979a --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_DELUSER.html @@ -0,0 +1 @@ +lib/commands/ACL_DELUSER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_DELUSER

Index

Functions

transformArguments

Const transformReply

  • transformReply(reply: number): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_GENPASS.html b/documentation/client/modules/lib_commands_ACL_GENPASS.html new file mode 100644 index 0000000000..45f18d336b --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_GENPASS.html @@ -0,0 +1 @@ +lib/commands/ACL_GENPASS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_GENPASS

Index

Functions

transformArguments

  • transformArguments(bits?: number): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_GETUSER.html b/documentation/client/modules/lib_commands_ACL_GETUSER.html new file mode 100644 index 0000000000..43dd379e7e --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_GETUSER.html @@ -0,0 +1 @@ +lib/commands/ACL_GETUSER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_GETUSER

Index

Functions

transformArguments

  • transformArguments(username: string): string[]

transformReply

  • transformReply(reply: AclGetUserRawReply): AclUser

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_LIST.html b/documentation/client/modules/lib_commands_ACL_LIST.html new file mode 100644 index 0000000000..a30889a7ca --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_LIST.html @@ -0,0 +1 @@ +lib/commands/ACL_LIST | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_LIST

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_LOAD.html b/documentation/client/modules/lib_commands_ACL_LOAD.html new file mode 100644 index 0000000000..98ad7bfde2 --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_LOAD.html @@ -0,0 +1 @@ +lib/commands/ACL_LOAD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_LOAD

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_LOG.html b/documentation/client/modules/lib_commands_ACL_LOG.html new file mode 100644 index 0000000000..5feef85fda --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_LOG.html @@ -0,0 +1 @@ +lib/commands/ACL_LOG | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_LOG

Index

Functions

transformArguments

  • transformArguments(count?: number): string[]

transformReply

  • transformReply(reply: AclLogRawReply[]): AclLog[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_LOG_RESET.html b/documentation/client/modules/lib_commands_ACL_LOG_RESET.html new file mode 100644 index 0000000000..0ebca6d9e0 --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_LOG_RESET.html @@ -0,0 +1 @@ +lib/commands/ACL_LOG_RESET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_LOG_RESET

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_SAVE.html b/documentation/client/modules/lib_commands_ACL_SAVE.html new file mode 100644 index 0000000000..c18396b9ef --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_SAVE.html @@ -0,0 +1 @@ +lib/commands/ACL_SAVE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_SAVE

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_SETUSER.html b/documentation/client/modules/lib_commands_ACL_SETUSER.html new file mode 100644 index 0000000000..7650db21d1 --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_SETUSER.html @@ -0,0 +1 @@ +lib/commands/ACL_SETUSER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_SETUSER

Index

Functions

transformArguments

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_USERS.html b/documentation/client/modules/lib_commands_ACL_USERS.html new file mode 100644 index 0000000000..d20a4b3ff3 --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_USERS.html @@ -0,0 +1 @@ +lib/commands/ACL_USERS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_USERS

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ACL_WHOAMI.html b/documentation/client/modules/lib_commands_ACL_WHOAMI.html new file mode 100644 index 0000000000..550ec2afd6 --- /dev/null +++ b/documentation/client/modules/lib_commands_ACL_WHOAMI.html @@ -0,0 +1 @@ +lib/commands/ACL_WHOAMI | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ACL_WHOAMI

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_APPEND.html b/documentation/client/modules/lib_commands_APPEND.html new file mode 100644 index 0000000000..3a956919af --- /dev/null +++ b/documentation/client/modules/lib_commands_APPEND.html @@ -0,0 +1 @@ +lib/commands/APPEND | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/APPEND

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, value: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ASKING.html b/documentation/client/modules/lib_commands_ASKING.html new file mode 100644 index 0000000000..baf4341eee --- /dev/null +++ b/documentation/client/modules/lib_commands_ASKING.html @@ -0,0 +1 @@ +lib/commands/ASKING | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ASKING

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_AUTH.html b/documentation/client/modules/lib_commands_AUTH.html new file mode 100644 index 0000000000..bb48cb21fc --- /dev/null +++ b/documentation/client/modules/lib_commands_AUTH.html @@ -0,0 +1 @@ +lib/commands/AUTH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/AUTH

Index

Functions

transformArguments

  • transformArguments(__namedParameters: AuthOptions): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BGREWRITEAOF.html b/documentation/client/modules/lib_commands_BGREWRITEAOF.html new file mode 100644 index 0000000000..55a25d2711 --- /dev/null +++ b/documentation/client/modules/lib_commands_BGREWRITEAOF.html @@ -0,0 +1 @@ +lib/commands/BGREWRITEAOF | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BGREWRITEAOF

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BGSAVE.html b/documentation/client/modules/lib_commands_BGSAVE.html new file mode 100644 index 0000000000..53b4a8b924 --- /dev/null +++ b/documentation/client/modules/lib_commands_BGSAVE.html @@ -0,0 +1 @@ +lib/commands/BGSAVE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BGSAVE

Index

Functions

transformArguments

  • transformArguments(options?: BgSaveOptions): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BITCOUNT.html b/documentation/client/modules/lib_commands_BITCOUNT.html new file mode 100644 index 0000000000..73b31b7db4 --- /dev/null +++ b/documentation/client/modules/lib_commands_BITCOUNT.html @@ -0,0 +1 @@ +lib/commands/BITCOUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BITCOUNT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, range?: BitCountRange): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BITFIELD.html b/documentation/client/modules/lib_commands_BITFIELD.html new file mode 100644 index 0000000000..b134a4a929 --- /dev/null +++ b/documentation/client/modules/lib_commands_BITFIELD.html @@ -0,0 +1 @@ +lib/commands/BITFIELD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BITFIELD

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, operations: BitFieldOperations): string[]

transformReply

  • transformReply(): (number | null)[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BITOP.html b/documentation/client/modules/lib_commands_BITOP.html new file mode 100644 index 0000000000..6c34ea2878 --- /dev/null +++ b/documentation/client/modules/lib_commands_BITOP.html @@ -0,0 +1 @@ +lib/commands/BITOP | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BITOP

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

Functions

transformArguments

  • transformArguments(operation: BitOperations, destKey: string, key: string | string[]): RedisCommandArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BITPOS.html b/documentation/client/modules/lib_commands_BITPOS.html new file mode 100644 index 0000000000..87c654c3fb --- /dev/null +++ b/documentation/client/modules/lib_commands_BITPOS.html @@ -0,0 +1 @@ +lib/commands/BITPOS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BITPOS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, bit: BitValue, start?: number, end?: number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BLMOVE.html b/documentation/client/modules/lib_commands_BLMOVE.html new file mode 100644 index 0000000000..b82ba4017b --- /dev/null +++ b/documentation/client/modules/lib_commands_BLMOVE.html @@ -0,0 +1 @@ +lib/commands/BLMOVE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BLMOVE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(source: string, destination: string, sourceDirection: LMoveSide, destinationDirection: LMoveSide, timeout: number): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BLPOP.html b/documentation/client/modules/lib_commands_BLPOP.html new file mode 100644 index 0000000000..fe75325ea2 --- /dev/null +++ b/documentation/client/modules/lib_commands_BLPOP.html @@ -0,0 +1 @@ +lib/commands/BLPOP | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BLPOP

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(reply: null | [string, string]): BLPOPReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BRPOP.html b/documentation/client/modules/lib_commands_BRPOP.html new file mode 100644 index 0000000000..5a51699139 --- /dev/null +++ b/documentation/client/modules/lib_commands_BRPOP.html @@ -0,0 +1 @@ +lib/commands/BRPOP | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BRPOP

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(reply: null | [string, string]): BRPOPReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BRPOPLPUSH.html b/documentation/client/modules/lib_commands_BRPOPLPUSH.html new file mode 100644 index 0000000000..ecaeda9a6b --- /dev/null +++ b/documentation/client/modules/lib_commands_BRPOPLPUSH.html @@ -0,0 +1 @@ +lib/commands/BRPOPLPUSH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BRPOPLPUSH

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(source: string, destination: string, timeout: number): string[]

transformReply

  • transformReply(): number | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BZPOPMAX.html b/documentation/client/modules/lib_commands_BZPOPMAX.html new file mode 100644 index 0000000000..e012633c59 --- /dev/null +++ b/documentation/client/modules/lib_commands_BZPOPMAX.html @@ -0,0 +1 @@ +lib/commands/BZPOPMAX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BZPOPMAX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(reply: null | [key: string, value: string, score: string]): BZPopMaxReply | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_BZPOPMIN.html b/documentation/client/modules/lib_commands_BZPOPMIN.html new file mode 100644 index 0000000000..84ac8badbf --- /dev/null +++ b/documentation/client/modules/lib_commands_BZPOPMIN.html @@ -0,0 +1 @@ +lib/commands/BZPOPMIN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/BZPOPMIN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(reply: null | [key: string, value: string, score: string]): BZPopMinReply | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLIENT_CACHING.html b/documentation/client/modules/lib_commands_CLIENT_CACHING.html new file mode 100644 index 0000000000..8dfa100918 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLIENT_CACHING.html @@ -0,0 +1 @@ +lib/commands/CLIENT_CACHING | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLIENT_CACHING

Index

Functions

transformArguments

transformReply

  • transformReply(): "OK"

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLIENT_GETNAME.html b/documentation/client/modules/lib_commands_CLIENT_GETNAME.html new file mode 100644 index 0000000000..641da0a338 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLIENT_GETNAME.html @@ -0,0 +1 @@ +lib/commands/CLIENT_GETNAME | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLIENT_GETNAME

Index

Functions

transformArguments

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLIENT_GETREDIR.html b/documentation/client/modules/lib_commands_CLIENT_GETREDIR.html new file mode 100644 index 0000000000..d675014be3 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLIENT_GETREDIR.html @@ -0,0 +1 @@ +lib/commands/CLIENT_GETREDIR | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLIENT_GETREDIR

Index

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLIENT_ID.html b/documentation/client/modules/lib_commands_CLIENT_ID.html new file mode 100644 index 0000000000..08492ee7d0 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLIENT_ID.html @@ -0,0 +1 @@ +lib/commands/CLIENT_ID | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLIENT_ID

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLIENT_INFO.html b/documentation/client/modules/lib_commands_CLIENT_INFO.html new file mode 100644 index 0000000000..ec4fd0e366 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLIENT_INFO.html @@ -0,0 +1 @@ +lib/commands/CLIENT_INFO | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLIENT_INFO

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(reply: string): ClientInfoReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLIENT_KILL.html b/documentation/client/modules/lib_commands_CLIENT_KILL.html new file mode 100644 index 0000000000..07cb2797a8 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLIENT_KILL.html @@ -0,0 +1 @@ +lib/commands/CLIENT_KILL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLIENT_KILL

Index

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLIENT_SETNAME.html b/documentation/client/modules/lib_commands_CLIENT_SETNAME.html new file mode 100644 index 0000000000..5d3bce94bb --- /dev/null +++ b/documentation/client/modules/lib_commands_CLIENT_SETNAME.html @@ -0,0 +1 @@ +lib/commands/CLIENT_SETNAME | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLIENT_SETNAME

Index

Functions

transformArguments

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_ADDSLOTS.html b/documentation/client/modules/lib_commands_CLUSTER_ADDSLOTS.html new file mode 100644 index 0000000000..e6a093cfa3 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_ADDSLOTS.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_ADDSLOTS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_ADDSLOTS

Index

Functions

transformArguments

  • transformArguments(slots: number | number[]): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_FLUSHSLOTS.html b/documentation/client/modules/lib_commands_CLUSTER_FLUSHSLOTS.html new file mode 100644 index 0000000000..f8977f1179 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_FLUSHSLOTS.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_FLUSHSLOTS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_FLUSHSLOTS

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_GETKEYSINSLOT.html b/documentation/client/modules/lib_commands_CLUSTER_GETKEYSINSLOT.html new file mode 100644 index 0000000000..df4881ceed --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_GETKEYSINSLOT.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_GETKEYSINSLOT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_GETKEYSINSLOT

Index

Functions

transformArguments

  • transformArguments(slot: number, count: number): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_INFO.html b/documentation/client/modules/lib_commands_CLUSTER_INFO.html new file mode 100644 index 0000000000..194b567878 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_INFO.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_INFO | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_INFO

Index

Functions

extractLineValue

  • extractLineValue(line: string): string

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(reply: string): ClusterInfoReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_MEET.html b/documentation/client/modules/lib_commands_CLUSTER_MEET.html new file mode 100644 index 0000000000..13c066b3a8 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_MEET.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_MEET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_MEET

Index

Functions

transformArguments

  • transformArguments(ip: string, port: number): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_NODES.html b/documentation/client/modules/lib_commands_CLUSTER_NODES.html new file mode 100644 index 0000000000..05eae1f2e7 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_NODES.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_NODES | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_NODES

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_RESET.html b/documentation/client/modules/lib_commands_CLUSTER_RESET.html new file mode 100644 index 0000000000..be08702295 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_RESET.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_RESET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_RESET

Index

Type aliases

ClusterResetModes

ClusterResetModes: "HARD" | "SOFT"

Functions

transformArguments

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_SETSLOT.html b/documentation/client/modules/lib_commands_CLUSTER_SETSLOT.html new file mode 100644 index 0000000000..e780770c8a --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_SETSLOT.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_SETSLOT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_SETSLOT

Index

Functions

transformArguments

  • transformArguments(slot: number, state: ClusterSlotStates, nodeId?: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CLUSTER_SLOTS.html b/documentation/client/modules/lib_commands_CLUSTER_SLOTS.html new file mode 100644 index 0000000000..7e48bf9225 --- /dev/null +++ b/documentation/client/modules/lib_commands_CLUSTER_SLOTS.html @@ -0,0 +1 @@ +lib/commands/CLUSTER_SLOTS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CLUSTER_SLOTS

Index

Type aliases

ClusterSlotsReply

ClusterSlotsReply: { from: number; master: ClusterSlotsNode; replicas: ClusterSlotsNode[]; to: number }[]

Functions

transformArguments

transformReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_COMMAND.html b/documentation/client/modules/lib_commands_COMMAND.html new file mode 100644 index 0000000000..480c40eaa5 --- /dev/null +++ b/documentation/client/modules/lib_commands_COMMAND.html @@ -0,0 +1 @@ +lib/commands/COMMAND | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/COMMAND

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_COMMAND_COUNT.html b/documentation/client/modules/lib_commands_COMMAND_COUNT.html new file mode 100644 index 0000000000..5f8035c6a1 --- /dev/null +++ b/documentation/client/modules/lib_commands_COMMAND_COUNT.html @@ -0,0 +1 @@ +lib/commands/COMMAND_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/COMMAND_COUNT

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_COMMAND_GETKEYS.html b/documentation/client/modules/lib_commands_COMMAND_GETKEYS.html new file mode 100644 index 0000000000..92e7030532 --- /dev/null +++ b/documentation/client/modules/lib_commands_COMMAND_GETKEYS.html @@ -0,0 +1 @@ +lib/commands/COMMAND_GETKEYS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/COMMAND_GETKEYS

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_COMMAND_INFO.html b/documentation/client/modules/lib_commands_COMMAND_INFO.html new file mode 100644 index 0000000000..d0e5197314 --- /dev/null +++ b/documentation/client/modules/lib_commands_COMMAND_INFO.html @@ -0,0 +1 @@ +lib/commands/COMMAND_INFO | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/COMMAND_INFO

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CONFIG_GET.html b/documentation/client/modules/lib_commands_CONFIG_GET.html new file mode 100644 index 0000000000..8c07bf899f --- /dev/null +++ b/documentation/client/modules/lib_commands_CONFIG_GET.html @@ -0,0 +1 @@ +lib/commands/CONFIG_GET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CONFIG_GET

Index

References

transformReply

Renames and re-exports transformReplyTuples

Functions

transformArguments

  • transformArguments(parameter: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CONFIG_RESETSTAT.html b/documentation/client/modules/lib_commands_CONFIG_RESETSTAT.html new file mode 100644 index 0000000000..6befd03197 --- /dev/null +++ b/documentation/client/modules/lib_commands_CONFIG_RESETSTAT.html @@ -0,0 +1 @@ +lib/commands/CONFIG_RESETSTAT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CONFIG_RESETSTAT

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CONFIG_REWRITE.html b/documentation/client/modules/lib_commands_CONFIG_REWRITE.html new file mode 100644 index 0000000000..8ce46a9fc6 --- /dev/null +++ b/documentation/client/modules/lib_commands_CONFIG_REWRITE.html @@ -0,0 +1 @@ +lib/commands/CONFIG_REWRITE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CONFIG_REWRITE

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_CONFIG_SET.html b/documentation/client/modules/lib_commands_CONFIG_SET.html new file mode 100644 index 0000000000..2783825dd9 --- /dev/null +++ b/documentation/client/modules/lib_commands_CONFIG_SET.html @@ -0,0 +1 @@ +lib/commands/CONFIG_SET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/CONFIG_SET

Index

Functions

transformArguments

  • transformArguments(parameter: string, value: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_COPY.html b/documentation/client/modules/lib_commands_COPY.html new file mode 100644 index 0000000000..d8d09ec6bb --- /dev/null +++ b/documentation/client/modules/lib_commands_COPY.html @@ -0,0 +1 @@ +lib/commands/COPY | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/COPY

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(source: string, destination: string, options?: CopyCommandOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_DBSIZE.html b/documentation/client/modules/lib_commands_DBSIZE.html new file mode 100644 index 0000000000..278c3f616a --- /dev/null +++ b/documentation/client/modules/lib_commands_DBSIZE.html @@ -0,0 +1 @@ +lib/commands/DBSIZE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/DBSIZE

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_DECR.html b/documentation/client/modules/lib_commands_DECR.html new file mode 100644 index 0000000000..a1cc31a8a4 --- /dev/null +++ b/documentation/client/modules/lib_commands_DECR.html @@ -0,0 +1 @@ +lib/commands/DECR | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/DECR

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_DECRBY.html b/documentation/client/modules/lib_commands_DECRBY.html new file mode 100644 index 0000000000..ddcd50eedf --- /dev/null +++ b/documentation/client/modules/lib_commands_DECRBY.html @@ -0,0 +1 @@ +lib/commands/DECRBY | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/DECRBY

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, decrement: number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_DEL.html b/documentation/client/modules/lib_commands_DEL.html new file mode 100644 index 0000000000..5eebb3bf55 --- /dev/null +++ b/documentation/client/modules/lib_commands_DEL.html @@ -0,0 +1 @@ +lib/commands/DEL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/DEL

Index

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_DISCARD.html b/documentation/client/modules/lib_commands_DISCARD.html new file mode 100644 index 0000000000..33b625943f --- /dev/null +++ b/documentation/client/modules/lib_commands_DISCARD.html @@ -0,0 +1 @@ +lib/commands/DISCARD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/DISCARD

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_DUMP.html b/documentation/client/modules/lib_commands_DUMP.html new file mode 100644 index 0000000000..b10c0d6ba4 --- /dev/null +++ b/documentation/client/modules/lib_commands_DUMP.html @@ -0,0 +1 @@ +lib/commands/DUMP | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/DUMP

Index

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ECHO.html b/documentation/client/modules/lib_commands_ECHO.html new file mode 100644 index 0000000000..75031835f6 --- /dev/null +++ b/documentation/client/modules/lib_commands_ECHO.html @@ -0,0 +1 @@ +lib/commands/ECHO | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ECHO

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(message: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_EVAL.html b/documentation/client/modules/lib_commands_EVAL.html new file mode 100644 index 0000000000..a9f5a98757 --- /dev/null +++ b/documentation/client/modules/lib_commands_EVAL.html @@ -0,0 +1 @@ +lib/commands/EVAL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/EVAL

Index

Functions

transformArguments

  • transformArguments(script: string, options?: EvalOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_EVALSHA.html b/documentation/client/modules/lib_commands_EVALSHA.html new file mode 100644 index 0000000000..968d811565 --- /dev/null +++ b/documentation/client/modules/lib_commands_EVALSHA.html @@ -0,0 +1 @@ +lib/commands/EVALSHA | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/EVALSHA

Index

Functions

transformArguments

  • transformArguments(sha1: string, options?: EvalOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_EXISTS.html b/documentation/client/modules/lib_commands_EXISTS.html new file mode 100644 index 0000000000..c705a608ff --- /dev/null +++ b/documentation/client/modules/lib_commands_EXISTS.html @@ -0,0 +1 @@ +lib/commands/EXISTS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/EXISTS

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_EXPIRE.html b/documentation/client/modules/lib_commands_EXPIRE.html new file mode 100644 index 0000000000..69765229a5 --- /dev/null +++ b/documentation/client/modules/lib_commands_EXPIRE.html @@ -0,0 +1 @@ +lib/commands/EXPIRE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/EXPIRE

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Functions

transformArguments

  • transformArguments(key: string, seconds: number): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_EXPIREAT.html b/documentation/client/modules/lib_commands_EXPIREAT.html new file mode 100644 index 0000000000..01b6f84247 --- /dev/null +++ b/documentation/client/modules/lib_commands_EXPIREAT.html @@ -0,0 +1 @@ +lib/commands/EXPIREAT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/EXPIREAT

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Functions

transformArguments

  • transformArguments(key: string, timestamp: number | Date): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_FAILOVER.html b/documentation/client/modules/lib_commands_FAILOVER.html new file mode 100644 index 0000000000..a27a08d04e --- /dev/null +++ b/documentation/client/modules/lib_commands_FAILOVER.html @@ -0,0 +1 @@ +lib/commands/FAILOVER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/FAILOVER

Index

Functions

transformArguments

  • transformArguments(options?: FailoverOptions): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_FLUSHALL.html b/documentation/client/modules/lib_commands_FLUSHALL.html new file mode 100644 index 0000000000..976f0bad48 --- /dev/null +++ b/documentation/client/modules/lib_commands_FLUSHALL.html @@ -0,0 +1 @@ +lib/commands/FLUSHALL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/FLUSHALL

Index

Functions

transformArguments

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_FLUSHDB.html b/documentation/client/modules/lib_commands_FLUSHDB.html new file mode 100644 index 0000000000..f9d5bd5478 --- /dev/null +++ b/documentation/client/modules/lib_commands_FLUSHDB.html @@ -0,0 +1 @@ +lib/commands/FLUSHDB | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/FLUSHDB

Index

Functions

transformArguments

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GEOADD.html b/documentation/client/modules/lib_commands_GEOADD.html new file mode 100644 index 0000000000..b50c9b8c05 --- /dev/null +++ b/documentation/client/modules/lib_commands_GEOADD.html @@ -0,0 +1 @@ +lib/commands/GEOADD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GEOADD

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, toAdd: GeoMember | GeoMember[], options?: GeoAddOptions): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GEODIST.html b/documentation/client/modules/lib_commands_GEODIST.html new file mode 100644 index 0000000000..0ea9e4b991 --- /dev/null +++ b/documentation/client/modules/lib_commands_GEODIST.html @@ -0,0 +1 @@ +lib/commands/GEODIST | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GEODIST

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, member1: string, member2: string, unit?: GeoUnits): string[]

transformReply

  • transformReply(reply: null | string): number | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GEOHASH.html b/documentation/client/modules/lib_commands_GEOHASH.html new file mode 100644 index 0000000000..f269df6fd6 --- /dev/null +++ b/documentation/client/modules/lib_commands_GEOHASH.html @@ -0,0 +1 @@ +lib/commands/GEOHASH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GEOHASH

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GEOPOS.html b/documentation/client/modules/lib_commands_GEOPOS.html new file mode 100644 index 0000000000..e66309547a --- /dev/null +++ b/documentation/client/modules/lib_commands_GEOPOS.html @@ -0,0 +1 @@ +lib/commands/GEOPOS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GEOPOS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(reply: (null | [string, string])[]): (GeoCoordinates | null)[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GEOSEARCH.html b/documentation/client/modules/lib_commands_GEOSEARCH.html new file mode 100644 index 0000000000..685ec03271 --- /dev/null +++ b/documentation/client/modules/lib_commands_GEOSEARCH.html @@ -0,0 +1 @@ +lib/commands/GEOSEARCH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GEOSEARCH

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GEOSEARCHSTORE.html b/documentation/client/modules/lib_commands_GEOSEARCHSTORE.html new file mode 100644 index 0000000000..3a086a2d2b --- /dev/null +++ b/documentation/client/modules/lib_commands_GEOSEARCHSTORE.html @@ -0,0 +1 @@ +lib/commands/GEOSEARCHSTORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GEOSEARCHSTORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(destination: string, source: string, from: GeoSearchFrom, by: GeoSearchBy, options?: GeoSearchStoreOptions): string[]

transformReply

  • transformReply(reply: number): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GEOSEARCH_WITH.html b/documentation/client/modules/lib_commands_GEOSEARCH_WITH.html new file mode 100644 index 0000000000..9f9745a24d --- /dev/null +++ b/documentation/client/modules/lib_commands_GEOSEARCH_WITH.html @@ -0,0 +1 @@ +lib/commands/GEOSEARCH_WITH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GEOSEARCH_WITH

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

transformReply

Renames and re-exports transformGeoMembersWithReply

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GET.html b/documentation/client/modules/lib_commands_GET.html new file mode 100644 index 0000000000..2feecd48ea --- /dev/null +++ b/documentation/client/modules/lib_commands_GET.html @@ -0,0 +1 @@ +lib/commands/GET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GETBIT.html b/documentation/client/modules/lib_commands_GETBIT.html new file mode 100644 index 0000000000..e1c6fb5454 --- /dev/null +++ b/documentation/client/modules/lib_commands_GETBIT.html @@ -0,0 +1 @@ +lib/commands/GETBIT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GETBIT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, offset: number): string[]

transformReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GETDEL.html b/documentation/client/modules/lib_commands_GETDEL.html new file mode 100644 index 0000000000..6c19958309 --- /dev/null +++ b/documentation/client/modules/lib_commands_GETDEL.html @@ -0,0 +1 @@ +lib/commands/GETDEL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GETDEL

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GETEX.html b/documentation/client/modules/lib_commands_GETEX.html new file mode 100644 index 0000000000..5e2c26ee58 --- /dev/null +++ b/documentation/client/modules/lib_commands_GETEX.html @@ -0,0 +1 @@ +lib/commands/GETEX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GETEX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GETRANGE.html b/documentation/client/modules/lib_commands_GETRANGE.html new file mode 100644 index 0000000000..6f49d420c9 --- /dev/null +++ b/documentation/client/modules/lib_commands_GETRANGE.html @@ -0,0 +1 @@ +lib/commands/GETRANGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GETRANGE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, start: number, end: number): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GETSET.html b/documentation/client/modules/lib_commands_GETSET.html new file mode 100644 index 0000000000..010eaabb33 --- /dev/null +++ b/documentation/client/modules/lib_commands_GETSET.html @@ -0,0 +1 @@ +lib/commands/GETSET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GETSET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, value: string): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_GET_BUFFER.html b/documentation/client/modules/lib_commands_GET_BUFFER.html new file mode 100644 index 0000000000..c8c0eb50d6 --- /dev/null +++ b/documentation/client/modules/lib_commands_GET_BUFFER.html @@ -0,0 +1 @@ +lib/commands/GET_BUFFER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/GET_BUFFER

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

transformArguments

Re-exports transformArguments

Variables

BUFFER_MODE

BUFFER_MODE: true = true

Functions

transformReply

  • transformReply(): Buffer | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HDEL.html b/documentation/client/modules/lib_commands_HDEL.html new file mode 100644 index 0000000000..9cc8585434 --- /dev/null +++ b/documentation/client/modules/lib_commands_HDEL.html @@ -0,0 +1 @@ +lib/commands/HDEL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HDEL

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HELLO.html b/documentation/client/modules/lib_commands_HELLO.html new file mode 100644 index 0000000000..298490fc76 --- /dev/null +++ b/documentation/client/modules/lib_commands_HELLO.html @@ -0,0 +1 @@ +lib/commands/HELLO | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HELLO

Index

Functions

transformArguments

  • transformArguments(options?: HelloOptions): string[]

transformReply

  • transformReply(reply: HelloRawReply): HelloTransformedReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HEXISTS.html b/documentation/client/modules/lib_commands_HEXISTS.html new file mode 100644 index 0000000000..0391427ebd --- /dev/null +++ b/documentation/client/modules/lib_commands_HEXISTS.html @@ -0,0 +1 @@ +lib/commands/HEXISTS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HEXISTS

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, field: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HGET.html b/documentation/client/modules/lib_commands_HGET.html new file mode 100644 index 0000000000..93fbc7076e --- /dev/null +++ b/documentation/client/modules/lib_commands_HGET.html @@ -0,0 +1 @@ +lib/commands/HGET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HGET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, field: string): string[]

transformReply

  • transformReply(reply?: string): string | undefined

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HGETALL.html b/documentation/client/modules/lib_commands_HGETALL.html new file mode 100644 index 0000000000..3be35b4c93 --- /dev/null +++ b/documentation/client/modules/lib_commands_HGETALL.html @@ -0,0 +1 @@ +lib/commands/HGETALL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HGETALL

Index

References

transformReply

Renames and re-exports transformReplyTuples

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HINCRBY.html b/documentation/client/modules/lib_commands_HINCRBY.html new file mode 100644 index 0000000000..bdcbe180d9 --- /dev/null +++ b/documentation/client/modules/lib_commands_HINCRBY.html @@ -0,0 +1 @@ +lib/commands/HINCRBY | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HINCRBY

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, field: string, increment: number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HINCRBYFLOAT.html b/documentation/client/modules/lib_commands_HINCRBYFLOAT.html new file mode 100644 index 0000000000..df82b84887 --- /dev/null +++ b/documentation/client/modules/lib_commands_HINCRBYFLOAT.html @@ -0,0 +1 @@ +lib/commands/HINCRBYFLOAT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HINCRBYFLOAT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, field: string, increment: number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HKEYS.html b/documentation/client/modules/lib_commands_HKEYS.html new file mode 100644 index 0000000000..7d74525610 --- /dev/null +++ b/documentation/client/modules/lib_commands_HKEYS.html @@ -0,0 +1 @@ +lib/commands/HKEYS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HKEYS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HLEN.html b/documentation/client/modules/lib_commands_HLEN.html new file mode 100644 index 0000000000..b9cfe06215 --- /dev/null +++ b/documentation/client/modules/lib_commands_HLEN.html @@ -0,0 +1 @@ +lib/commands/HLEN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HLEN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HMGET.html b/documentation/client/modules/lib_commands_HMGET.html new file mode 100644 index 0000000000..a10382b614 --- /dev/null +++ b/documentation/client/modules/lib_commands_HMGET.html @@ -0,0 +1 @@ +lib/commands/HMGET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HMGET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HRANDFIELD.html b/documentation/client/modules/lib_commands_HRANDFIELD.html new file mode 100644 index 0000000000..c3b1a81cd4 --- /dev/null +++ b/documentation/client/modules/lib_commands_HRANDFIELD.html @@ -0,0 +1 @@ +lib/commands/HRANDFIELD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HRANDFIELD

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HRANDFIELD_COUNT.html b/documentation/client/modules/lib_commands_HRANDFIELD_COUNT.html new file mode 100644 index 0000000000..46584e7530 --- /dev/null +++ b/documentation/client/modules/lib_commands_HRANDFIELD_COUNT.html @@ -0,0 +1 @@ +lib/commands/HRANDFIELD_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HRANDFIELD_COUNT

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

Functions

transformArguments

  • transformArguments(key: string, count: number): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HRANDFIELD_COUNT_WITHVALUES.html b/documentation/client/modules/lib_commands_HRANDFIELD_COUNT_WITHVALUES.html new file mode 100644 index 0000000000..59e2f2e2fd --- /dev/null +++ b/documentation/client/modules/lib_commands_HRANDFIELD_COUNT_WITHVALUES.html @@ -0,0 +1 @@ +lib/commands/HRANDFIELD_COUNT_WITHVALUES | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HRANDFIELD_COUNT_WITHVALUES

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

transformReply

Renames and re-exports transformReplyTuples

Functions

transformArguments

  • transformArguments(key: string, count: number): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HSCAN.html b/documentation/client/modules/lib_commands_HSCAN.html new file mode 100644 index 0000000000..b4975dfe6a --- /dev/null +++ b/documentation/client/modules/lib_commands_HSCAN.html @@ -0,0 +1 @@ +lib/commands/HSCAN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HSCAN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, cursor: number, options?: ScanOptions): string[]

transformReply

  • transformReply(__namedParameters: [string, string[]]): HScanReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HSET.html b/documentation/client/modules/lib_commands_HSET.html new file mode 100644 index 0000000000..57fa8aa9ed --- /dev/null +++ b/documentation/client/modules/lib_commands_HSET.html @@ -0,0 +1 @@ +lib/commands/HSET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HSET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(...__namedParameters: [key: string | Buffer, field: Types, value: Types] | [key: string | Buffer, value: HSETObject | HSETMap | HSETTuples]): RedisCommandArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HSETNX.html b/documentation/client/modules/lib_commands_HSETNX.html new file mode 100644 index 0000000000..7a67b73f31 --- /dev/null +++ b/documentation/client/modules/lib_commands_HSETNX.html @@ -0,0 +1 @@ +lib/commands/HSETNX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HSETNX

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, field: string, value: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HSTRLEN.html b/documentation/client/modules/lib_commands_HSTRLEN.html new file mode 100644 index 0000000000..22e1bb0547 --- /dev/null +++ b/documentation/client/modules/lib_commands_HSTRLEN.html @@ -0,0 +1 @@ +lib/commands/HSTRLEN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HSTRLEN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, field: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_HVALS.html b/documentation/client/modules/lib_commands_HVALS.html new file mode 100644 index 0000000000..ba3f4183bf --- /dev/null +++ b/documentation/client/modules/lib_commands_HVALS.html @@ -0,0 +1 @@ +lib/commands/HVALS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/HVALS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_INCR.html b/documentation/client/modules/lib_commands_INCR.html new file mode 100644 index 0000000000..264d935cb0 --- /dev/null +++ b/documentation/client/modules/lib_commands_INCR.html @@ -0,0 +1 @@ +lib/commands/INCR | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/INCR

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_INCRBY.html b/documentation/client/modules/lib_commands_INCRBY.html new file mode 100644 index 0000000000..38a6ad66a4 --- /dev/null +++ b/documentation/client/modules/lib_commands_INCRBY.html @@ -0,0 +1 @@ +lib/commands/INCRBY | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/INCRBY

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, increment: number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_INCRBYFLOAT.html b/documentation/client/modules/lib_commands_INCRBYFLOAT.html new file mode 100644 index 0000000000..45b35804c2 --- /dev/null +++ b/documentation/client/modules/lib_commands_INCRBYFLOAT.html @@ -0,0 +1 @@ +lib/commands/INCRBYFLOAT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/INCRBYFLOAT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, increment: number): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_INFO.html b/documentation/client/modules/lib_commands_INFO.html new file mode 100644 index 0000000000..fc5256210d --- /dev/null +++ b/documentation/client/modules/lib_commands_INFO.html @@ -0,0 +1 @@ +lib/commands/INFO | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/INFO

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(section?: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_KEYS.html b/documentation/client/modules/lib_commands_KEYS.html new file mode 100644 index 0000000000..2e2e58eea7 --- /dev/null +++ b/documentation/client/modules/lib_commands_KEYS.html @@ -0,0 +1 @@ +lib/commands/KEYS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/KEYS

Index

Functions

transformArguments

  • transformArguments(pattern: string): string[]

transformReply

  • transformReply(keys: string[]): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LASTSAVE.html b/documentation/client/modules/lib_commands_LASTSAVE.html new file mode 100644 index 0000000000..ae3522c526 --- /dev/null +++ b/documentation/client/modules/lib_commands_LASTSAVE.html @@ -0,0 +1 @@ +lib/commands/LASTSAVE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LASTSAVE

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(reply: number): Date

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LINDEX.html b/documentation/client/modules/lib_commands_LINDEX.html new file mode 100644 index 0000000000..30c54e1387 --- /dev/null +++ b/documentation/client/modules/lib_commands_LINDEX.html @@ -0,0 +1 @@ +lib/commands/LINDEX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LINDEX

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, index: number): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LINSERT.html b/documentation/client/modules/lib_commands_LINSERT.html new file mode 100644 index 0000000000..d00a3e88f8 --- /dev/null +++ b/documentation/client/modules/lib_commands_LINSERT.html @@ -0,0 +1 @@ +lib/commands/LINSERT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LINSERT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, position: LInsertPosition, pivot: string, element: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LLEN.html b/documentation/client/modules/lib_commands_LLEN.html new file mode 100644 index 0000000000..fcdf1ec81a --- /dev/null +++ b/documentation/client/modules/lib_commands_LLEN.html @@ -0,0 +1 @@ +lib/commands/LLEN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LLEN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LMOVE.html b/documentation/client/modules/lib_commands_LMOVE.html new file mode 100644 index 0000000000..5267448e67 --- /dev/null +++ b/documentation/client/modules/lib_commands_LMOVE.html @@ -0,0 +1 @@ +lib/commands/LMOVE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LMOVE

Index

Type aliases

LMoveSide

LMoveSide: "LEFT" | "RIGHT"

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(source: string, destination: string, sourceSide: LMoveSide, destinationSide: LMoveSide): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LOLWUT.html b/documentation/client/modules/lib_commands_LOLWUT.html new file mode 100644 index 0000000000..6d74dca09f --- /dev/null +++ b/documentation/client/modules/lib_commands_LOLWUT.html @@ -0,0 +1 @@ +lib/commands/LOLWUT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LOLWUT

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(version?: number, ...optionalArguments: number[]): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LPOP.html b/documentation/client/modules/lib_commands_LPOP.html new file mode 100644 index 0000000000..2dfa1b448b --- /dev/null +++ b/documentation/client/modules/lib_commands_LPOP.html @@ -0,0 +1 @@ +lib/commands/LPOP | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LPOP

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LPOP_COUNT.html b/documentation/client/modules/lib_commands_LPOP_COUNT.html new file mode 100644 index 0000000000..fc25054250 --- /dev/null +++ b/documentation/client/modules/lib_commands_LPOP_COUNT.html @@ -0,0 +1 @@ +lib/commands/LPOP_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LPOP_COUNT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, count: number): string[]

transformReply

  • transformReply(): string[] | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LPOS.html b/documentation/client/modules/lib_commands_LPOS.html new file mode 100644 index 0000000000..08f1cc982c --- /dev/null +++ b/documentation/client/modules/lib_commands_LPOS.html @@ -0,0 +1 @@ +lib/commands/LPOS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LPOS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, element: string, options?: LPosOptions): string[]

transformReply

  • transformReply(): number | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LPOS_COUNT.html b/documentation/client/modules/lib_commands_LPOS_COUNT.html new file mode 100644 index 0000000000..ac73ca1474 --- /dev/null +++ b/documentation/client/modules/lib_commands_LPOS_COUNT.html @@ -0,0 +1 @@ +lib/commands/LPOS_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LPOS_COUNT

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

Functions

transformArguments

  • transformArguments(key: string, element: string, count: number, options?: LPosOptions): string[]

transformReply

  • transformReply(): number[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LPUSH.html b/documentation/client/modules/lib_commands_LPUSH.html new file mode 100644 index 0000000000..7e89c9805a --- /dev/null +++ b/documentation/client/modules/lib_commands_LPUSH.html @@ -0,0 +1 @@ +lib/commands/LPUSH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LPUSH

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LPUSHX.html b/documentation/client/modules/lib_commands_LPUSHX.html new file mode 100644 index 0000000000..b3c4194889 --- /dev/null +++ b/documentation/client/modules/lib_commands_LPUSHX.html @@ -0,0 +1 @@ +lib/commands/LPUSHX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LPUSHX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LRANGE.html b/documentation/client/modules/lib_commands_LRANGE.html new file mode 100644 index 0000000000..7f5cce9ac7 --- /dev/null +++ b/documentation/client/modules/lib_commands_LRANGE.html @@ -0,0 +1 @@ +lib/commands/LRANGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LRANGE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, start: number, stop: number): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LREM.html b/documentation/client/modules/lib_commands_LREM.html new file mode 100644 index 0000000000..a0dfcc4d88 --- /dev/null +++ b/documentation/client/modules/lib_commands_LREM.html @@ -0,0 +1 @@ +lib/commands/LREM | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LREM

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, count: number, element: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LSET.html b/documentation/client/modules/lib_commands_LSET.html new file mode 100644 index 0000000000..f21be50d86 --- /dev/null +++ b/documentation/client/modules/lib_commands_LSET.html @@ -0,0 +1 @@ +lib/commands/LSET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LSET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, index: number, element: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_LTRIM.html b/documentation/client/modules/lib_commands_LTRIM.html new file mode 100644 index 0000000000..c44a4454a1 --- /dev/null +++ b/documentation/client/modules/lib_commands_LTRIM.html @@ -0,0 +1 @@ +lib/commands/LTRIM | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/LTRIM

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, start: number, stop: number): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MEMORY_DOCTOR.html b/documentation/client/modules/lib_commands_MEMORY_DOCTOR.html new file mode 100644 index 0000000000..1da3b436e5 --- /dev/null +++ b/documentation/client/modules/lib_commands_MEMORY_DOCTOR.html @@ -0,0 +1 @@ +lib/commands/MEMORY_DOCTOR | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MEMORY_DOCTOR

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MEMORY_MALLOC_STATS.html b/documentation/client/modules/lib_commands_MEMORY_MALLOC_STATS.html new file mode 100644 index 0000000000..ffe08de8ef --- /dev/null +++ b/documentation/client/modules/lib_commands_MEMORY_MALLOC_STATS.html @@ -0,0 +1 @@ +lib/commands/MEMORY_MALLOC-STATS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MEMORY_MALLOC-STATS

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MEMORY_PURGE.html b/documentation/client/modules/lib_commands_MEMORY_PURGE.html new file mode 100644 index 0000000000..f159b671ae --- /dev/null +++ b/documentation/client/modules/lib_commands_MEMORY_PURGE.html @@ -0,0 +1 @@ +lib/commands/MEMORY_PURGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MEMORY_PURGE

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MEMORY_STATS.html b/documentation/client/modules/lib_commands_MEMORY_STATS.html new file mode 100644 index 0000000000..9a00c4d03f --- /dev/null +++ b/documentation/client/modules/lib_commands_MEMORY_STATS.html @@ -0,0 +1 @@ +lib/commands/MEMORY_STATS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MEMORY_STATS

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(rawReply: (string | number | (string | number)[])[]): MemoryStatsReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MEMORY_USAGE.html b/documentation/client/modules/lib_commands_MEMORY_USAGE.html new file mode 100644 index 0000000000..9933dfb3ad --- /dev/null +++ b/documentation/client/modules/lib_commands_MEMORY_USAGE.html @@ -0,0 +1 @@ +lib/commands/MEMORY_USAGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MEMORY_USAGE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, options?: MemoryUsageOptions): string[]

transformReply

  • transformReply(): number | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MGET.html b/documentation/client/modules/lib_commands_MGET.html new file mode 100644 index 0000000000..ecbe7ac753 --- /dev/null +++ b/documentation/client/modules/lib_commands_MGET.html @@ -0,0 +1 @@ +lib/commands/MGET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MGET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(keys: string[]): string[]

transformReply

  • transformReply(): (string | null)[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MIGRATE.html b/documentation/client/modules/lib_commands_MIGRATE.html new file mode 100644 index 0000000000..d264ec9cfa --- /dev/null +++ b/documentation/client/modules/lib_commands_MIGRATE.html @@ -0,0 +1 @@ +lib/commands/MIGRATE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MIGRATE

Index

Functions

transformArguments

  • transformArguments(host: string, port: number, key: string | string[], destinationDb: number, timeout: number, options?: MigrateOptions): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MODULE_LIST.html b/documentation/client/modules/lib_commands_MODULE_LIST.html new file mode 100644 index 0000000000..23da6d3785 --- /dev/null +++ b/documentation/client/modules/lib_commands_MODULE_LIST.html @@ -0,0 +1 @@ +lib/commands/MODULE_LIST | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MODULE_LIST

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MODULE_LOAD.html b/documentation/client/modules/lib_commands_MODULE_LOAD.html new file mode 100644 index 0000000000..cb25d4666c --- /dev/null +++ b/documentation/client/modules/lib_commands_MODULE_LOAD.html @@ -0,0 +1 @@ +lib/commands/MODULE_LOAD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MODULE_LOAD

Index

Functions

transformArguments

  • transformArguments(path: string, moduleArgs?: string[]): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MODULE_UNLOAD.html b/documentation/client/modules/lib_commands_MODULE_UNLOAD.html new file mode 100644 index 0000000000..833cc43abc --- /dev/null +++ b/documentation/client/modules/lib_commands_MODULE_UNLOAD.html @@ -0,0 +1 @@ +lib/commands/MODULE_UNLOAD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MODULE_UNLOAD

Index

Functions

transformArguments

  • transformArguments(name: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MOVE.html b/documentation/client/modules/lib_commands_MOVE.html new file mode 100644 index 0000000000..a0a6824e86 --- /dev/null +++ b/documentation/client/modules/lib_commands_MOVE.html @@ -0,0 +1 @@ +lib/commands/MOVE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MOVE

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Functions

transformArguments

  • transformArguments(key: string, db: number): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MSET.html b/documentation/client/modules/lib_commands_MSET.html new file mode 100644 index 0000000000..373a1bcadf --- /dev/null +++ b/documentation/client/modules/lib_commands_MSET.html @@ -0,0 +1 @@ +lib/commands/MSET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MSET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(toSet: string[] | [string, string][] | Record<string, string>): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_MSETNX.html b/documentation/client/modules/lib_commands_MSETNX.html new file mode 100644 index 0000000000..7c4afb1531 --- /dev/null +++ b/documentation/client/modules/lib_commands_MSETNX.html @@ -0,0 +1 @@ +lib/commands/MSETNX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/MSETNX

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(toSet: string[] | [string, string][] | Record<string, string>): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PERSIST.html b/documentation/client/modules/lib_commands_PERSIST.html new file mode 100644 index 0000000000..a56bed5619 --- /dev/null +++ b/documentation/client/modules/lib_commands_PERSIST.html @@ -0,0 +1 @@ +lib/commands/PERSIST | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PERSIST

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PEXPIRE.html b/documentation/client/modules/lib_commands_PEXPIRE.html new file mode 100644 index 0000000000..8f1a24c0e4 --- /dev/null +++ b/documentation/client/modules/lib_commands_PEXPIRE.html @@ -0,0 +1 @@ +lib/commands/PEXPIRE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PEXPIRE

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, milliseconds: number): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PEXPIREAT.html b/documentation/client/modules/lib_commands_PEXPIREAT.html new file mode 100644 index 0000000000..57dc6a33aa --- /dev/null +++ b/documentation/client/modules/lib_commands_PEXPIREAT.html @@ -0,0 +1 @@ +lib/commands/PEXPIREAT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PEXPIREAT

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, millisecondsTimestamp: number | Date): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PFADD.html b/documentation/client/modules/lib_commands_PFADD.html new file mode 100644 index 0000000000..3658474e0b --- /dev/null +++ b/documentation/client/modules/lib_commands_PFADD.html @@ -0,0 +1 @@ +lib/commands/PFADD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PFADD

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PFCOUNT.html b/documentation/client/modules/lib_commands_PFCOUNT.html new file mode 100644 index 0000000000..ddb310c509 --- /dev/null +++ b/documentation/client/modules/lib_commands_PFCOUNT.html @@ -0,0 +1 @@ +lib/commands/PFCOUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PFCOUNT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PFMERGE.html b/documentation/client/modules/lib_commands_PFMERGE.html new file mode 100644 index 0000000000..32c09130e1 --- /dev/null +++ b/documentation/client/modules/lib_commands_PFMERGE.html @@ -0,0 +1 @@ +lib/commands/PFMERGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PFMERGE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PING.html b/documentation/client/modules/lib_commands_PING.html new file mode 100644 index 0000000000..78282be358 --- /dev/null +++ b/documentation/client/modules/lib_commands_PING.html @@ -0,0 +1 @@ +lib/commands/PING | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PING

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PSETEX.html b/documentation/client/modules/lib_commands_PSETEX.html new file mode 100644 index 0000000000..19e042481f --- /dev/null +++ b/documentation/client/modules/lib_commands_PSETEX.html @@ -0,0 +1 @@ +lib/commands/PSETEX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PSETEX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, milliseconds: number, value: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PTTL.html b/documentation/client/modules/lib_commands_PTTL.html new file mode 100644 index 0000000000..fb8a48af9e --- /dev/null +++ b/documentation/client/modules/lib_commands_PTTL.html @@ -0,0 +1 @@ +lib/commands/PTTL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PTTL

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PUBLISH.html b/documentation/client/modules/lib_commands_PUBLISH.html new file mode 100644 index 0000000000..3c5fe7a664 --- /dev/null +++ b/documentation/client/modules/lib_commands_PUBLISH.html @@ -0,0 +1 @@ +lib/commands/PUBLISH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PUBLISH

Index

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PUBSUB_CHANNELS.html b/documentation/client/modules/lib_commands_PUBSUB_CHANNELS.html new file mode 100644 index 0000000000..f92d02dd91 --- /dev/null +++ b/documentation/client/modules/lib_commands_PUBSUB_CHANNELS.html @@ -0,0 +1 @@ +lib/commands/PUBSUB_CHANNELS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PUBSUB_CHANNELS

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(pattern?: string): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PUBSUB_NUMPAT.html b/documentation/client/modules/lib_commands_PUBSUB_NUMPAT.html new file mode 100644 index 0000000000..c39532b1b4 --- /dev/null +++ b/documentation/client/modules/lib_commands_PUBSUB_NUMPAT.html @@ -0,0 +1 @@ +lib/commands/PUBSUB_NUMPAT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PUBSUB_NUMPAT

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_PUBSUB_NUMSUB.html b/documentation/client/modules/lib_commands_PUBSUB_NUMSUB.html new file mode 100644 index 0000000000..e48b3fabef --- /dev/null +++ b/documentation/client/modules/lib_commands_PUBSUB_NUMSUB.html @@ -0,0 +1 @@ +lib/commands/PUBSUB_NUMSUB | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/PUBSUB_NUMSUB

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(channels?: string | string[]): string[]

transformReply

  • transformReply(rawReply: (string | number)[]): Record<string, number>

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RANDOMKEY.html b/documentation/client/modules/lib_commands_RANDOMKEY.html new file mode 100644 index 0000000000..f5918ffcd5 --- /dev/null +++ b/documentation/client/modules/lib_commands_RANDOMKEY.html @@ -0,0 +1 @@ +lib/commands/RANDOMKEY | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RANDOMKEY

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(reply: null | string): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_READONLY.html b/documentation/client/modules/lib_commands_READONLY.html new file mode 100644 index 0000000000..b49aabd49c --- /dev/null +++ b/documentation/client/modules/lib_commands_READONLY.html @@ -0,0 +1 @@ +lib/commands/READONLY | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/READONLY

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_READWRITE.html b/documentation/client/modules/lib_commands_READWRITE.html new file mode 100644 index 0000000000..a485d6a47d --- /dev/null +++ b/documentation/client/modules/lib_commands_READWRITE.html @@ -0,0 +1 @@ +lib/commands/READWRITE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/READWRITE

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RENAME.html b/documentation/client/modules/lib_commands_RENAME.html new file mode 100644 index 0000000000..5514f4a811 --- /dev/null +++ b/documentation/client/modules/lib_commands_RENAME.html @@ -0,0 +1 @@ +lib/commands/RENAME | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RENAME

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, newKey: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RENAMENX.html b/documentation/client/modules/lib_commands_RENAMENX.html new file mode 100644 index 0000000000..cdc64fd907 --- /dev/null +++ b/documentation/client/modules/lib_commands_RENAMENX.html @@ -0,0 +1 @@ +lib/commands/RENAMENX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RENAMENX

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, newKey: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_REPLICAOF.html b/documentation/client/modules/lib_commands_REPLICAOF.html new file mode 100644 index 0000000000..43bb473b88 --- /dev/null +++ b/documentation/client/modules/lib_commands_REPLICAOF.html @@ -0,0 +1 @@ +lib/commands/REPLICAOF | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/REPLICAOF

Index

Functions

transformArguments

  • transformArguments(host: string, port: number): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RESTORE_ASKING.html b/documentation/client/modules/lib_commands_RESTORE_ASKING.html new file mode 100644 index 0000000000..6ee722ddad --- /dev/null +++ b/documentation/client/modules/lib_commands_RESTORE_ASKING.html @@ -0,0 +1 @@ +lib/commands/RESTORE-ASKING | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RESTORE-ASKING

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ROLE.html b/documentation/client/modules/lib_commands_ROLE.html new file mode 100644 index 0000000000..f4b3293e39 --- /dev/null +++ b/documentation/client/modules/lib_commands_ROLE.html @@ -0,0 +1 @@ +lib/commands/ROLE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ROLE

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(reply: RoleRawReply): RoleReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RPOP.html b/documentation/client/modules/lib_commands_RPOP.html new file mode 100644 index 0000000000..f4e429c91d --- /dev/null +++ b/documentation/client/modules/lib_commands_RPOP.html @@ -0,0 +1 @@ +lib/commands/RPOP | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RPOP

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RPOPLPUSH.html b/documentation/client/modules/lib_commands_RPOPLPUSH.html new file mode 100644 index 0000000000..626836b283 --- /dev/null +++ b/documentation/client/modules/lib_commands_RPOPLPUSH.html @@ -0,0 +1 @@ +lib/commands/RPOPLPUSH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RPOPLPUSH

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(source: string, destination: string): string[]

transformReply

  • transformReply(): number | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RPOP_COUNT.html b/documentation/client/modules/lib_commands_RPOP_COUNT.html new file mode 100644 index 0000000000..27fa09e15f --- /dev/null +++ b/documentation/client/modules/lib_commands_RPOP_COUNT.html @@ -0,0 +1 @@ +lib/commands/RPOP_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RPOP_COUNT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, count: number): string[]

transformReply

  • transformReply(): string[] | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RPUSH.html b/documentation/client/modules/lib_commands_RPUSH.html new file mode 100644 index 0000000000..63b386e37d --- /dev/null +++ b/documentation/client/modules/lib_commands_RPUSH.html @@ -0,0 +1 @@ +lib/commands/RPUSH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RPUSH

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_RPUSHX.html b/documentation/client/modules/lib_commands_RPUSHX.html new file mode 100644 index 0000000000..79f43caca0 --- /dev/null +++ b/documentation/client/modules/lib_commands_RPUSHX.html @@ -0,0 +1 @@ +lib/commands/RPUSHX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/RPUSHX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SADD.html b/documentation/client/modules/lib_commands_SADD.html new file mode 100644 index 0000000000..f4503eb105 --- /dev/null +++ b/documentation/client/modules/lib_commands_SADD.html @@ -0,0 +1 @@ +lib/commands/SADD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SADD

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SAVE.html b/documentation/client/modules/lib_commands_SAVE.html new file mode 100644 index 0000000000..8aa25cb1c4 --- /dev/null +++ b/documentation/client/modules/lib_commands_SAVE.html @@ -0,0 +1 @@ +lib/commands/SAVE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SAVE

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SCAN.html b/documentation/client/modules/lib_commands_SCAN.html new file mode 100644 index 0000000000..ea5a670c54 --- /dev/null +++ b/documentation/client/modules/lib_commands_SCAN.html @@ -0,0 +1 @@ +lib/commands/SCAN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SCAN

Index

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(__namedParameters: [string, string[]]): ScanReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SCARD.html b/documentation/client/modules/lib_commands_SCARD.html new file mode 100644 index 0000000000..7caf45077c --- /dev/null +++ b/documentation/client/modules/lib_commands_SCARD.html @@ -0,0 +1 @@ +lib/commands/SCARD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SCARD

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SCRIPT_DEBUG.html b/documentation/client/modules/lib_commands_SCRIPT_DEBUG.html new file mode 100644 index 0000000000..e51b670d3d --- /dev/null +++ b/documentation/client/modules/lib_commands_SCRIPT_DEBUG.html @@ -0,0 +1 @@ +lib/commands/SCRIPT_DEBUG | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SCRIPT_DEBUG

Index

Functions

transformArguments

  • transformArguments(mode: "YES" | "SYNC" | "NO"): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SCRIPT_EXISTS.html b/documentation/client/modules/lib_commands_SCRIPT_EXISTS.html new file mode 100644 index 0000000000..55250e230e --- /dev/null +++ b/documentation/client/modules/lib_commands_SCRIPT_EXISTS.html @@ -0,0 +1 @@ +lib/commands/SCRIPT_EXISTS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SCRIPT_EXISTS

Index

References

transformReply

Renames and re-exports transformReplyBooleanArray

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SCRIPT_FLUSH.html b/documentation/client/modules/lib_commands_SCRIPT_FLUSH.html new file mode 100644 index 0000000000..1f7545201d --- /dev/null +++ b/documentation/client/modules/lib_commands_SCRIPT_FLUSH.html @@ -0,0 +1 @@ +lib/commands/SCRIPT_FLUSH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SCRIPT_FLUSH

Index

Functions

transformArguments

  • transformArguments(mode?: "SYNC" | "ASYNC"): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SCRIPT_KILL.html b/documentation/client/modules/lib_commands_SCRIPT_KILL.html new file mode 100644 index 0000000000..91b55c7cbd --- /dev/null +++ b/documentation/client/modules/lib_commands_SCRIPT_KILL.html @@ -0,0 +1 @@ +lib/commands/SCRIPT_KILL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SCRIPT_KILL

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SCRIPT_LOAD.html b/documentation/client/modules/lib_commands_SCRIPT_LOAD.html new file mode 100644 index 0000000000..9275aff06b --- /dev/null +++ b/documentation/client/modules/lib_commands_SCRIPT_LOAD.html @@ -0,0 +1 @@ +lib/commands/SCRIPT_LOAD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SCRIPT_LOAD

Index

Functions

transformArguments

  • transformArguments(script: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SDIFF.html b/documentation/client/modules/lib_commands_SDIFF.html new file mode 100644 index 0000000000..2aeaf1622c --- /dev/null +++ b/documentation/client/modules/lib_commands_SDIFF.html @@ -0,0 +1 @@ +lib/commands/SDIFF | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SDIFF

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SDIFFSTORE.html b/documentation/client/modules/lib_commands_SDIFFSTORE.html new file mode 100644 index 0000000000..e3de612e04 --- /dev/null +++ b/documentation/client/modules/lib_commands_SDIFFSTORE.html @@ -0,0 +1 @@ +lib/commands/SDIFFSTORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SDIFFSTORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SET.html b/documentation/client/modules/lib_commands_SET.html new file mode 100644 index 0000000000..d5a4755319 --- /dev/null +++ b/documentation/client/modules/lib_commands_SET.html @@ -0,0 +1 @@ +lib/commands/SET | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string | Buffer, value: string | number | Buffer, options?: SetOptions): RedisCommandArguments

transformReply

  • transformReply(reply?: string): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SETBIT.html b/documentation/client/modules/lib_commands_SETBIT.html new file mode 100644 index 0000000000..f0aa774cba --- /dev/null +++ b/documentation/client/modules/lib_commands_SETBIT.html @@ -0,0 +1 @@ +lib/commands/SETBIT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SETBIT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SETEX.html b/documentation/client/modules/lib_commands_SETEX.html new file mode 100644 index 0000000000..2e456a6780 --- /dev/null +++ b/documentation/client/modules/lib_commands_SETEX.html @@ -0,0 +1 @@ +lib/commands/SETEX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SETEX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SETNX.html b/documentation/client/modules/lib_commands_SETNX.html new file mode 100644 index 0000000000..3eade30974 --- /dev/null +++ b/documentation/client/modules/lib_commands_SETNX.html @@ -0,0 +1 @@ +lib/commands/SETNX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SETNX

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, value: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SETRANGE.html b/documentation/client/modules/lib_commands_SETRANGE.html new file mode 100644 index 0000000000..ebfacb663a --- /dev/null +++ b/documentation/client/modules/lib_commands_SETRANGE.html @@ -0,0 +1 @@ +lib/commands/SETRANGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SETRANGE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, offset: number, value: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SHUTDOWN.html b/documentation/client/modules/lib_commands_SHUTDOWN.html new file mode 100644 index 0000000000..cdff4cdf1e --- /dev/null +++ b/documentation/client/modules/lib_commands_SHUTDOWN.html @@ -0,0 +1 @@ +lib/commands/SHUTDOWN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SHUTDOWN

Index

Functions

transformArguments

  • transformArguments(mode?: "SAVE" | "NOSAVE"): string[]

transformReply

  • transformReply(): void

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SINTER.html b/documentation/client/modules/lib_commands_SINTER.html new file mode 100644 index 0000000000..658bc1d84f --- /dev/null +++ b/documentation/client/modules/lib_commands_SINTER.html @@ -0,0 +1 @@ +lib/commands/SINTER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SINTER

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SINTERSTORE.html b/documentation/client/modules/lib_commands_SINTERSTORE.html new file mode 100644 index 0000000000..bd050d535d --- /dev/null +++ b/documentation/client/modules/lib_commands_SINTERSTORE.html @@ -0,0 +1 @@ +lib/commands/SINTERSTORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SINTERSTORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SISMEMBER.html b/documentation/client/modules/lib_commands_SISMEMBER.html new file mode 100644 index 0000000000..a524575cc9 --- /dev/null +++ b/documentation/client/modules/lib_commands_SISMEMBER.html @@ -0,0 +1 @@ +lib/commands/SISMEMBER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SISMEMBER

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, member: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SMEMBERS.html b/documentation/client/modules/lib_commands_SMEMBERS.html new file mode 100644 index 0000000000..9460a8f70e --- /dev/null +++ b/documentation/client/modules/lib_commands_SMEMBERS.html @@ -0,0 +1 @@ +lib/commands/SMEMBERS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SMEMBERS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SMISMEMBER.html b/documentation/client/modules/lib_commands_SMISMEMBER.html new file mode 100644 index 0000000000..935207cf97 --- /dev/null +++ b/documentation/client/modules/lib_commands_SMISMEMBER.html @@ -0,0 +1 @@ +lib/commands/SMISMEMBER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SMISMEMBER

Index

References

transformReply

Renames and re-exports transformReplyBooleanArray

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, members: string[]): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SMOVE.html b/documentation/client/modules/lib_commands_SMOVE.html new file mode 100644 index 0000000000..e1a9fd94a2 --- /dev/null +++ b/documentation/client/modules/lib_commands_SMOVE.html @@ -0,0 +1 @@ +lib/commands/SMOVE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SMOVE

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(source: string, destination: string, member: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SORT.html b/documentation/client/modules/lib_commands_SORT.html new file mode 100644 index 0000000000..4a9a054f4a --- /dev/null +++ b/documentation/client/modules/lib_commands_SORT.html @@ -0,0 +1 @@ +lib/commands/SORT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SORT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, options?: SortOptions): string[]

transformReply

  • transformReply(reply: number | string[]): string[] | number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SPOP.html b/documentation/client/modules/lib_commands_SPOP.html new file mode 100644 index 0000000000..5b12fdbe22 --- /dev/null +++ b/documentation/client/modules/lib_commands_SPOP.html @@ -0,0 +1 @@ +lib/commands/SPOP | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SPOP

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, count?: number): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SRANDMEMBER.html b/documentation/client/modules/lib_commands_SRANDMEMBER.html new file mode 100644 index 0000000000..31b955e13b --- /dev/null +++ b/documentation/client/modules/lib_commands_SRANDMEMBER.html @@ -0,0 +1 @@ +lib/commands/SRANDMEMBER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SRANDMEMBER

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SRANDMEMBER_COUNT.html b/documentation/client/modules/lib_commands_SRANDMEMBER_COUNT.html new file mode 100644 index 0000000000..8f64f3092e --- /dev/null +++ b/documentation/client/modules/lib_commands_SRANDMEMBER_COUNT.html @@ -0,0 +1 @@ +lib/commands/SRANDMEMBER_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SRANDMEMBER_COUNT

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

Functions

transformArguments

  • transformArguments(key: string, count: number): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SREM.html b/documentation/client/modules/lib_commands_SREM.html new file mode 100644 index 0000000000..18b822a8b6 --- /dev/null +++ b/documentation/client/modules/lib_commands_SREM.html @@ -0,0 +1 @@ +lib/commands/SREM | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SREM

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SSCAN.html b/documentation/client/modules/lib_commands_SSCAN.html new file mode 100644 index 0000000000..00771740e7 --- /dev/null +++ b/documentation/client/modules/lib_commands_SSCAN.html @@ -0,0 +1 @@ +lib/commands/SSCAN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SSCAN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, cursor: number, options?: ScanOptions): string[]

transformReply

  • transformReply(__namedParameters: [string, string[]]): SScanReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_STRLEN.html b/documentation/client/modules/lib_commands_STRLEN.html new file mode 100644 index 0000000000..60635959d1 --- /dev/null +++ b/documentation/client/modules/lib_commands_STRLEN.html @@ -0,0 +1 @@ +lib/commands/STRLEN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/STRLEN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SUNION.html b/documentation/client/modules/lib_commands_SUNION.html new file mode 100644 index 0000000000..91aa033892 --- /dev/null +++ b/documentation/client/modules/lib_commands_SUNION.html @@ -0,0 +1 @@ +lib/commands/SUNION | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SUNION

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SUNIONSTORE.html b/documentation/client/modules/lib_commands_SUNIONSTORE.html new file mode 100644 index 0000000000..83f9f4fdef --- /dev/null +++ b/documentation/client/modules/lib_commands_SUNIONSTORE.html @@ -0,0 +1 @@ +lib/commands/SUNIONSTORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SUNIONSTORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_SWAPDB.html b/documentation/client/modules/lib_commands_SWAPDB.html new file mode 100644 index 0000000000..306f14dee4 --- /dev/null +++ b/documentation/client/modules/lib_commands_SWAPDB.html @@ -0,0 +1 @@ +lib/commands/SWAPDB | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/SWAPDB

Index

Functions

transformArguments

  • transformArguments(index1: number, index2: number): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_TIME.html b/documentation/client/modules/lib_commands_TIME.html new file mode 100644 index 0000000000..b345fcd2de --- /dev/null +++ b/documentation/client/modules/lib_commands_TIME.html @@ -0,0 +1 @@ +lib/commands/TIME | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/TIME

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(reply: [string, string]): TimeReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_TOUCH.html b/documentation/client/modules/lib_commands_TOUCH.html new file mode 100644 index 0000000000..5de08f24f6 --- /dev/null +++ b/documentation/client/modules/lib_commands_TOUCH.html @@ -0,0 +1 @@ +lib/commands/TOUCH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/TOUCH

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_TTL.html b/documentation/client/modules/lib_commands_TTL.html new file mode 100644 index 0000000000..8be53fb2ca --- /dev/null +++ b/documentation/client/modules/lib_commands_TTL.html @@ -0,0 +1 @@ +lib/commands/TTL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/TTL

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_TYPE.html b/documentation/client/modules/lib_commands_TYPE.html new file mode 100644 index 0000000000..c8cd7f1a9e --- /dev/null +++ b/documentation/client/modules/lib_commands_TYPE.html @@ -0,0 +1 @@ +lib/commands/TYPE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/TYPE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_UNLINK.html b/documentation/client/modules/lib_commands_UNLINK.html new file mode 100644 index 0000000000..d8106dca10 --- /dev/null +++ b/documentation/client/modules/lib_commands_UNLINK.html @@ -0,0 +1 @@ +lib/commands/UNLINK | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/UNLINK

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_UNWATCH.html b/documentation/client/modules/lib_commands_UNWATCH.html new file mode 100644 index 0000000000..22ddc1c1a1 --- /dev/null +++ b/documentation/client/modules/lib_commands_UNWATCH.html @@ -0,0 +1 @@ +lib/commands/UNWATCH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/UNWATCH

Index

Functions

transformArguments

  • transformArguments(): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_WAIT.html b/documentation/client/modules/lib_commands_WAIT.html new file mode 100644 index 0000000000..d36bbd4614 --- /dev/null +++ b/documentation/client/modules/lib_commands_WAIT.html @@ -0,0 +1 @@ +lib/commands/WAIT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/WAIT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(numberOfReplicas: number, timeout: number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_WATCH.html b/documentation/client/modules/lib_commands_WATCH.html new file mode 100644 index 0000000000..915741459f --- /dev/null +++ b/documentation/client/modules/lib_commands_WATCH.html @@ -0,0 +1 @@ +lib/commands/WATCH | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/WATCH

Index

Functions

transformArguments

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XACK.html b/documentation/client/modules/lib_commands_XACK.html new file mode 100644 index 0000000000..822821d69f --- /dev/null +++ b/documentation/client/modules/lib_commands_XACK.html @@ -0,0 +1 @@ +lib/commands/XACK | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XACK

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XADD.html b/documentation/client/modules/lib_commands_XADD.html new file mode 100644 index 0000000000..caa79db8a4 --- /dev/null +++ b/documentation/client/modules/lib_commands_XADD.html @@ -0,0 +1 @@ +lib/commands/XADD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XADD

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, id: string, message: TuplesObject, options?: XAddOptions): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XAUTOCLAIM.html b/documentation/client/modules/lib_commands_XAUTOCLAIM.html new file mode 100644 index 0000000000..15b5c7b095 --- /dev/null +++ b/documentation/client/modules/lib_commands_XAUTOCLAIM.html @@ -0,0 +1 @@ +lib/commands/XAUTOCLAIM | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XAUTOCLAIM

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, group: string, consumer: string, minIdleTime: number, start: string, options?: XAutoClaimOptions): string[]

transformReply

  • transformReply(reply: [string, any[]]): XAutoClaimReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XAUTOCLAIM_JUSTID.html b/documentation/client/modules/lib_commands_XAUTOCLAIM_JUSTID.html new file mode 100644 index 0000000000..ea21bafa1d --- /dev/null +++ b/documentation/client/modules/lib_commands_XAUTOCLAIM_JUSTID.html @@ -0,0 +1 @@ +lib/commands/XAUTOCLAIM_JUSTID | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XAUTOCLAIM_JUSTID

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

Functions

transformArguments

  • transformArguments(...args: [key: string, group: string, consumer: string, minIdleTime: number, start: string, options?: XAutoClaimOptions]): string[]

transformReply

  • transformReply(reply: [string, string[]]): XAutoClaimJustIdReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XCLAIM.html b/documentation/client/modules/lib_commands_XCLAIM.html new file mode 100644 index 0000000000..c71859c0ea --- /dev/null +++ b/documentation/client/modules/lib_commands_XCLAIM.html @@ -0,0 +1 @@ +lib/commands/XCLAIM | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XCLAIM

Index

References

transformReply

Renames and re-exports transformReplyStreamMessages

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, group: string, consumer: string, minIdleTime: number, id: string | string[], options?: XClaimOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XCLAIM_JUSTID.html b/documentation/client/modules/lib_commands_XCLAIM_JUSTID.html new file mode 100644 index 0000000000..d656a641fc --- /dev/null +++ b/documentation/client/modules/lib_commands_XCLAIM_JUSTID.html @@ -0,0 +1 @@ +lib/commands/XCLAIM_JUSTID | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XCLAIM_JUSTID

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

Functions

transformArguments

  • transformArguments(...args: [key: string, group: string, consumer: string, minIdleTime: number, id: string | string[], options?: XClaimOptions]): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XDEL.html b/documentation/client/modules/lib_commands_XDEL.html new file mode 100644 index 0000000000..c91a03a611 --- /dev/null +++ b/documentation/client/modules/lib_commands_XDEL.html @@ -0,0 +1 @@ +lib/commands/XDEL | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XDEL

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XGROUP_CREATE.html b/documentation/client/modules/lib_commands_XGROUP_CREATE.html new file mode 100644 index 0000000000..952212bd88 --- /dev/null +++ b/documentation/client/modules/lib_commands_XGROUP_CREATE.html @@ -0,0 +1 @@ +lib/commands/XGROUP_CREATE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XGROUP_CREATE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

Functions

transformArguments

  • transformArguments(key: string, group: string, id: string, options?: XGroupCreateOptions): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XGROUP_CREATECONSUMER.html b/documentation/client/modules/lib_commands_XGROUP_CREATECONSUMER.html new file mode 100644 index 0000000000..ad6eb83e30 --- /dev/null +++ b/documentation/client/modules/lib_commands_XGROUP_CREATECONSUMER.html @@ -0,0 +1 @@ +lib/commands/XGROUP_CREATECONSUMER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XGROUP_CREATECONSUMER

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

Functions

transformArguments

  • transformArguments(key: string, group: string, consumer: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XGROUP_DELCONSUMER.html b/documentation/client/modules/lib_commands_XGROUP_DELCONSUMER.html new file mode 100644 index 0000000000..80f3301c5b --- /dev/null +++ b/documentation/client/modules/lib_commands_XGROUP_DELCONSUMER.html @@ -0,0 +1 @@ +lib/commands/XGROUP_DELCONSUMER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XGROUP_DELCONSUMER

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

Functions

transformArguments

  • transformArguments(key: string, group: string, consumer: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XGROUP_DESTROY.html b/documentation/client/modules/lib_commands_XGROUP_DESTROY.html new file mode 100644 index 0000000000..d5912d3e50 --- /dev/null +++ b/documentation/client/modules/lib_commands_XGROUP_DESTROY.html @@ -0,0 +1 @@ +lib/commands/XGROUP_DESTROY | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XGROUP_DESTROY

Index

References

transformReply

Renames and re-exports transformReplyBoolean

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

Functions

transformArguments

  • transformArguments(key: string, group: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XGROUP_SETID.html b/documentation/client/modules/lib_commands_XGROUP_SETID.html new file mode 100644 index 0000000000..5b6d3638d3 --- /dev/null +++ b/documentation/client/modules/lib_commands_XGROUP_SETID.html @@ -0,0 +1 @@ +lib/commands/XGROUP_SETID | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XGROUP_SETID

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

Functions

transformArguments

  • transformArguments(key: string, group: string, id: string): string[]

transformReply

  • transformReply(): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XINFO_CONSUMERS.html b/documentation/client/modules/lib_commands_XINFO_CONSUMERS.html new file mode 100644 index 0000000000..9729f00fae --- /dev/null +++ b/documentation/client/modules/lib_commands_XINFO_CONSUMERS.html @@ -0,0 +1 @@ +lib/commands/XINFO_CONSUMERS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XINFO_CONSUMERS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, group: string): string[]

transformReply

  • transformReply(rawReply: any[]): XInfoConsumersReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XINFO_GROUPS.html b/documentation/client/modules/lib_commands_XINFO_GROUPS.html new file mode 100644 index 0000000000..d2d104cd33 --- /dev/null +++ b/documentation/client/modules/lib_commands_XINFO_GROUPS.html @@ -0,0 +1 @@ +lib/commands/XINFO_GROUPS | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XINFO_GROUPS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(rawReply: any[]): XInfoGroupsReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XINFO_STREAM.html b/documentation/client/modules/lib_commands_XINFO_STREAM.html new file mode 100644 index 0000000000..1c46f93f0e --- /dev/null +++ b/documentation/client/modules/lib_commands_XINFO_STREAM.html @@ -0,0 +1 @@ +lib/commands/XINFO_STREAM | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XINFO_STREAM

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(rawReply: any[]): XInfoStreamReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XLEN.html b/documentation/client/modules/lib_commands_XLEN.html new file mode 100644 index 0000000000..d281c8b166 --- /dev/null +++ b/documentation/client/modules/lib_commands_XLEN.html @@ -0,0 +1 @@ +lib/commands/XLEN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XLEN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XPENDING.html b/documentation/client/modules/lib_commands_XPENDING.html new file mode 100644 index 0000000000..aedaa53d03 --- /dev/null +++ b/documentation/client/modules/lib_commands_XPENDING.html @@ -0,0 +1 @@ +lib/commands/XPENDING | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XPENDING

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, group: string): string[]

transformReply

  • transformReply(reply: [number, null | string, null | number, null | string[]]): XPendingReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XPENDING_RANGE.html b/documentation/client/modules/lib_commands_XPENDING_RANGE.html new file mode 100644 index 0000000000..aff3299634 --- /dev/null +++ b/documentation/client/modules/lib_commands_XPENDING_RANGE.html @@ -0,0 +1 @@ +lib/commands/XPENDING_RANGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XPENDING_RANGE

Index

References

transformReply

Renames and re-exports transformReplyStreamMessages

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, group: string, start: string, end: string, count: number, options?: XPendingRangeOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XRANGE.html b/documentation/client/modules/lib_commands_XRANGE.html new file mode 100644 index 0000000000..4b8bd88dc5 --- /dev/null +++ b/documentation/client/modules/lib_commands_XRANGE.html @@ -0,0 +1 @@ +lib/commands/XRANGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XRANGE

Index

References

transformReply

Renames and re-exports transformReplyStreamMessages

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, start: string, end: string, options?: XRangeOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XREAD.html b/documentation/client/modules/lib_commands_XREAD.html new file mode 100644 index 0000000000..27d1591643 --- /dev/null +++ b/documentation/client/modules/lib_commands_XREAD.html @@ -0,0 +1 @@ +lib/commands/XREAD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XREAD

Index

References

transformReply

Renames and re-exports transformReplyStreamsMessages

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

Const FIRST_KEY_INDEX

  • FIRST_KEY_INDEX(streams: XReadStream | XReadStream[]): string

transformArguments

  • transformArguments(streams: XReadStream | XReadStream[], options?: XReadOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XREADGROUP.html b/documentation/client/modules/lib_commands_XREADGROUP.html new file mode 100644 index 0000000000..8f5e9be5c1 --- /dev/null +++ b/documentation/client/modules/lib_commands_XREADGROUP.html @@ -0,0 +1 @@ +lib/commands/XREADGROUP | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XREADGROUP

Index

References

transformReply

Renames and re-exports transformReplyStreamsMessages

Variables

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

Const FIRST_KEY_INDEX

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XREVRANGE.html b/documentation/client/modules/lib_commands_XREVRANGE.html new file mode 100644 index 0000000000..58c5e4e73a --- /dev/null +++ b/documentation/client/modules/lib_commands_XREVRANGE.html @@ -0,0 +1 @@ +lib/commands/XREVRANGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XREVRANGE

Index

References

transformReply

Renames and re-exports transformReplyStreamMessages

Functions

transformArguments

  • transformArguments(key: string, start: string, end: string, options?: XRangeRevOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_XTRIM.html b/documentation/client/modules/lib_commands_XTRIM.html new file mode 100644 index 0000000000..367e3e31f7 --- /dev/null +++ b/documentation/client/modules/lib_commands_XTRIM.html @@ -0,0 +1 @@ +lib/commands/XTRIM | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/XTRIM

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, strategy: "MAXLEN" | "MINID", threshold: number, options?: XTrimOptions): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZADD.html b/documentation/client/modules/lib_commands_ZADD.html new file mode 100644 index 0000000000..b35d0ca23c --- /dev/null +++ b/documentation/client/modules/lib_commands_ZADD.html @@ -0,0 +1 @@ +lib/commands/ZADD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZADD

Index

References

transformReply

Renames and re-exports transformReplyNumberInfinity

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, members: ZMember | ZMember[], options?: ZAddOptions): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZCARD.html b/documentation/client/modules/lib_commands_ZCARD.html new file mode 100644 index 0000000000..532ac7275e --- /dev/null +++ b/documentation/client/modules/lib_commands_ZCARD.html @@ -0,0 +1 @@ +lib/commands/ZCARD | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZCARD

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZCOUNT.html b/documentation/client/modules/lib_commands_ZCOUNT.html new file mode 100644 index 0000000000..567b5f3d71 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZCOUNT.html @@ -0,0 +1 @@ +lib/commands/ZCOUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZCOUNT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, min: string | number, max: string | number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZDIFF.html b/documentation/client/modules/lib_commands_ZDIFF.html new file mode 100644 index 0000000000..c861ce4c8f --- /dev/null +++ b/documentation/client/modules/lib_commands_ZDIFF.html @@ -0,0 +1 @@ +lib/commands/ZDIFF | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZDIFF

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZDIFFSTORE.html b/documentation/client/modules/lib_commands_ZDIFFSTORE.html new file mode 100644 index 0000000000..6c4ee71505 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZDIFFSTORE.html @@ -0,0 +1 @@ +lib/commands/ZDIFFSTORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZDIFFSTORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZDIFF_WITHSCORES.html b/documentation/client/modules/lib_commands_ZDIFF_WITHSCORES.html new file mode 100644 index 0000000000..bddd0d55a8 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZDIFF_WITHSCORES.html @@ -0,0 +1 @@ +lib/commands/ZDIFF_WITHSCORES | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZDIFF_WITHSCORES

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

transformReply

Renames and re-exports transformReplySortedSetWithScores

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZINCRBY.html b/documentation/client/modules/lib_commands_ZINCRBY.html new file mode 100644 index 0000000000..0a4354a148 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZINCRBY.html @@ -0,0 +1 @@ +lib/commands/ZINCRBY | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZINCRBY

Index

References

transformReply

Renames and re-exports transformReplyNumberInfinity

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, increment: number, member: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZINTER.html b/documentation/client/modules/lib_commands_ZINTER.html new file mode 100644 index 0000000000..6ecbac79dd --- /dev/null +++ b/documentation/client/modules/lib_commands_ZINTER.html @@ -0,0 +1 @@ +lib/commands/ZINTER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZINTER

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZINTERSTORE.html b/documentation/client/modules/lib_commands_ZINTERSTORE.html new file mode 100644 index 0000000000..f9c93d0850 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZINTERSTORE.html @@ -0,0 +1 @@ +lib/commands/ZINTERSTORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZINTERSTORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(destination: string, keys: string | string[], options?: ZInterStoreOptions): RedisCommandArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZINTER_WITHSCORES.html b/documentation/client/modules/lib_commands_ZINTER_WITHSCORES.html new file mode 100644 index 0000000000..a990ac393d --- /dev/null +++ b/documentation/client/modules/lib_commands_ZINTER_WITHSCORES.html @@ -0,0 +1 @@ +lib/commands/ZINTER_WITHSCORES | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZINTER_WITHSCORES

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

transformReply

Renames and re-exports transformReplySortedSetWithScores

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZLEXCOUNT.html b/documentation/client/modules/lib_commands_ZLEXCOUNT.html new file mode 100644 index 0000000000..6c1c953f87 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZLEXCOUNT.html @@ -0,0 +1 @@ +lib/commands/ZLEXCOUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZLEXCOUNT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, min: string, max: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZMSCORE.html b/documentation/client/modules/lib_commands_ZMSCORE.html new file mode 100644 index 0000000000..1e7951d723 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZMSCORE.html @@ -0,0 +1 @@ +lib/commands/ZMSCORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZMSCORE

Index

References

transformReply

Renames and re-exports transformReplyNumberInfinityNullArray

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZPOPMAX.html b/documentation/client/modules/lib_commands_ZPOPMAX.html new file mode 100644 index 0000000000..ca36baeb8b --- /dev/null +++ b/documentation/client/modules/lib_commands_ZPOPMAX.html @@ -0,0 +1 @@ +lib/commands/ZPOPMAX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZPOPMAX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(reply: [] | [string, string]): ZMember | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZPOPMAX_COUNT.html b/documentation/client/modules/lib_commands_ZPOPMAX_COUNT.html new file mode 100644 index 0000000000..6fab33775c --- /dev/null +++ b/documentation/client/modules/lib_commands_ZPOPMAX_COUNT.html @@ -0,0 +1 @@ +lib/commands/ZPOPMAX_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZPOPMAX_COUNT

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

transformReply

Renames and re-exports transformReplySortedSetWithScores

Functions

transformArguments

  • transformArguments(key: string, count: number): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZPOPMIN.html b/documentation/client/modules/lib_commands_ZPOPMIN.html new file mode 100644 index 0000000000..63dbd1c41e --- /dev/null +++ b/documentation/client/modules/lib_commands_ZPOPMIN.html @@ -0,0 +1 @@ +lib/commands/ZPOPMIN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZPOPMIN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(reply: [] | [string, string]): ZMember | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZPOPMIN_COUNT.html b/documentation/client/modules/lib_commands_ZPOPMIN_COUNT.html new file mode 100644 index 0000000000..18b4a6ab88 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZPOPMIN_COUNT.html @@ -0,0 +1 @@ +lib/commands/ZPOPMIN_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZPOPMIN_COUNT

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

transformReply

Renames and re-exports transformReplySortedSetWithScores

Functions

transformArguments

  • transformArguments(key: string, count: number): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANDMEMBER.html b/documentation/client/modules/lib_commands_ZRANDMEMBER.html new file mode 100644 index 0000000000..8daf4d8dcb --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANDMEMBER.html @@ -0,0 +1 @@ +lib/commands/ZRANDMEMBER | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANDMEMBER

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(): string | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANDMEMBER_COUNT.html b/documentation/client/modules/lib_commands_ZRANDMEMBER_COUNT.html new file mode 100644 index 0000000000..c24d23ea56 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANDMEMBER_COUNT.html @@ -0,0 +1 @@ +lib/commands/ZRANDMEMBER_COUNT | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANDMEMBER_COUNT

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

Functions

transformArguments

  • transformArguments(key: string, count: number): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANDMEMBER_COUNT_WITHSCORES.html b/documentation/client/modules/lib_commands_ZRANDMEMBER_COUNT_WITHSCORES.html new file mode 100644 index 0000000000..338f3ab64b --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANDMEMBER_COUNT_WITHSCORES.html @@ -0,0 +1 @@ +lib/commands/ZRANDMEMBER_COUNT_WITHSCORES | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANDMEMBER_COUNT_WITHSCORES

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

transformReply

Renames and re-exports transformReplySortedSetWithScores

Functions

transformArguments

  • transformArguments(...args: [key: string, count: number]): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANGE.html b/documentation/client/modules/lib_commands_ZRANGE.html new file mode 100644 index 0000000000..098141e21e --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANGE.html @@ -0,0 +1 @@ +lib/commands/ZRANGE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANGE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, min: string | number, max: string | number, options?: ZRangeOptions): string[]

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANGEBYLEX.html b/documentation/client/modules/lib_commands_ZRANGEBYLEX.html new file mode 100644 index 0000000000..95ce1f8e1f --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANGEBYLEX.html @@ -0,0 +1 @@ +lib/commands/ZRANGEBYLEX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANGEBYLEX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANGEBYSCORE.html b/documentation/client/modules/lib_commands_ZRANGEBYSCORE.html new file mode 100644 index 0000000000..ebf9870221 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANGEBYSCORE.html @@ -0,0 +1 @@ +lib/commands/ZRANGEBYSCORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANGEBYSCORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANGEBYSCORE_WITHSCORES.html b/documentation/client/modules/lib_commands_ZRANGEBYSCORE_WITHSCORES.html new file mode 100644 index 0000000000..dc62296e8e --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANGEBYSCORE_WITHSCORES.html @@ -0,0 +1 @@ +lib/commands/ZRANGEBYSCORE_WITHSCORES | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANGEBYSCORE_WITHSCORES

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

transformReply

Renames and re-exports transformReplySortedSetWithScores

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANGESTORE.html b/documentation/client/modules/lib_commands_ZRANGESTORE.html new file mode 100644 index 0000000000..de7c90af8d --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANGESTORE.html @@ -0,0 +1 @@ +lib/commands/ZRANGESTORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANGESTORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(dst: string, src: string, min: string | number, max: string | number, options?: ZRangeStoreOptions): string[]

transformReply

  • transformReply(reply: number): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANGE_WITHSCORES.html b/documentation/client/modules/lib_commands_ZRANGE_WITHSCORES.html new file mode 100644 index 0000000000..f405d63f76 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANGE_WITHSCORES.html @@ -0,0 +1 @@ +lib/commands/ZRANGE_WITHSCORES | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANGE_WITHSCORES

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

transformReply

Renames and re-exports transformReplySortedSetWithScores

Functions

transformArguments

  • transformArguments(...args: [key: string, min: string | number, max: string | number, options?: ZRangeOptions]): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZRANK.html b/documentation/client/modules/lib_commands_ZRANK.html new file mode 100644 index 0000000000..fe7da0e9fc --- /dev/null +++ b/documentation/client/modules/lib_commands_ZRANK.html @@ -0,0 +1 @@ +lib/commands/ZRANK | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZRANK

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, member: string): string[]

transformReply

  • transformReply(): number | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZREM.html b/documentation/client/modules/lib_commands_ZREM.html new file mode 100644 index 0000000000..360582a1da --- /dev/null +++ b/documentation/client/modules/lib_commands_ZREM.html @@ -0,0 +1 @@ +lib/commands/ZREM | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZREM

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZREMRANGEBYLEX.html b/documentation/client/modules/lib_commands_ZREMRANGEBYLEX.html new file mode 100644 index 0000000000..d3b08afb83 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZREMRANGEBYLEX.html @@ -0,0 +1 @@ +lib/commands/ZREMRANGEBYLEX | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZREMRANGEBYLEX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, min: string, max: string): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZREMRANGEBYRANK.html b/documentation/client/modules/lib_commands_ZREMRANGEBYRANK.html new file mode 100644 index 0000000000..4d814f8548 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZREMRANGEBYRANK.html @@ -0,0 +1 @@ +lib/commands/ZREMRANGEBYRANK | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZREMRANGEBYRANK

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, start: number, stop: number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZREMRANGEBYSCORE.html b/documentation/client/modules/lib_commands_ZREMRANGEBYSCORE.html new file mode 100644 index 0000000000..47e21145c5 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZREMRANGEBYSCORE.html @@ -0,0 +1 @@ +lib/commands/ZREMRANGEBYSCORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZREMRANGEBYSCORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, min: number, max: number): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZREVRANK.html b/documentation/client/modules/lib_commands_ZREVRANK.html new file mode 100644 index 0000000000..b43d5b3fa8 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZREVRANK.html @@ -0,0 +1 @@ +lib/commands/ZREVRANK | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZREVRANK

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, member: string): string[]

transformReply

  • transformReply(): number | null

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZSCAN.html b/documentation/client/modules/lib_commands_ZSCAN.html new file mode 100644 index 0000000000..7da8e8c6a7 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZSCAN.html @@ -0,0 +1 @@ +lib/commands/ZSCAN | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZSCAN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, cursor: number, options?: ScanOptions): string[]

transformReply

  • transformReply(__namedParameters: [string, string[]]): ZScanReply

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZSCORE.html b/documentation/client/modules/lib_commands_ZSCORE.html new file mode 100644 index 0000000000..19aa3fb184 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZSCORE.html @@ -0,0 +1 @@ +lib/commands/ZSCORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZSCORE

Index

References

transformReply

Renames and re-exports transformReplyNumberInfinityNull

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, member: string): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZUNION.html b/documentation/client/modules/lib_commands_ZUNION.html new file mode 100644 index 0000000000..b86bf10fa9 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZUNION.html @@ -0,0 +1 @@ +lib/commands/ZUNION | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZUNION

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 2 = 2

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

transformReply

  • transformReply(): string[]

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZUNIONSTORE.html b/documentation/client/modules/lib_commands_ZUNIONSTORE.html new file mode 100644 index 0000000000..bb6bb2b030 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZUNIONSTORE.html @@ -0,0 +1 @@ +lib/commands/ZUNIONSTORE | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZUNIONSTORE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(destination: string, keys: string | string[], options?: ZUnionOptions): RedisCommandArguments

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_ZUNION_WITHSCORES.html b/documentation/client/modules/lib_commands_ZUNION_WITHSCORES.html new file mode 100644 index 0000000000..e6891d6893 --- /dev/null +++ b/documentation/client/modules/lib_commands_ZUNION_WITHSCORES.html @@ -0,0 +1 @@ +lib/commands/ZUNION_WITHSCORES | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/ZUNION_WITHSCORES

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

transformReply

Renames and re-exports transformReplySortedSetWithScores

Functions

transformArguments

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_commands_generic_transformers.html b/documentation/client/modules/lib_commands_generic_transformers.html new file mode 100644 index 0000000000..b858991235 --- /dev/null +++ b/documentation/client/modules/lib_commands_generic_transformers.html @@ -0,0 +1 @@ +lib/commands/generic-transformers | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/commands/generic-transformers

Index

Type aliases

BitValue

BitValue: 0 | 1

CommandRawReply

CommandRawReply: [name: string, arity: number, flags: CommandFlags[], firstKeyIndex: number, lastKeyIndex: number, step: number, categories: CommandCategories[]]

CommandReply

CommandReply: { arity: number; categories: Set<CommandCategories>; firstKeyIndex: number; flags: Set<CommandFlags>; lastKeyIndex: number; name: string; step: number }

Type declaration

GeoSearchBy

GeoSearchBy: GeoSearchByRadius | GeoSearchByBox

GeoSearchFrom

GeoSearchFrom: GeoSearchFromMember | GeoCoordinates

GeoUnits

GeoUnits: "m" | "km" | "mi" | "ft"

StreamMessagesReply

StreamMessagesReply: StreamMessageReply[]

StreamsMessagesReply

StreamsMessagesReply: { messages: StreamMessagesReply; name: string }[] | null

StringTuplesArguments

StringTuplesArguments: [string, string][] | string[] | Record<string, string>

Functions

pushEvalArguments

  • pushEvalArguments(args: string[], options?: EvalOptions): string[]

pushGeoCountArgument

  • pushGeoCountArgument(args: string[], count: undefined | GeoCountArgument): string[]

pushGeoSearchArguments

pushOptionalVerdictArgument

pushScanArguments

  • pushScanArguments(args: string[], cursor: number, options?: ScanOptions): string[]

pushStringTuplesArguments

pushVerdictArgument

pushVerdictArguments

transformArgumentNumberInfinity

  • transformArgumentNumberInfinity(num: number): string

transformArgumentStringNumberInfinity

  • transformArgumentStringNumberInfinity(num: string | number): string

transformCommandReply

transformEXAT

  • transformEXAT(EXAT: number | Date): string

transformGeoMembersWithReply

transformPXAT

  • transformPXAT(PXAT: number | Date): string

transformReplyBoolean

  • transformReplyBoolean(reply: number): boolean

transformReplyBooleanArray

  • transformReplyBooleanArray(reply: number[]): boolean[]

transformReplyNumberInfinity

  • transformReplyNumberInfinity(reply: string): number

transformReplyNumberInfinityArray

  • transformReplyNumberInfinityArray(reply: string[]): (number | null)[]

transformReplyNumberInfinityNull

  • transformReplyNumberInfinityNull(reply: null | string): number | null

transformReplyNumberInfinityNullArray

  • transformReplyNumberInfinityNullArray(reply: (null | string)[]): (number | null)[]

transformReplySortedSetWithScores

  • transformReplySortedSetWithScores(reply: string[]): ZMember[]

transformReplyStreamMessages

transformReplyStreamsMessages

transformReplyTuples

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_errors.html b/documentation/client/modules/lib_errors.html new file mode 100644 index 0000000000..67e1f36ddf --- /dev/null +++ b/documentation/client/modules/lib_errors.html @@ -0,0 +1 @@ +lib/errors | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_lua_script.html b/documentation/client/modules/lib_lua_script.html new file mode 100644 index 0000000000..4abed79547 --- /dev/null +++ b/documentation/client/modules/lib_lua_script.html @@ -0,0 +1 @@ +lib/lua-script | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Functions

defineScript

scriptSha1

  • scriptSha1(script: string): string

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_multi_command.html b/documentation/client/modules/lib_multi_command.html new file mode 100644 index 0000000000..c4270ce71e --- /dev/null +++ b/documentation/client/modules/lib_multi_command.html @@ -0,0 +1 @@ +lib/multi-command | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/multi-command

Index

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_ts_declarations_cluster_key_slot.html b/documentation/client/modules/lib_ts_declarations_cluster_key_slot.html new file mode 100644 index 0000000000..30c1b41bce --- /dev/null +++ b/documentation/client/modules/lib_ts_declarations_cluster_key_slot.html @@ -0,0 +1 @@ +lib/ts-declarations/cluster-key-slot | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module lib/ts-declarations/cluster-key-slot

Index

Functions

Functions

default

  • default(key: string | Buffer): number

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/client/modules/lib_utils.html b/documentation/client/modules/lib_utils.html new file mode 100644 index 0000000000..1ea11021bc --- /dev/null +++ b/documentation/client/modules/lib_utils.html @@ -0,0 +1 @@ +lib/utils | @node-redis/client
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Functions

promiseTimeout

  • promiseTimeout(ms: number): Promise<void>

Legend

  • Variable
  • Function
  • Function with type parameter
  • Type alias
  • Type alias with type parameter
  • Interface
  • Interface with type parameter
  • Class
  • Class with type parameter
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/assets/highlight.css b/documentation/json/assets/highlight.css new file mode 100644 index 0000000000..91719118c6 --- /dev/null +++ b/documentation/json/assets/highlight.css @@ -0,0 +1,78 @@ +:root { + --light-hl-0: #AF00DB; + --dark-hl-0: #C586C0; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #001080; + --dark-hl-2: #9CDCFE; + --light-hl-3: #A31515; + --dark-hl-3: #CE9178; + --light-hl-4: #795E26; + --dark-hl-4: #DCDCAA; + --light-hl-5: #098658; + --dark-hl-5: #B5CEA8; + --light-hl-6: #0000FF; + --dark-hl-6: #569CD6; + --light-hl-7: #0070C1; + --dark-hl-7: #4FC1FF; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --code-background: var(--dark-code-background); +} } + +body.light { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --code-background: var(--light-code-background); +} + +body.dark { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +pre, code { background: var(--code-background); } diff --git a/documentation/json/assets/icons.css b/documentation/json/assets/icons.css new file mode 100644 index 0000000000..776a3562d6 --- /dev/null +++ b/documentation/json/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/documentation/json/assets/icons.png b/documentation/json/assets/icons.png new file mode 100644 index 0000000000..3836d5fe46 Binary files /dev/null and b/documentation/json/assets/icons.png differ diff --git a/documentation/json/assets/icons@2x.png b/documentation/json/assets/icons@2x.png new file mode 100644 index 0000000000..5a209e2f6d Binary files /dev/null and b/documentation/json/assets/icons@2x.png differ diff --git a/documentation/json/assets/main.js b/documentation/json/assets/main.js new file mode 100644 index 0000000000..61009a4baa --- /dev/null +++ b/documentation/json/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/documentation/json/assets/search.js b/documentation/json/assets/search.js new file mode 100644 index 0000000000..ca1cb8ce08 --- /dev/null +++ b/documentation/json/assets/search.js @@ -0,0 +1 @@ +window.searchData = {"kinds":{"2":"Module","32":"Variable","64":"Function","1024":"Property","65536":"Type literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":2,"name":"commands/ARRAPPEND","url":"modules/commands_ARRAPPEND.html","classes":"tsd-kind-module"},{"id":1,"kind":64,"name":"transformArguments","url":"modules/commands_ARRAPPEND.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRAPPEND"},{"id":2,"kind":64,"name":"transformReply","url":"modules/commands_ARRAPPEND.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRAPPEND"},{"id":3,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_ARRAPPEND.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ARRAPPEND"},{"id":4,"kind":2,"name":"commands/ARRINDEX","url":"modules/commands_ARRINDEX.html","classes":"tsd-kind-module"},{"id":5,"kind":64,"name":"transformArguments","url":"modules/commands_ARRINDEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRINDEX"},{"id":6,"kind":64,"name":"transformReply","url":"modules/commands_ARRINDEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRINDEX"},{"id":7,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_ARRINDEX.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ARRINDEX"},{"id":8,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_ARRINDEX.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ARRINDEX"},{"id":9,"kind":2,"name":"commands/ARRINSERT","url":"modules/commands_ARRINSERT.html","classes":"tsd-kind-module"},{"id":10,"kind":64,"name":"transformArguments","url":"modules/commands_ARRINSERT.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRINSERT"},{"id":11,"kind":64,"name":"transformReply","url":"modules/commands_ARRINSERT.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRINSERT"},{"id":12,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_ARRINSERT.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ARRINSERT"},{"id":13,"kind":2,"name":"commands/ARRLEN","url":"modules/commands_ARRLEN.html","classes":"tsd-kind-module"},{"id":14,"kind":64,"name":"transformArguments","url":"modules/commands_ARRLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRLEN"},{"id":15,"kind":64,"name":"transformReply","url":"modules/commands_ARRLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRLEN"},{"id":16,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_ARRLEN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ARRLEN"},{"id":17,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_ARRLEN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ARRLEN"},{"id":18,"kind":2,"name":"commands/ARRPOP","url":"modules/commands_ARRPOP.html","classes":"tsd-kind-module"},{"id":19,"kind":64,"name":"transformArguments","url":"modules/commands_ARRPOP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRPOP"},{"id":20,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_ARRPOP.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ARRPOP"},{"id":21,"kind":2,"name":"commands/ARRTRIM","url":"modules/commands_ARRTRIM.html","classes":"tsd-kind-module"},{"id":22,"kind":64,"name":"transformArguments","url":"modules/commands_ARRTRIM.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRTRIM"},{"id":23,"kind":64,"name":"transformReply","url":"modules/commands_ARRTRIM.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ARRTRIM"},{"id":24,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_ARRTRIM.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ARRTRIM"},{"id":25,"kind":2,"name":"commands/DEBUG_MEMORY","url":"modules/commands_DEBUG_MEMORY.html","classes":"tsd-kind-module"},{"id":26,"kind":64,"name":"transformArguments","url":"modules/commands_DEBUG_MEMORY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DEBUG_MEMORY"},{"id":27,"kind":64,"name":"transformReply","url":"modules/commands_DEBUG_MEMORY.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DEBUG_MEMORY"},{"id":28,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_DEBUG_MEMORY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/DEBUG_MEMORY"},{"id":29,"kind":2,"name":"commands/DEL","url":"modules/commands_DEL.html","classes":"tsd-kind-module"},{"id":30,"kind":64,"name":"transformArguments","url":"modules/commands_DEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DEL"},{"id":31,"kind":64,"name":"transformReply","url":"modules/commands_DEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DEL"},{"id":32,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_DEL.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/DEL"},{"id":33,"kind":2,"name":"commands/FORGET","url":"modules/commands_FORGET.html","classes":"tsd-kind-module"},{"id":34,"kind":64,"name":"transformArguments","url":"modules/commands_FORGET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/FORGET"},{"id":35,"kind":64,"name":"transformReply","url":"modules/commands_FORGET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/FORGET"},{"id":36,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_FORGET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/FORGET"},{"id":37,"kind":2,"name":"commands/GET","url":"modules/commands_GET.html","classes":"tsd-kind-module"},{"id":38,"kind":64,"name":"transformArguments","url":"modules/commands_GET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/GET"},{"id":39,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_GET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/GET"},{"id":40,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_GET.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/GET"},{"id":41,"kind":2,"name":"commands/MGET","url":"modules/commands_MGET.html","classes":"tsd-kind-module"},{"id":42,"kind":64,"name":"transformArguments","url":"modules/commands_MGET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MGET"},{"id":43,"kind":64,"name":"transformReply","url":"modules/commands_MGET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MGET"},{"id":44,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_MGET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/MGET"},{"id":45,"kind":2,"name":"commands/NUMINCRBY","url":"modules/commands_NUMINCRBY.html","classes":"tsd-kind-module"},{"id":46,"kind":64,"name":"transformArguments","url":"modules/commands_NUMINCRBY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/NUMINCRBY"},{"id":47,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_NUMINCRBY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/NUMINCRBY"},{"id":48,"kind":2,"name":"commands/NUMMULTBY","url":"modules/commands_NUMMULTBY.html","classes":"tsd-kind-module"},{"id":49,"kind":64,"name":"transformArguments","url":"modules/commands_NUMMULTBY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/NUMMULTBY"},{"id":50,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_NUMMULTBY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/NUMMULTBY"},{"id":51,"kind":2,"name":"commands/OBJKEYS","url":"modules/commands_OBJKEYS.html","classes":"tsd-kind-module"},{"id":52,"kind":64,"name":"transformArguments","url":"modules/commands_OBJKEYS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/OBJKEYS"},{"id":53,"kind":64,"name":"transformReply","url":"modules/commands_OBJKEYS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/OBJKEYS"},{"id":54,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_OBJKEYS.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/OBJKEYS"},{"id":55,"kind":2,"name":"commands/OBJLEN","url":"modules/commands_OBJLEN.html","classes":"tsd-kind-module"},{"id":56,"kind":64,"name":"transformArguments","url":"modules/commands_OBJLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/OBJLEN"},{"id":57,"kind":64,"name":"transformReply","url":"modules/commands_OBJLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/OBJLEN"},{"id":58,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_OBJLEN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/OBJLEN"},{"id":59,"kind":2,"name":"commands/RESP","url":"modules/commands_RESP.html","classes":"tsd-kind-module"},{"id":60,"kind":64,"name":"transformArguments","url":"modules/commands_RESP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/RESP"},{"id":61,"kind":64,"name":"transfromReply","url":"modules/commands_RESP.html#transfromReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/RESP"},{"id":62,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_RESP.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/RESP"},{"id":63,"kind":2,"name":"commands/SET","url":"modules/commands_SET.html","classes":"tsd-kind-module"},{"id":64,"kind":64,"name":"transformArguments","url":"modules/commands_SET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SET"},{"id":65,"kind":64,"name":"transformReply","url":"modules/commands_SET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SET"},{"id":66,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_SET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/SET"},{"id":67,"kind":2,"name":"commands/STRAPPEND","url":"modules/commands_STRAPPEND.html","classes":"tsd-kind-module"},{"id":68,"kind":64,"name":"transformArguments","url":"modules/commands_STRAPPEND.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/STRAPPEND"},{"id":69,"kind":64,"name":"transformReply","url":"modules/commands_STRAPPEND.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/STRAPPEND"},{"id":70,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_STRAPPEND.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/STRAPPEND"},{"id":71,"kind":2,"name":"commands/STRLEN","url":"modules/commands_STRLEN.html","classes":"tsd-kind-module"},{"id":72,"kind":64,"name":"transformArguments","url":"modules/commands_STRLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/STRLEN"},{"id":73,"kind":64,"name":"transformReply","url":"modules/commands_STRLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/STRLEN"},{"id":74,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_STRLEN.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/STRLEN"},{"id":75,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_STRLEN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/STRLEN"},{"id":76,"kind":2,"name":"commands/TYPE","url":"modules/commands_TYPE.html","classes":"tsd-kind-module"},{"id":77,"kind":64,"name":"transformArguments","url":"modules/commands_TYPE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/TYPE"},{"id":78,"kind":64,"name":"transformReply","url":"modules/commands_TYPE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/TYPE"},{"id":79,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_TYPE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/TYPE"},{"id":80,"kind":2,"name":"commands","url":"modules/commands.html","classes":"tsd-kind-module"},{"id":81,"kind":64,"name":"transformRedisJsonArgument","url":"modules/commands.html#transformRedisJsonArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":82,"kind":64,"name":"transformRedisJsonReply","url":"modules/commands.html#transformRedisJsonReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":83,"kind":64,"name":"transformRedisJsonArrayReply","url":"modules/commands.html#transformRedisJsonArrayReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":84,"kind":64,"name":"transformRedisJsonNullReply","url":"modules/commands.html#transformRedisJsonNullReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":85,"kind":64,"name":"transformRedisJsonNullArrayNullReply","url":"modules/commands.html#transformRedisJsonNullArrayNullReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":86,"kind":64,"name":"transformNumbersReply","url":"modules/commands.html#transformNumbersReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":87,"kind":4194304,"name":"RedisJSON","url":"modules/commands.html#RedisJSON","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":88,"kind":1024,"name":"default","url":"modules/commands.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"commands"},{"id":89,"kind":65536,"name":"__type","url":"modules/commands.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"commands"},{"id":90,"kind":1024,"name":"ARRAPPEND","url":"modules/commands.html#__type.ARRAPPEND","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":91,"kind":1024,"name":"arrAppend","url":"modules/commands.html#__type.arrAppend","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":92,"kind":1024,"name":"ARRINDEX","url":"modules/commands.html#__type.ARRINDEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":93,"kind":1024,"name":"arrIndex","url":"modules/commands.html#__type.arrIndex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":94,"kind":1024,"name":"ARRINSERT","url":"modules/commands.html#__type.ARRINSERT","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":95,"kind":1024,"name":"arrInsert","url":"modules/commands.html#__type.arrInsert","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":96,"kind":1024,"name":"ARRLEN","url":"modules/commands.html#__type.ARRLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":97,"kind":1024,"name":"arrLen","url":"modules/commands.html#__type.arrLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":98,"kind":1024,"name":"ARRPOP","url":"modules/commands.html#__type.ARRPOP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":99,"kind":1024,"name":"arrPop","url":"modules/commands.html#__type.arrPop","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":100,"kind":1024,"name":"ARRTRIM","url":"modules/commands.html#__type.ARRTRIM","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":101,"kind":1024,"name":"arrTrim","url":"modules/commands.html#__type.arrTrim","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":102,"kind":1024,"name":"DEBUG_MEMORY","url":"modules/commands.html#__type.DEBUG_MEMORY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":103,"kind":1024,"name":"debugMemory","url":"modules/commands.html#__type.debugMemory","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":104,"kind":1024,"name":"DEL","url":"modules/commands.html#__type.DEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":105,"kind":1024,"name":"del","url":"modules/commands.html#__type.del","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":106,"kind":1024,"name":"FORGET","url":"modules/commands.html#__type.FORGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":107,"kind":1024,"name":"forget","url":"modules/commands.html#__type.forget","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":108,"kind":1024,"name":"GET","url":"modules/commands.html#__type.GET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":109,"kind":1024,"name":"get","url":"modules/commands.html#__type.get","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":110,"kind":1024,"name":"MGET","url":"modules/commands.html#__type.MGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":111,"kind":1024,"name":"mGet","url":"modules/commands.html#__type.mGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":112,"kind":1024,"name":"NUMINCRBY","url":"modules/commands.html#__type.NUMINCRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":113,"kind":1024,"name":"numIncrBy","url":"modules/commands.html#__type.numIncrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":114,"kind":1024,"name":"NUMMULTBY","url":"modules/commands.html#__type.NUMMULTBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":115,"kind":1024,"name":"numMultBy","url":"modules/commands.html#__type.numMultBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":116,"kind":1024,"name":"OBJKEYS","url":"modules/commands.html#__type.OBJKEYS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":117,"kind":1024,"name":"objKeys","url":"modules/commands.html#__type.objKeys","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":118,"kind":1024,"name":"OBJLEN","url":"modules/commands.html#__type.OBJLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":119,"kind":1024,"name":"objLen","url":"modules/commands.html#__type.objLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":120,"kind":1024,"name":"RESP","url":"modules/commands.html#__type.RESP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":121,"kind":1024,"name":"resp","url":"modules/commands.html#__type.resp","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":122,"kind":1024,"name":"SET","url":"modules/commands.html#__type.SET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":123,"kind":1024,"name":"set","url":"modules/commands.html#__type.set","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":124,"kind":1024,"name":"STRAPPEND","url":"modules/commands.html#__type.STRAPPEND","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":125,"kind":1024,"name":"strAppend","url":"modules/commands.html#__type.strAppend","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":126,"kind":1024,"name":"STRLEN","url":"modules/commands.html#__type.STRLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":127,"kind":1024,"name":"strLen","url":"modules/commands.html#__type.strLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":128,"kind":1024,"name":"TYPE","url":"modules/commands.html#__type.TYPE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":129,"kind":1024,"name":"type","url":"modules/commands.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":130,"kind":2,"name":"index","url":"modules/index.html","classes":"tsd-kind-module"},{"id":131,"kind":16777216,"name":"transformReply","url":"modules/commands_ARRPOP.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/ARRPOP"},{"id":132,"kind":16777216,"name":"transformReply","url":"modules/commands_GET.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/GET"},{"id":133,"kind":16777216,"name":"transformReply","url":"modules/commands_NUMINCRBY.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/NUMINCRBY"},{"id":134,"kind":16777216,"name":"transformReply","url":"modules/commands_NUMMULTBY.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/NUMMULTBY"},{"id":135,"kind":16777216,"name":"default","url":"modules/index.html#default","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,34.159]],["parent/0",[]],["name/1",[1,18.996]],["parent/1",[0,3.166]],["name/2",[2,19.496]],["parent/2",[0,3.166]],["name/3",[3,18.996]],["parent/3",[0,3.166]],["name/4",[4,32.152]],["parent/4",[]],["name/5",[1,18.996]],["parent/5",[4,2.98]],["name/6",[2,19.496]],["parent/6",[4,2.98]],["name/7",[3,18.996]],["parent/7",[4,2.98]],["name/8",[5,34.159]],["parent/8",[4,2.98]],["name/9",[6,34.159]],["parent/9",[]],["name/10",[1,18.996]],["parent/10",[6,3.166]],["name/11",[2,19.496]],["parent/11",[6,3.166]],["name/12",[3,18.996]],["parent/12",[6,3.166]],["name/13",[7,32.152]],["parent/13",[]],["name/14",[1,18.996]],["parent/14",[7,2.98]],["name/15",[2,19.496]],["parent/15",[7,2.98]],["name/16",[3,18.996]],["parent/16",[7,2.98]],["name/17",[5,34.159]],["parent/17",[7,2.98]],["name/18",[8,34.159]],["parent/18",[]],["name/19",[1,18.996]],["parent/19",[8,3.166]],["name/20",[3,18.996]],["parent/20",[8,3.166]],["name/21",[9,34.159]],["parent/21",[]],["name/22",[1,18.996]],["parent/22",[9,3.166]],["name/23",[2,19.496]],["parent/23",[9,3.166]],["name/24",[3,18.996]],["parent/24",[9,3.166]],["name/25",[10,34.159]],["parent/25",[]],["name/26",[1,18.996]],["parent/26",[10,3.166]],["name/27",[2,19.496]],["parent/27",[10,3.166]],["name/28",[3,18.996]],["parent/28",[10,3.166]],["name/29",[11,34.159]],["parent/29",[]],["name/30",[1,18.996]],["parent/30",[11,3.166]],["name/31",[2,19.496]],["parent/31",[11,3.166]],["name/32",[3,18.996]],["parent/32",[11,3.166]],["name/33",[12,34.159]],["parent/33",[]],["name/34",[1,18.996]],["parent/34",[12,3.166]],["name/35",[2,19.496]],["parent/35",[12,3.166]],["name/36",[3,18.996]],["parent/36",[12,3.166]],["name/37",[13,32.152]],["parent/37",[]],["name/38",[1,18.996]],["parent/38",[13,2.98]],["name/39",[3,18.996]],["parent/39",[13,2.98]],["name/40",[5,34.159]],["parent/40",[13,2.98]],["name/41",[14,34.159]],["parent/41",[]],["name/42",[1,18.996]],["parent/42",[14,3.166]],["name/43",[2,19.496]],["parent/43",[14,3.166]],["name/44",[3,18.996]],["parent/44",[14,3.166]],["name/45",[15,34.159]],["parent/45",[]],["name/46",[1,18.996]],["parent/46",[15,3.166]],["name/47",[3,18.996]],["parent/47",[15,3.166]],["name/48",[16,34.159]],["parent/48",[]],["name/49",[1,18.996]],["parent/49",[16,3.166]],["name/50",[3,18.996]],["parent/50",[16,3.166]],["name/51",[17,34.159]],["parent/51",[]],["name/52",[1,18.996]],["parent/52",[17,3.166]],["name/53",[2,19.496]],["parent/53",[17,3.166]],["name/54",[3,18.996]],["parent/54",[17,3.166]],["name/55",[18,34.159]],["parent/55",[]],["name/56",[1,18.996]],["parent/56",[18,3.166]],["name/57",[2,19.496]],["parent/57",[18,3.166]],["name/58",[3,18.996]],["parent/58",[18,3.166]],["name/59",[19,34.159]],["parent/59",[]],["name/60",[1,18.996]],["parent/60",[19,3.166]],["name/61",[20,45.145]],["parent/61",[19,3.166]],["name/62",[3,18.996]],["parent/62",[19,3.166]],["name/63",[21,34.159]],["parent/63",[]],["name/64",[1,18.996]],["parent/64",[21,3.166]],["name/65",[2,19.496]],["parent/65",[21,3.166]],["name/66",[3,18.996]],["parent/66",[21,3.166]],["name/67",[22,34.159]],["parent/67",[]],["name/68",[1,18.996]],["parent/68",[22,3.166]],["name/69",[2,19.496]],["parent/69",[22,3.166]],["name/70",[3,18.996]],["parent/70",[22,3.166]],["name/71",[23,32.152]],["parent/71",[]],["name/72",[1,18.996]],["parent/72",[23,2.98]],["name/73",[2,19.496]],["parent/73",[23,2.98]],["name/74",[3,18.996]],["parent/74",[23,2.98]],["name/75",[5,34.159]],["parent/75",[23,2.98]],["name/76",[24,34.159]],["parent/76",[]],["name/77",[1,18.996]],["parent/77",[24,3.166]],["name/78",[2,19.496]],["parent/78",[24,3.166]],["name/79",[3,18.996]],["parent/79",[24,3.166]],["name/80",[25,25.686]],["parent/80",[]],["name/81",[26,45.145]],["parent/81",[25,2.381]],["name/82",[27,45.145]],["parent/82",[25,2.381]],["name/83",[28,45.145]],["parent/83",[25,2.381]],["name/84",[29,45.145]],["parent/84",[25,2.381]],["name/85",[30,45.145]],["parent/85",[25,2.381]],["name/86",[31,45.145]],["parent/86",[25,2.381]],["name/87",[32,45.145]],["parent/87",[25,2.381]],["name/88",[33,40.037]],["parent/88",[25,2.381]],["name/89",[34,45.145]],["parent/89",[25,2.381]],["name/90",[35,40.037]],["parent/90",[36,1.13]],["name/91",[35,40.037]],["parent/91",[36,1.13]],["name/92",[37,40.037]],["parent/92",[36,1.13]],["name/93",[37,40.037]],["parent/93",[36,1.13]],["name/94",[38,40.037]],["parent/94",[36,1.13]],["name/95",[38,40.037]],["parent/95",[36,1.13]],["name/96",[39,40.037]],["parent/96",[36,1.13]],["name/97",[39,40.037]],["parent/97",[36,1.13]],["name/98",[40,40.037]],["parent/98",[36,1.13]],["name/99",[40,40.037]],["parent/99",[36,1.13]],["name/100",[41,40.037]],["parent/100",[36,1.13]],["name/101",[41,40.037]],["parent/101",[36,1.13]],["name/102",[42,45.145]],["parent/102",[36,1.13]],["name/103",[43,45.145]],["parent/103",[36,1.13]],["name/104",[44,40.037]],["parent/104",[36,1.13]],["name/105",[44,40.037]],["parent/105",[36,1.13]],["name/106",[45,40.037]],["parent/106",[36,1.13]],["name/107",[45,40.037]],["parent/107",[36,1.13]],["name/108",[46,40.037]],["parent/108",[36,1.13]],["name/109",[46,40.037]],["parent/109",[36,1.13]],["name/110",[47,40.037]],["parent/110",[36,1.13]],["name/111",[47,40.037]],["parent/111",[36,1.13]],["name/112",[48,40.037]],["parent/112",[36,1.13]],["name/113",[48,40.037]],["parent/113",[36,1.13]],["name/114",[49,40.037]],["parent/114",[36,1.13]],["name/115",[49,40.037]],["parent/115",[36,1.13]],["name/116",[50,40.037]],["parent/116",[36,1.13]],["name/117",[50,40.037]],["parent/117",[36,1.13]],["name/118",[51,40.037]],["parent/118",[36,1.13]],["name/119",[51,40.037]],["parent/119",[36,1.13]],["name/120",[52,40.037]],["parent/120",[36,1.13]],["name/121",[52,40.037]],["parent/121",[36,1.13]],["name/122",[53,40.037]],["parent/122",[36,1.13]],["name/123",[53,40.037]],["parent/123",[36,1.13]],["name/124",[54,40.037]],["parent/124",[36,1.13]],["name/125",[54,40.037]],["parent/125",[36,1.13]],["name/126",[55,40.037]],["parent/126",[36,1.13]],["name/127",[55,40.037]],["parent/127",[36,1.13]],["name/128",[56,40.037]],["parent/128",[36,1.13]],["name/129",[56,40.037]],["parent/129",[36,1.13]],["name/130",[57,40.037]],["parent/130",[]],["name/131",[2,19.496]],["parent/131",[8,3.166]],["name/132",[2,19.496]],["parent/132",[13,2.98]],["name/133",[2,19.496]],["parent/133",[15,3.166]],["name/134",[2,19.496]],["parent/134",[16,3.166]],["name/135",[33,40.037]],["parent/135",[57,3.711]]],"invertedIndex":[["__type",{"_index":34,"name":{"89":{}},"parent":{}}],["arrappend",{"_index":35,"name":{"90":{},"91":{}},"parent":{}}],["arrindex",{"_index":37,"name":{"92":{},"93":{}},"parent":{}}],["arrinsert",{"_index":38,"name":{"94":{},"95":{}},"parent":{}}],["arrlen",{"_index":39,"name":{"96":{},"97":{}},"parent":{}}],["arrpop",{"_index":40,"name":{"98":{},"99":{}},"parent":{}}],["arrtrim",{"_index":41,"name":{"100":{},"101":{}},"parent":{}}],["commands",{"_index":25,"name":{"80":{}},"parent":{"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{}}}],["commands.__type",{"_index":36,"name":{},"parent":{"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{},"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{}}}],["commands/arrappend",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{}}}],["commands/arrindex",{"_index":4,"name":{"4":{}},"parent":{"5":{},"6":{},"7":{},"8":{}}}],["commands/arrinsert",{"_index":6,"name":{"9":{}},"parent":{"10":{},"11":{},"12":{}}}],["commands/arrlen",{"_index":7,"name":{"13":{}},"parent":{"14":{},"15":{},"16":{},"17":{}}}],["commands/arrpop",{"_index":8,"name":{"18":{}},"parent":{"19":{},"20":{},"131":{}}}],["commands/arrtrim",{"_index":9,"name":{"21":{}},"parent":{"22":{},"23":{},"24":{}}}],["commands/debug_memory",{"_index":10,"name":{"25":{}},"parent":{"26":{},"27":{},"28":{}}}],["commands/del",{"_index":11,"name":{"29":{}},"parent":{"30":{},"31":{},"32":{}}}],["commands/forget",{"_index":12,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["commands/get",{"_index":13,"name":{"37":{}},"parent":{"38":{},"39":{},"40":{},"132":{}}}],["commands/mget",{"_index":14,"name":{"41":{}},"parent":{"42":{},"43":{},"44":{}}}],["commands/numincrby",{"_index":15,"name":{"45":{}},"parent":{"46":{},"47":{},"133":{}}}],["commands/nummultby",{"_index":16,"name":{"48":{}},"parent":{"49":{},"50":{},"134":{}}}],["commands/objkeys",{"_index":17,"name":{"51":{}},"parent":{"52":{},"53":{},"54":{}}}],["commands/objlen",{"_index":18,"name":{"55":{}},"parent":{"56":{},"57":{},"58":{}}}],["commands/resp",{"_index":19,"name":{"59":{}},"parent":{"60":{},"61":{},"62":{}}}],["commands/set",{"_index":21,"name":{"63":{}},"parent":{"64":{},"65":{},"66":{}}}],["commands/strappend",{"_index":22,"name":{"67":{}},"parent":{"68":{},"69":{},"70":{}}}],["commands/strlen",{"_index":23,"name":{"71":{}},"parent":{"72":{},"73":{},"74":{},"75":{}}}],["commands/type",{"_index":24,"name":{"76":{}},"parent":{"77":{},"78":{},"79":{}}}],["debug_memory",{"_index":42,"name":{"102":{}},"parent":{}}],["debugmemory",{"_index":43,"name":{"103":{}},"parent":{}}],["default",{"_index":33,"name":{"88":{},"135":{}},"parent":{}}],["del",{"_index":44,"name":{"104":{},"105":{}},"parent":{}}],["first_key_index",{"_index":3,"name":{"3":{},"7":{},"12":{},"16":{},"20":{},"24":{},"28":{},"32":{},"36":{},"39":{},"44":{},"47":{},"50":{},"54":{},"58":{},"62":{},"66":{},"70":{},"74":{},"79":{}},"parent":{}}],["forget",{"_index":45,"name":{"106":{},"107":{}},"parent":{}}],["get",{"_index":46,"name":{"108":{},"109":{}},"parent":{}}],["index",{"_index":57,"name":{"130":{}},"parent":{"135":{}}}],["is_read_only",{"_index":5,"name":{"8":{},"17":{},"40":{},"75":{}},"parent":{}}],["mget",{"_index":47,"name":{"110":{},"111":{}},"parent":{}}],["numincrby",{"_index":48,"name":{"112":{},"113":{}},"parent":{}}],["nummultby",{"_index":49,"name":{"114":{},"115":{}},"parent":{}}],["objkeys",{"_index":50,"name":{"116":{},"117":{}},"parent":{}}],["objlen",{"_index":51,"name":{"118":{},"119":{}},"parent":{}}],["redisjson",{"_index":32,"name":{"87":{}},"parent":{}}],["resp",{"_index":52,"name":{"120":{},"121":{}},"parent":{}}],["set",{"_index":53,"name":{"122":{},"123":{}},"parent":{}}],["strappend",{"_index":54,"name":{"124":{},"125":{}},"parent":{}}],["strlen",{"_index":55,"name":{"126":{},"127":{}},"parent":{}}],["transformarguments",{"_index":1,"name":{"1":{},"5":{},"10":{},"14":{},"19":{},"22":{},"26":{},"30":{},"34":{},"38":{},"42":{},"46":{},"49":{},"52":{},"56":{},"60":{},"64":{},"68":{},"72":{},"77":{}},"parent":{}}],["transformnumbersreply",{"_index":31,"name":{"86":{}},"parent":{}}],["transformredisjsonargument",{"_index":26,"name":{"81":{}},"parent":{}}],["transformredisjsonarrayreply",{"_index":28,"name":{"83":{}},"parent":{}}],["transformredisjsonnullarraynullreply",{"_index":30,"name":{"85":{}},"parent":{}}],["transformredisjsonnullreply",{"_index":29,"name":{"84":{}},"parent":{}}],["transformredisjsonreply",{"_index":27,"name":{"82":{}},"parent":{}}],["transformreply",{"_index":2,"name":{"2":{},"6":{},"11":{},"15":{},"23":{},"27":{},"31":{},"35":{},"43":{},"53":{},"57":{},"65":{},"69":{},"73":{},"78":{},"131":{},"132":{},"133":{},"134":{}},"parent":{}}],["transfromreply",{"_index":20,"name":{"61":{}},"parent":{}}],["type",{"_index":56,"name":{"128":{},"129":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/documentation/json/assets/style.css b/documentation/json/assets/style.css new file mode 100644 index 0000000000..28f90b673c --- /dev/null +++ b/documentation/json/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/documentation/json/assets/widgets.png b/documentation/json/assets/widgets.png new file mode 100644 index 0000000000..c7380532ac Binary files /dev/null and b/documentation/json/assets/widgets.png differ diff --git a/documentation/json/assets/widgets@2x.png b/documentation/json/assets/widgets@2x.png new file mode 100644 index 0000000000..4bbbd57272 Binary files /dev/null and b/documentation/json/assets/widgets@2x.png differ diff --git a/documentation/json/index.html b/documentation/json/index.html new file mode 100644 index 0000000000..ced4841567 --- /dev/null +++ b/documentation/json/index.html @@ -0,0 +1,42 @@ +@node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

@node-redis/json

+ +

@node-redis/json

+
+

This package provides support for the RedisJSON module, which adds JSON as a native data type to Redis. It extends the Node Redis client to include functions for each of the RedisJSON commands.

+

To use these extra commands, your Redis server must have the RedisJSON module installed.

+ + +

Usage

+
+

For a complete example, see managing-json.js in the Node Redis examples folder.

+ + +

Storing JSON Documents in Redis

+
+

The JSON.SET command stores a JSON value at a given JSON Path in a Redis key.

+

Here, we'll store a JSON document in the root of the Redis key "mydoc":

+
import { createClient } from 'redis';

...
await client.json.set('noderedis:jsondata', '$', {
name: 'Roberta McDonald',
pets: [
{
name: 'Rex',
species: 'dog',
age: 3,
isMammal: true
},
{
name: 'Goldie',
species: 'fish',
age: 2,
isMammal: false
}
]
}); +
+

For more information about RedisJSON's path syntax, check out the documentation.

+ + +

Retrieving JSON Documents from Redis

+
+

With RedisJSON, we can retrieve all or part(s) of a JSON document using the JSON.GET command and one or more JSON Paths. Let's get the name and age of one of the pets:

+
const results = await client.json.get('noderedis:jsondata', {
path: [
'.pets[1].name',
'.pets[1].age'
]
}); +
+

results will contain the following:

+
 { '.pets[1].name': 'Goldie', '.pets[1].age': 2 }
+
+ + +

Performing Atomic Updates on JSON Documents Stored in Redis

+
+

RedisJSON includes commands that can atomically update values in a JSON document, in place in Redis without having to first retrieve the entire document.

+

Using the JSON.NUMINCRBY command, we can update the age of one of the pets like this:

+
await client.json.numIncrBy('noderedis:jsondata', '.pets[1].age', 1);
+
+

And we can add a new object to the pets array with the JSON.ARRAPPEND command:

+
 await client.json.arrAppend('noderedis:jsondata', '.pets', {
name: 'Robin',
species: 'bird',
age: 1,
isMammal: false
}); +
+

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules.html b/documentation/json/modules.html new file mode 100644 index 0000000000..a67863332e --- /dev/null +++ b/documentation/json/modules.html @@ -0,0 +1 @@ +@node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

@node-redis/json

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands.html b/documentation/json/modules/commands.html new file mode 100644 index 0000000000..72e9c7ca4f --- /dev/null +++ b/documentation/json/modules/commands.html @@ -0,0 +1 @@ +commands | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

RedisJSON

RedisJSON: null | boolean | number | string | Date | RedisJSON[] | {} | {}

Properties

default

default: { ARRAPPEND: commands/ARRAPPEND; ARRINDEX: commands/ARRINDEX; ARRINSERT: commands/ARRINSERT; ARRLEN: commands/ARRLEN; ARRPOP: commands/ARRPOP; ARRTRIM: commands/ARRTRIM; DEBUG_MEMORY: commands/DEBUG_MEMORY; DEL: commands/DEL; FORGET: commands/FORGET; GET: commands/GET; MGET: commands/MGET; NUMINCRBY: commands/NUMINCRBY; NUMMULTBY: commands/NUMMULTBY; OBJKEYS: commands/OBJKEYS; OBJLEN: commands/OBJLEN; RESP: commands/RESP; SET: commands/SET; STRAPPEND: commands/STRAPPEND; STRLEN: commands/STRLEN; TYPE: commands/TYPE; arrAppend: commands/ARRAPPEND; arrIndex: commands/ARRINDEX; arrInsert: commands/ARRINSERT; arrLen: commands/ARRLEN; arrPop: commands/ARRPOP; arrTrim: commands/ARRTRIM; debugMemory: commands/DEBUG_MEMORY; del: commands/DEL; forget: commands/FORGET; get: commands/GET; mGet: commands/MGET; numIncrBy: commands/NUMINCRBY; numMultBy: commands/NUMMULTBY; objKeys: commands/OBJKEYS; objLen: commands/OBJLEN; resp: commands/RESP; set: commands/SET; strAppend: commands/STRAPPEND; strLen: commands/STRLEN; type: commands/TYPE }

Functions

transformNumbersReply

  • transformNumbersReply(reply: string): number | number[]

transformRedisJsonArgument

  • transformRedisJsonArgument(json: RedisJSON): string

transformRedisJsonArrayReply

  • transformRedisJsonArrayReply(jsons: string[]): RedisJSON[]

transformRedisJsonNullArrayNullReply

  • transformRedisJsonNullArrayNullReply(jsons: null | (null | string)[]): (RedisJSON | null)[] | null

transformRedisJsonNullReply

  • transformRedisJsonNullReply(json: null | string): RedisJSON | null

transformRedisJsonReply

  • transformRedisJsonReply(json: string): RedisJSON

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_ARRAPPEND.html b/documentation/json/modules/commands_ARRAPPEND.html new file mode 100644 index 0000000000..abd347b7a7 --- /dev/null +++ b/documentation/json/modules/commands_ARRAPPEND.html @@ -0,0 +1 @@ +commands/ARRAPPEND | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ARRAPPEND

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_ARRINDEX.html b/documentation/json/modules/commands_ARRINDEX.html new file mode 100644 index 0000000000..5d7810adce --- /dev/null +++ b/documentation/json/modules/commands_ARRINDEX.html @@ -0,0 +1 @@ +commands/ARRINDEX | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ARRINDEX

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, path: string, json: RedisJSON, start?: number, stop?: number): string[]

transformReply

  • transformReply(): number | number[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_ARRINSERT.html b/documentation/json/modules/commands_ARRINSERT.html new file mode 100644 index 0000000000..218afb7d83 --- /dev/null +++ b/documentation/json/modules/commands_ARRINSERT.html @@ -0,0 +1 @@ +commands/ARRINSERT | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ARRINSERT

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, path: string, index: number, ...jsons: RedisJSON[]): string[]

transformReply

  • transformReply(): number | number[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_ARRLEN.html b/documentation/json/modules/commands_ARRLEN.html new file mode 100644 index 0000000000..4dfe03c722 --- /dev/null +++ b/documentation/json/modules/commands_ARRLEN.html @@ -0,0 +1 @@ +commands/ARRLEN | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ARRLEN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string, path?: string): string[]

transformReply

  • transformReply(): number | number[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_ARRPOP.html b/documentation/json/modules/commands_ARRPOP.html new file mode 100644 index 0000000000..dd399db450 --- /dev/null +++ b/documentation/json/modules/commands_ARRPOP.html @@ -0,0 +1 @@ +commands/ARRPOP | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ARRPOP

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_ARRTRIM.html b/documentation/json/modules/commands_ARRTRIM.html new file mode 100644 index 0000000000..8911b38309 --- /dev/null +++ b/documentation/json/modules/commands_ARRTRIM.html @@ -0,0 +1 @@ +commands/ARRTRIM | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ARRTRIM

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, path: string, start: number, stop: number): string[]
  • Parameters

    • key: string
    • path: string
    • start: number
    • stop: number

    Returns string[]

transformReply

  • transformReply(): number | number[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_DEBUG_MEMORY.html b/documentation/json/modules/commands_DEBUG_MEMORY.html new file mode 100644 index 0000000000..8c09927f3e --- /dev/null +++ b/documentation/json/modules/commands_DEBUG_MEMORY.html @@ -0,0 +1 @@ +commands/DEBUG_MEMORY | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/DEBUG_MEMORY

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_DEL.html b/documentation/json/modules/commands_DEL.html new file mode 100644 index 0000000000..4d49e2853e --- /dev/null +++ b/documentation/json/modules/commands_DEL.html @@ -0,0 +1 @@ +commands/DEL | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/DEL

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_FORGET.html b/documentation/json/modules/commands_FORGET.html new file mode 100644 index 0000000000..ebcc980f75 --- /dev/null +++ b/documentation/json/modules/commands_FORGET.html @@ -0,0 +1 @@ +commands/FORGET | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/FORGET

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_GET.html b/documentation/json/modules/commands_GET.html new file mode 100644 index 0000000000..48dbd4ad9a --- /dev/null +++ b/documentation/json/modules/commands_GET.html @@ -0,0 +1 @@ +commands/GET | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/GET

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_MGET.html b/documentation/json/modules/commands_MGET.html new file mode 100644 index 0000000000..079f1d2c82 --- /dev/null +++ b/documentation/json/modules/commands_MGET.html @@ -0,0 +1 @@ +commands/MGET | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/MGET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(keys: string[], path: string): string[]

transformReply

  • transformReply(reply: (null | string)[]): (RedisJSON | null)[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_NUMINCRBY.html b/documentation/json/modules/commands_NUMINCRBY.html new file mode 100644 index 0000000000..e0d0c541cf --- /dev/null +++ b/documentation/json/modules/commands_NUMINCRBY.html @@ -0,0 +1 @@ +commands/NUMINCRBY | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/NUMINCRBY

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_NUMMULTBY.html b/documentation/json/modules/commands_NUMMULTBY.html new file mode 100644 index 0000000000..963b8a852e --- /dev/null +++ b/documentation/json/modules/commands_NUMMULTBY.html @@ -0,0 +1 @@ +commands/NUMMULTBY | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/NUMMULTBY

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_OBJKEYS.html b/documentation/json/modules/commands_OBJKEYS.html new file mode 100644 index 0000000000..23fdc98b1b --- /dev/null +++ b/documentation/json/modules/commands_OBJKEYS.html @@ -0,0 +1 @@ +commands/OBJKEYS | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/OBJKEYS

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, path?: string): string[]

transformReply

  • transformReply(): string[] | null | (string[] | null)[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_OBJLEN.html b/documentation/json/modules/commands_OBJLEN.html new file mode 100644 index 0000000000..b7817e665f --- /dev/null +++ b/documentation/json/modules/commands_OBJLEN.html @@ -0,0 +1 @@ +commands/OBJLEN | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/OBJLEN

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, path?: string): string[]

transformReply

  • transformReply(): number | null | (number | null)[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_RESP.html b/documentation/json/modules/commands_RESP.html new file mode 100644 index 0000000000..59afa0eca3 --- /dev/null +++ b/documentation/json/modules/commands_RESP.html @@ -0,0 +1 @@ +commands/RESP | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/RESP

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_SET.html b/documentation/json/modules/commands_SET.html new file mode 100644 index 0000000000..ad11dd29f0 --- /dev/null +++ b/documentation/json/modules/commands_SET.html @@ -0,0 +1 @@ +commands/SET | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SET

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, path: string, json: RedisJSON, options?: NX | XX): string[]

transformReply

  • transformReply(): "OK" | null

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_STRAPPEND.html b/documentation/json/modules/commands_STRAPPEND.html new file mode 100644 index 0000000000..fc6e2be507 --- /dev/null +++ b/documentation/json/modules/commands_STRAPPEND.html @@ -0,0 +1 @@ +commands/STRAPPEND | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/STRAPPEND

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(...__namedParameters: AppendArguments | AppendWithPathArguments): string[]
  • Parameters

    • Rest ...__namedParameters: AppendArguments | AppendWithPathArguments

    Returns string[]

transformReply

  • transformReply(): number | number[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_STRLEN.html b/documentation/json/modules/commands_STRLEN.html new file mode 100644 index 0000000000..54e8daab23 --- /dev/null +++ b/documentation/json/modules/commands_STRLEN.html @@ -0,0 +1 @@ +commands/STRLEN | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/STRLEN

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/commands_TYPE.html b/documentation/json/modules/commands_TYPE.html new file mode 100644 index 0000000000..d035e4c226 --- /dev/null +++ b/documentation/json/modules/commands_TYPE.html @@ -0,0 +1 @@ +commands/TYPE | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/TYPE

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, path?: string): string[]

transformReply

  • transformReply(): string | null | (string | null)[]

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/json/modules/index.html b/documentation/json/modules/index.html new file mode 100644 index 0000000000..51bb3b5d17 --- /dev/null +++ b/documentation/json/modules/index.html @@ -0,0 +1 @@ +index | @node-redis/json
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/assets/highlight.css b/documentation/search/assets/highlight.css new file mode 100644 index 0000000000..789e8dcfbb --- /dev/null +++ b/documentation/search/assets/highlight.css @@ -0,0 +1,85 @@ +:root { + --light-hl-0: #AF00DB; + --dark-hl-0: #C586C0; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #001080; + --dark-hl-2: #9CDCFE; + --light-hl-3: #795E26; + --dark-hl-3: #DCDCAA; + --light-hl-4: #A31515; + --dark-hl-4: #CE9178; + --light-hl-5: #0070C1; + --dark-hl-5: #4FC1FF; + --light-hl-6: #0000FF; + --dark-hl-6: #569CD6; + --light-hl-7: #000000; + --dark-hl-7: #C8C8C8; + --light-hl-8: #098658; + --dark-hl-8: #B5CEA8; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --code-background: var(--dark-code-background); +} } + +body.light { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --code-background: var(--light-code-background); +} + +body.dark { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +.hl-8 { color: var(--hl-8); } +pre, code { background: var(--code-background); } diff --git a/documentation/search/assets/icons.css b/documentation/search/assets/icons.css new file mode 100644 index 0000000000..776a3562d6 --- /dev/null +++ b/documentation/search/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/documentation/search/assets/icons.png b/documentation/search/assets/icons.png new file mode 100644 index 0000000000..3836d5fe46 Binary files /dev/null and b/documentation/search/assets/icons.png differ diff --git a/documentation/search/assets/icons@2x.png b/documentation/search/assets/icons@2x.png new file mode 100644 index 0000000000..5a209e2f6d Binary files /dev/null and b/documentation/search/assets/icons@2x.png differ diff --git a/documentation/search/assets/main.js b/documentation/search/assets/main.js new file mode 100644 index 0000000000..61009a4baa --- /dev/null +++ b/documentation/search/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/documentation/search/assets/search.js b/documentation/search/assets/search.js new file mode 100644 index 0000000000..868b0e0162 --- /dev/null +++ b/documentation/search/assets/search.js @@ -0,0 +1 @@ +window.searchData = {"kinds":{"2":"Module","8":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","256":"Interface","1024":"Property","65536":"Type literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":2,"name":"commands/AGGREGATE","url":"modules/commands_AGGREGATE.html","classes":"tsd-kind-module"},{"id":1,"kind":64,"name":"transformArguments","url":"modules/commands_AGGREGATE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/AGGREGATE"},{"id":2,"kind":64,"name":"transformReply","url":"modules/commands_AGGREGATE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/AGGREGATE"},{"id":3,"kind":8,"name":"AggregateSteps","url":"enums/commands_AGGREGATE.AggregateSteps.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands/AGGREGATE"},{"id":4,"kind":16,"name":"GROUPBY","url":"enums/commands_AGGREGATE.AggregateSteps.html#GROUPBY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateSteps"},{"id":5,"kind":16,"name":"SORTBY","url":"enums/commands_AGGREGATE.AggregateSteps.html#SORTBY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateSteps"},{"id":6,"kind":16,"name":"APPLY","url":"enums/commands_AGGREGATE.AggregateSteps.html#APPLY","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateSteps"},{"id":7,"kind":16,"name":"LIMIT","url":"enums/commands_AGGREGATE.AggregateSteps.html#LIMIT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateSteps"},{"id":8,"kind":16,"name":"FILTER","url":"enums/commands_AGGREGATE.AggregateSteps.html#FILTER","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateSteps"},{"id":9,"kind":8,"name":"AggregateGroupByReducers","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands/AGGREGATE"},{"id":10,"kind":16,"name":"COUNT","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#COUNT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":11,"kind":16,"name":"COUNT_DISTINCT","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#COUNT_DISTINCT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":12,"kind":16,"name":"COUNT_DISTINCTISH","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#COUNT_DISTINCTISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":13,"kind":16,"name":"SUM","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#SUM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":14,"kind":16,"name":"MIN","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#MIN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":15,"kind":16,"name":"MAX","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#MAX","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":16,"kind":16,"name":"AVG","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#AVG","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":17,"kind":16,"name":"STDDEV","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#STDDEV","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":18,"kind":16,"name":"QUANTILE","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#QUANTILE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":19,"kind":16,"name":"TOLIST","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#TOLIST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":20,"kind":16,"name":"TO_LIST","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#TO_LIST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":21,"kind":16,"name":"FIRST_VALUE","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#FIRST_VALUE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":22,"kind":16,"name":"RANDOM_SAMPLE","url":"enums/commands_AGGREGATE.AggregateGroupByReducers.html#RANDOM_SAMPLE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/AGGREGATE.AggregateGroupByReducers"},{"id":23,"kind":2,"name":"commands/ALIASADD","url":"modules/commands_ALIASADD.html","classes":"tsd-kind-module"},{"id":24,"kind":64,"name":"transformArguments","url":"modules/commands_ALIASADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ALIASADD"},{"id":25,"kind":64,"name":"transformReply","url":"modules/commands_ALIASADD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ALIASADD"},{"id":26,"kind":2,"name":"commands/ALIASDEL","url":"modules/commands_ALIASDEL.html","classes":"tsd-kind-module"},{"id":27,"kind":64,"name":"transformArguments","url":"modules/commands_ALIASDEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ALIASDEL"},{"id":28,"kind":64,"name":"transformReply","url":"modules/commands_ALIASDEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ALIASDEL"},{"id":29,"kind":2,"name":"commands/ALIASUPDATE","url":"modules/commands_ALIASUPDATE.html","classes":"tsd-kind-module"},{"id":30,"kind":64,"name":"transformArguments","url":"modules/commands_ALIASUPDATE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ALIASUPDATE"},{"id":31,"kind":64,"name":"transformReply","url":"modules/commands_ALIASUPDATE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ALIASUPDATE"},{"id":32,"kind":2,"name":"commands/CONFIG_GET","url":"modules/commands_CONFIG_GET.html","classes":"tsd-kind-module"},{"id":33,"kind":64,"name":"transformArguments","url":"modules/commands_CONFIG_GET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CONFIG_GET"},{"id":34,"kind":64,"name":"transformReply","url":"modules/commands_CONFIG_GET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CONFIG_GET"},{"id":35,"kind":2,"name":"commands/CONFIG_SET","url":"modules/commands_CONFIG_SET.html","classes":"tsd-kind-module"},{"id":36,"kind":64,"name":"transformArguments","url":"modules/commands_CONFIG_SET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CONFIG_SET"},{"id":37,"kind":64,"name":"transformReply","url":"modules/commands_CONFIG_SET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CONFIG_SET"},{"id":38,"kind":2,"name":"commands/CREATE","url":"modules/commands_CREATE.html","classes":"tsd-kind-module"},{"id":39,"kind":64,"name":"transformArguments","url":"modules/commands_CREATE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CREATE"},{"id":40,"kind":64,"name":"transformReply","url":"modules/commands_CREATE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CREATE"},{"id":41,"kind":8,"name":"SchemaFieldTypes","url":"enums/commands_CREATE.SchemaFieldTypes.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands/CREATE"},{"id":42,"kind":16,"name":"TEXT","url":"enums/commands_CREATE.SchemaFieldTypes.html#TEXT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/CREATE.SchemaFieldTypes"},{"id":43,"kind":16,"name":"NUMERIC","url":"enums/commands_CREATE.SchemaFieldTypes.html#NUMERIC","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/CREATE.SchemaFieldTypes"},{"id":44,"kind":16,"name":"GEO","url":"enums/commands_CREATE.SchemaFieldTypes.html#GEO","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/CREATE.SchemaFieldTypes"},{"id":45,"kind":16,"name":"TAG","url":"enums/commands_CREATE.SchemaFieldTypes.html#TAG","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/CREATE.SchemaFieldTypes"},{"id":46,"kind":8,"name":"SchemaTextFieldPhonetics","url":"enums/commands_CREATE.SchemaTextFieldPhonetics.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands/CREATE"},{"id":47,"kind":16,"name":"DM_EN","url":"enums/commands_CREATE.SchemaTextFieldPhonetics.html#DM_EN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/CREATE.SchemaTextFieldPhonetics"},{"id":48,"kind":16,"name":"DM_FR","url":"enums/commands_CREATE.SchemaTextFieldPhonetics.html#DM_FR","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/CREATE.SchemaTextFieldPhonetics"},{"id":49,"kind":16,"name":"FM_PT","url":"enums/commands_CREATE.SchemaTextFieldPhonetics.html#FM_PT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/CREATE.SchemaTextFieldPhonetics"},{"id":50,"kind":16,"name":"DM_ES","url":"enums/commands_CREATE.SchemaTextFieldPhonetics.html#DM_ES","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands/CREATE.SchemaTextFieldPhonetics"},{"id":51,"kind":2,"name":"commands/DICTADD","url":"modules/commands_DICTADD.html","classes":"tsd-kind-module"},{"id":52,"kind":64,"name":"transformArguments","url":"modules/commands_DICTADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DICTADD"},{"id":53,"kind":64,"name":"transformReply","url":"modules/commands_DICTADD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DICTADD"},{"id":54,"kind":2,"name":"commands/DICTDEL","url":"modules/commands_DICTDEL.html","classes":"tsd-kind-module"},{"id":55,"kind":64,"name":"transformArguments","url":"modules/commands_DICTDEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DICTDEL"},{"id":56,"kind":64,"name":"transformReply","url":"modules/commands_DICTDEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DICTDEL"},{"id":57,"kind":2,"name":"commands/DICTDUMP","url":"modules/commands_DICTDUMP.html","classes":"tsd-kind-module"},{"id":58,"kind":64,"name":"transformArguments","url":"modules/commands_DICTDUMP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DICTDUMP"},{"id":59,"kind":64,"name":"transformReply","url":"modules/commands_DICTDUMP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DICTDUMP"},{"id":60,"kind":2,"name":"commands/DROPINDEX","url":"modules/commands_DROPINDEX.html","classes":"tsd-kind-module"},{"id":61,"kind":64,"name":"transformArguments","url":"modules/commands_DROPINDEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DROPINDEX"},{"id":62,"kind":64,"name":"transformReply","url":"modules/commands_DROPINDEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DROPINDEX"},{"id":63,"kind":2,"name":"commands/EXPLAIN","url":"modules/commands_EXPLAIN.html","classes":"tsd-kind-module"},{"id":64,"kind":64,"name":"transformArguments","url":"modules/commands_EXPLAIN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/EXPLAIN"},{"id":65,"kind":64,"name":"transformReply","url":"modules/commands_EXPLAIN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/EXPLAIN"},{"id":66,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_EXPLAIN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/EXPLAIN"},{"id":67,"kind":2,"name":"commands/EXPLAINCLI","url":"modules/commands_EXPLAINCLI.html","classes":"tsd-kind-module"},{"id":68,"kind":64,"name":"transformArguments","url":"modules/commands_EXPLAINCLI.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/EXPLAINCLI"},{"id":69,"kind":64,"name":"transformReply","url":"modules/commands_EXPLAINCLI.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/EXPLAINCLI"},{"id":70,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_EXPLAINCLI.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/EXPLAINCLI"},{"id":71,"kind":2,"name":"commands/INFO","url":"modules/commands_INFO.html","classes":"tsd-kind-module"},{"id":72,"kind":64,"name":"transformArguments","url":"modules/commands_INFO.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/INFO"},{"id":73,"kind":64,"name":"transformReply","url":"modules/commands_INFO.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/INFO"},{"id":74,"kind":2,"name":"commands/PROFILE","url":"modules/commands_PROFILE.html","classes":"tsd-kind-module"},{"id":75,"kind":64,"name":"transformArguments","url":"modules/commands_PROFILE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/PROFILE"},{"id":76,"kind":64,"name":"transformReply","url":"modules/commands_PROFILE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/PROFILE"},{"id":77,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_PROFILE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/PROFILE"},{"id":78,"kind":2,"name":"commands/SEARCH","url":"modules/commands_SEARCH.html","classes":"tsd-kind-module"},{"id":79,"kind":64,"name":"transformArguments","url":"modules/commands_SEARCH.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SEARCH"},{"id":80,"kind":64,"name":"transformReply","url":"modules/commands_SEARCH.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SEARCH"},{"id":81,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_SEARCH.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/SEARCH"},{"id":82,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_SEARCH.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/SEARCH"},{"id":83,"kind":2,"name":"commands/SPELLCHECK","url":"modules/commands_SPELLCHECK.html","classes":"tsd-kind-module"},{"id":84,"kind":64,"name":"transformArguments","url":"modules/commands_SPELLCHECK.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SPELLCHECK"},{"id":85,"kind":64,"name":"transformReply","url":"modules/commands_SPELLCHECK.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SPELLCHECK"},{"id":86,"kind":2,"name":"commands/SUGADD","url":"modules/commands_SUGADD.html","classes":"tsd-kind-module"},{"id":87,"kind":64,"name":"transformArguments","url":"modules/commands_SUGADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGADD"},{"id":88,"kind":64,"name":"transformReply","url":"modules/commands_SUGADD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGADD"},{"id":89,"kind":2,"name":"commands/SUGDEL","url":"modules/commands_SUGDEL.html","classes":"tsd-kind-module"},{"id":90,"kind":64,"name":"transformArguments","url":"modules/commands_SUGDEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGDEL"},{"id":91,"kind":2,"name":"commands/SUGGET","url":"modules/commands_SUGGET.html","classes":"tsd-kind-module"},{"id":92,"kind":64,"name":"transformArguments","url":"modules/commands_SUGGET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGGET"},{"id":93,"kind":64,"name":"transformReply","url":"modules/commands_SUGGET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGGET"},{"id":94,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_SUGGET.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/SUGGET"},{"id":95,"kind":256,"name":"SugGetOptions","url":"interfaces/commands_SUGGET.SugGetOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands/SUGGET"},{"id":96,"kind":1024,"name":"FUZZY","url":"interfaces/commands_SUGGET.SugGetOptions.html#FUZZY","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/SUGGET.SugGetOptions"},{"id":97,"kind":1024,"name":"MAX","url":"interfaces/commands_SUGGET.SugGetOptions.html#MAX","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/SUGGET.SugGetOptions"},{"id":98,"kind":2,"name":"commands/SUGGET_WITHPAYLOADS","url":"modules/commands_SUGGET_WITHPAYLOADS.html","classes":"tsd-kind-module"},{"id":99,"kind":64,"name":"transformArguments","url":"modules/commands_SUGGET_WITHPAYLOADS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGGET_WITHPAYLOADS"},{"id":100,"kind":64,"name":"transformReply","url":"modules/commands_SUGGET_WITHPAYLOADS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGGET_WITHPAYLOADS"},{"id":101,"kind":256,"name":"SuggestionWithPayload","url":"interfaces/commands_SUGGET_WITHPAYLOADS.SuggestionWithPayload.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands/SUGGET_WITHPAYLOADS"},{"id":102,"kind":1024,"name":"suggestion","url":"interfaces/commands_SUGGET_WITHPAYLOADS.SuggestionWithPayload.html#suggestion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/SUGGET_WITHPAYLOADS.SuggestionWithPayload"},{"id":103,"kind":1024,"name":"payload","url":"interfaces/commands_SUGGET_WITHPAYLOADS.SuggestionWithPayload.html#payload","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/SUGGET_WITHPAYLOADS.SuggestionWithPayload"},{"id":104,"kind":2,"name":"commands/SUGGET_WITHSCORES","url":"modules/commands_SUGGET_WITHSCORES.html","classes":"tsd-kind-module"},{"id":105,"kind":64,"name":"transformArguments","url":"modules/commands_SUGGET_WITHSCORES.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGGET_WITHSCORES"},{"id":106,"kind":64,"name":"transformReply","url":"modules/commands_SUGGET_WITHSCORES.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGGET_WITHSCORES"},{"id":107,"kind":256,"name":"SuggestionWithScores","url":"interfaces/commands_SUGGET_WITHSCORES.SuggestionWithScores.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands/SUGGET_WITHSCORES"},{"id":108,"kind":1024,"name":"suggestion","url":"interfaces/commands_SUGGET_WITHSCORES.SuggestionWithScores.html#suggestion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/SUGGET_WITHSCORES.SuggestionWithScores"},{"id":109,"kind":1024,"name":"score","url":"interfaces/commands_SUGGET_WITHSCORES.SuggestionWithScores.html#score","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/SUGGET_WITHSCORES.SuggestionWithScores"},{"id":110,"kind":2,"name":"commands/SUGGET_WITHSCORES_WITHPAYLOADS","url":"modules/commands_SUGGET_WITHSCORES_WITHPAYLOADS.html","classes":"tsd-kind-module"},{"id":111,"kind":64,"name":"transformArguments","url":"modules/commands_SUGGET_WITHSCORES_WITHPAYLOADS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGGET_WITHSCORES_WITHPAYLOADS"},{"id":112,"kind":64,"name":"transformReply","url":"modules/commands_SUGGET_WITHSCORES_WITHPAYLOADS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGGET_WITHSCORES_WITHPAYLOADS"},{"id":113,"kind":2,"name":"commands/SUGLEN","url":"modules/commands_SUGLEN.html","classes":"tsd-kind-module"},{"id":114,"kind":64,"name":"transformArguments","url":"modules/commands_SUGLEN.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGLEN"},{"id":115,"kind":64,"name":"transformReply","url":"modules/commands_SUGLEN.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGLEN"},{"id":116,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_SUGLEN.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/SUGLEN"},{"id":117,"kind":2,"name":"commands/SYNDUMP","url":"modules/commands_SYNDUMP.html","classes":"tsd-kind-module"},{"id":118,"kind":64,"name":"transformArguments","url":"modules/commands_SYNDUMP.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SYNDUMP"},{"id":119,"kind":64,"name":"transformReply","url":"modules/commands_SYNDUMP.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SYNDUMP"},{"id":120,"kind":2,"name":"commands/SYNUPDATE","url":"modules/commands_SYNUPDATE.html","classes":"tsd-kind-module"},{"id":121,"kind":64,"name":"transformArguments","url":"modules/commands_SYNUPDATE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SYNUPDATE"},{"id":122,"kind":64,"name":"transformReply","url":"modules/commands_SYNUPDATE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SYNUPDATE"},{"id":123,"kind":2,"name":"commands/TAGVALS","url":"modules/commands_TAGVALS.html","classes":"tsd-kind-module"},{"id":124,"kind":64,"name":"transformArguments","url":"modules/commands_TAGVALS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/TAGVALS"},{"id":125,"kind":64,"name":"transformReply","url":"modules/commands_TAGVALS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/TAGVALS"},{"id":126,"kind":2,"name":"commands/_LIST","url":"modules/commands__LIST.html","classes":"tsd-kind-module"},{"id":127,"kind":64,"name":"transformArguments","url":"modules/commands__LIST.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/_LIST"},{"id":128,"kind":64,"name":"transformReply","url":"modules/commands__LIST.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/_LIST"},{"id":129,"kind":2,"name":"commands","url":"modules/commands.html","classes":"tsd-kind-module"},{"id":130,"kind":64,"name":"pushSortByProperty","url":"modules/commands.html#pushSortByProperty","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":131,"kind":64,"name":"pushSortByArguments","url":"modules/commands.html#pushSortByArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":132,"kind":64,"name":"pushArgumentsWithLength","url":"modules/commands.html#pushArgumentsWithLength","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":133,"kind":8,"name":"RedisSearchLanguages","url":"enums/commands.RedisSearchLanguages.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands"},{"id":134,"kind":16,"name":"ARABIC","url":"enums/commands.RedisSearchLanguages.html#ARABIC","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":135,"kind":16,"name":"BASQUE","url":"enums/commands.RedisSearchLanguages.html#BASQUE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":136,"kind":16,"name":"CATALANA","url":"enums/commands.RedisSearchLanguages.html#CATALANA","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":137,"kind":16,"name":"DANISH","url":"enums/commands.RedisSearchLanguages.html#DANISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":138,"kind":16,"name":"DUTCH","url":"enums/commands.RedisSearchLanguages.html#DUTCH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":139,"kind":16,"name":"ENGLISH","url":"enums/commands.RedisSearchLanguages.html#ENGLISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":140,"kind":16,"name":"FINNISH","url":"enums/commands.RedisSearchLanguages.html#FINNISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":141,"kind":16,"name":"FRENCH","url":"enums/commands.RedisSearchLanguages.html#FRENCH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":142,"kind":16,"name":"GERMAN","url":"enums/commands.RedisSearchLanguages.html#GERMAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":143,"kind":16,"name":"GREEK","url":"enums/commands.RedisSearchLanguages.html#GREEK","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":144,"kind":16,"name":"HUNGARIAN","url":"enums/commands.RedisSearchLanguages.html#HUNGARIAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":145,"kind":16,"name":"INDONESAIN","url":"enums/commands.RedisSearchLanguages.html#INDONESAIN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":146,"kind":16,"name":"IRISH","url":"enums/commands.RedisSearchLanguages.html#IRISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":147,"kind":16,"name":"ITALIAN","url":"enums/commands.RedisSearchLanguages.html#ITALIAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":148,"kind":16,"name":"LITHUANIAN","url":"enums/commands.RedisSearchLanguages.html#LITHUANIAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":149,"kind":16,"name":"NEPALI","url":"enums/commands.RedisSearchLanguages.html#NEPALI","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":150,"kind":16,"name":"NORWEIGAN","url":"enums/commands.RedisSearchLanguages.html#NORWEIGAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":151,"kind":16,"name":"PORTUGUESE","url":"enums/commands.RedisSearchLanguages.html#PORTUGUESE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":152,"kind":16,"name":"ROMANIAN","url":"enums/commands.RedisSearchLanguages.html#ROMANIAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":153,"kind":16,"name":"RUSSIAN","url":"enums/commands.RedisSearchLanguages.html#RUSSIAN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":154,"kind":16,"name":"SPANISH","url":"enums/commands.RedisSearchLanguages.html#SPANISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":155,"kind":16,"name":"SWEDISH","url":"enums/commands.RedisSearchLanguages.html#SWEDISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":156,"kind":16,"name":"TAMIL","url":"enums/commands.RedisSearchLanguages.html#TAMIL","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":157,"kind":16,"name":"TURKISH","url":"enums/commands.RedisSearchLanguages.html#TURKISH","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":158,"kind":16,"name":"CHINESE","url":"enums/commands.RedisSearchLanguages.html#CHINESE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.RedisSearchLanguages"},{"id":159,"kind":4194304,"name":"PropertyName","url":"modules/commands.html#PropertyName","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":160,"kind":4194304,"name":"SortByProperty","url":"modules/commands.html#SortByProperty","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":161,"kind":1024,"name":"default","url":"modules/commands.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"commands"},{"id":162,"kind":65536,"name":"__type","url":"modules/commands.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"commands"},{"id":163,"kind":1024,"name":"_LIST","url":"modules/commands.html#__type._LIST","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":164,"kind":1024,"name":"_list","url":"modules/commands.html#__type._list","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":165,"kind":1024,"name":"AGGREGATE","url":"modules/commands.html#__type.AGGREGATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":166,"kind":1024,"name":"aggregate","url":"modules/commands.html#__type.aggregate","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":167,"kind":1024,"name":"ALIASADD","url":"modules/commands.html#__type.ALIASADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":168,"kind":1024,"name":"aliasAdd","url":"modules/commands.html#__type.aliasAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":169,"kind":1024,"name":"ALIASDEL","url":"modules/commands.html#__type.ALIASDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":170,"kind":1024,"name":"aliasDel","url":"modules/commands.html#__type.aliasDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":171,"kind":1024,"name":"ALIASUPDATE","url":"modules/commands.html#__type.ALIASUPDATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":172,"kind":1024,"name":"aliasUpdate","url":"modules/commands.html#__type.aliasUpdate","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":173,"kind":1024,"name":"CONFIG_GET","url":"modules/commands.html#__type.CONFIG_GET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":174,"kind":1024,"name":"configGet","url":"modules/commands.html#__type.configGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":175,"kind":1024,"name":"CONFIG_SET","url":"modules/commands.html#__type.CONFIG_SET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":176,"kind":1024,"name":"configSet","url":"modules/commands.html#__type.configSet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":177,"kind":1024,"name":"CREATE","url":"modules/commands.html#__type.CREATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":178,"kind":1024,"name":"create","url":"modules/commands.html#__type.create","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":179,"kind":1024,"name":"DICTADD","url":"modules/commands.html#__type.DICTADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":180,"kind":1024,"name":"dictAdd","url":"modules/commands.html#__type.dictAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":181,"kind":1024,"name":"DICTDEL","url":"modules/commands.html#__type.DICTDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":182,"kind":1024,"name":"dictDel","url":"modules/commands.html#__type.dictDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":183,"kind":1024,"name":"DICTDUMP","url":"modules/commands.html#__type.DICTDUMP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":184,"kind":1024,"name":"dictDump","url":"modules/commands.html#__type.dictDump","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":185,"kind":1024,"name":"DROPINDEX","url":"modules/commands.html#__type.DROPINDEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":186,"kind":1024,"name":"dropIndex","url":"modules/commands.html#__type.dropIndex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":187,"kind":1024,"name":"EXPLAIN","url":"modules/commands.html#__type.EXPLAIN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":188,"kind":1024,"name":"explain","url":"modules/commands.html#__type.explain","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":189,"kind":1024,"name":"EXPLAINCLI","url":"modules/commands.html#__type.EXPLAINCLI","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":190,"kind":1024,"name":"explainCli","url":"modules/commands.html#__type.explainCli","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":191,"kind":1024,"name":"INFO","url":"modules/commands.html#__type.INFO","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":192,"kind":1024,"name":"info","url":"modules/commands.html#__type.info","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":193,"kind":1024,"name":"SEARCH","url":"modules/commands.html#__type.SEARCH","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":194,"kind":1024,"name":"search","url":"modules/commands.html#__type.search","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":195,"kind":1024,"name":"SPELLCHECK","url":"modules/commands.html#__type.SPELLCHECK","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":196,"kind":1024,"name":"spellCheck","url":"modules/commands.html#__type.spellCheck","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":197,"kind":1024,"name":"SUGADD","url":"modules/commands.html#__type.SUGADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":198,"kind":1024,"name":"sugAdd","url":"modules/commands.html#__type.sugAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":199,"kind":1024,"name":"SUGDEL","url":"modules/commands.html#__type.SUGDEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":200,"kind":1024,"name":"sugDel","url":"modules/commands.html#__type.sugDel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":201,"kind":1024,"name":"SUGGET_WITHPAYLOADS","url":"modules/commands.html#__type.SUGGET_WITHPAYLOADS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":202,"kind":1024,"name":"sugGetWithPayloads","url":"modules/commands.html#__type.sugGetWithPayloads","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":203,"kind":1024,"name":"SUGGET_WITHSCORES_WITHPAYLOADS","url":"modules/commands.html#__type.SUGGET_WITHSCORES_WITHPAYLOADS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":204,"kind":1024,"name":"sugGetWithScoresWithPayloads","url":"modules/commands.html#__type.sugGetWithScoresWithPayloads","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":205,"kind":1024,"name":"SUGGET_WITHSCORES","url":"modules/commands.html#__type.SUGGET_WITHSCORES","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":206,"kind":1024,"name":"sugGetWithScores","url":"modules/commands.html#__type.sugGetWithScores","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":207,"kind":1024,"name":"SUGGET","url":"modules/commands.html#__type.SUGGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":208,"kind":1024,"name":"sugGet","url":"modules/commands.html#__type.sugGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":209,"kind":1024,"name":"SUGLEN","url":"modules/commands.html#__type.SUGLEN","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":210,"kind":1024,"name":"sugLen","url":"modules/commands.html#__type.sugLen","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":211,"kind":1024,"name":"SYNDUMP","url":"modules/commands.html#__type.SYNDUMP","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":212,"kind":1024,"name":"synDump","url":"modules/commands.html#__type.synDump","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":213,"kind":1024,"name":"SYNUPDATE","url":"modules/commands.html#__type.SYNUPDATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":214,"kind":1024,"name":"synUpdate","url":"modules/commands.html#__type.synUpdate","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":215,"kind":1024,"name":"TAGVALS","url":"modules/commands.html#__type.TAGVALS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":216,"kind":1024,"name":"tagVals","url":"modules/commands.html#__type.tagVals","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":217,"kind":2,"name":"index","url":"modules/index.html","classes":"tsd-kind-module"},{"id":218,"kind":64,"name":"transformReply","url":"modules/commands_SUGDEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/SUGDEL"},{"id":219,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/commands_SUGGET_WITHPAYLOADS.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/SUGGET_WITHPAYLOADS"},{"id":220,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/commands_SUGGET_WITHSCORES.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/SUGGET_WITHSCORES"},{"id":221,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/commands_SUGGET_WITHSCORES_WITHPAYLOADS.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/SUGGET_WITHSCORES_WITHPAYLOADS"},{"id":222,"kind":16777216,"name":"SchemaFieldTypes","url":"modules/index.html#SchemaFieldTypes","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":223,"kind":16777216,"name":"SchemaTextFieldPhonetics","url":"modules/index.html#SchemaTextFieldPhonetics","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":224,"kind":16777216,"name":"AggregateSteps","url":"modules/index.html#AggregateSteps","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":225,"kind":16777216,"name":"AggregateGroupByReducers","url":"modules/index.html#AggregateGroupByReducers","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"},{"id":226,"kind":16777216,"name":"default","url":"modules/index.html#default","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,37.246]],["parent/0",[]],["name/1",[1,20.794]],["parent/1",[0,3.506]],["name/2",[2,20.794]],["parent/2",[0,3.506]],["name/3",[3,45.131]],["parent/3",[0,3.506]],["name/4",[4,50.239]],["parent/4",[5,3.506]],["name/5",[6,50.239]],["parent/5",[5,3.506]],["name/6",[7,50.239]],["parent/6",[5,3.506]],["name/7",[8,50.239]],["parent/7",[5,3.506]],["name/8",[9,50.239]],["parent/8",[5,3.506]],["name/9",[10,45.131]],["parent/9",[0,3.506]],["name/10",[11,50.239]],["parent/10",[12,2.661]],["name/11",[13,50.239]],["parent/11",[12,2.661]],["name/12",[14,50.239]],["parent/12",[12,2.661]],["name/13",[15,50.239]],["parent/13",[12,2.661]],["name/14",[16,50.239]],["parent/14",[12,2.661]],["name/15",[17,45.131]],["parent/15",[12,2.661]],["name/16",[18,50.239]],["parent/16",[12,2.661]],["name/17",[19,50.239]],["parent/17",[12,2.661]],["name/18",[20,50.239]],["parent/18",[12,2.661]],["name/19",[21,50.239]],["parent/19",[12,2.661]],["name/20",[22,50.239]],["parent/20",[12,2.661]],["name/21",[23,50.239]],["parent/21",[12,2.661]],["name/22",[24,50.239]],["parent/22",[12,2.661]],["name/23",[25,41.766]],["parent/23",[]],["name/24",[1,20.794]],["parent/24",[25,3.932]],["name/25",[2,20.794]],["parent/25",[25,3.932]],["name/26",[26,41.766]],["parent/26",[]],["name/27",[1,20.794]],["parent/27",[26,3.932]],["name/28",[2,20.794]],["parent/28",[26,3.932]],["name/29",[27,41.766]],["parent/29",[]],["name/30",[1,20.794]],["parent/30",[27,3.932]],["name/31",[2,20.794]],["parent/31",[27,3.932]],["name/32",[28,41.766]],["parent/32",[]],["name/33",[1,20.794]],["parent/33",[28,3.932]],["name/34",[2,20.794]],["parent/34",[28,3.932]],["name/35",[29,41.766]],["parent/35",[]],["name/36",[1,20.794]],["parent/36",[29,3.932]],["name/37",[2,20.794]],["parent/37",[29,3.932]],["name/38",[30,37.246]],["parent/38",[]],["name/39",[1,20.794]],["parent/39",[30,3.506]],["name/40",[2,20.794]],["parent/40",[30,3.506]],["name/41",[31,45.131]],["parent/41",[30,3.506]],["name/42",[32,50.239]],["parent/42",[33,3.695]],["name/43",[34,50.239]],["parent/43",[33,3.695]],["name/44",[35,50.239]],["parent/44",[33,3.695]],["name/45",[36,50.239]],["parent/45",[33,3.695]],["name/46",[37,45.131]],["parent/46",[30,3.506]],["name/47",[38,50.239]],["parent/47",[39,3.695]],["name/48",[40,50.239]],["parent/48",[39,3.695]],["name/49",[41,50.239]],["parent/49",[39,3.695]],["name/50",[42,50.239]],["parent/50",[39,3.695]],["name/51",[43,41.766]],["parent/51",[]],["name/52",[1,20.794]],["parent/52",[43,3.932]],["name/53",[2,20.794]],["parent/53",[43,3.932]],["name/54",[44,41.766]],["parent/54",[]],["name/55",[1,20.794]],["parent/55",[44,3.932]],["name/56",[2,20.794]],["parent/56",[44,3.932]],["name/57",[45,41.766]],["parent/57",[]],["name/58",[1,20.794]],["parent/58",[45,3.932]],["name/59",[2,20.794]],["parent/59",[45,3.932]],["name/60",[46,41.766]],["parent/60",[]],["name/61",[1,20.794]],["parent/61",[46,3.932]],["name/62",[2,20.794]],["parent/62",[46,3.932]],["name/63",[47,39.253]],["parent/63",[]],["name/64",[1,20.794]],["parent/64",[47,3.695]],["name/65",[2,20.794]],["parent/65",[47,3.695]],["name/66",[48,31.781]],["parent/66",[47,3.695]],["name/67",[49,39.253]],["parent/67",[]],["name/68",[1,20.794]],["parent/68",[49,3.695]],["name/69",[2,20.794]],["parent/69",[49,3.695]],["name/70",[48,31.781]],["parent/70",[49,3.695]],["name/71",[50,41.766]],["parent/71",[]],["name/72",[1,20.794]],["parent/72",[50,3.932]],["name/73",[2,20.794]],["parent/73",[50,3.932]],["name/74",[51,39.253]],["parent/74",[]],["name/75",[1,20.794]],["parent/75",[51,3.695]],["name/76",[2,20.794]],["parent/76",[51,3.695]],["name/77",[48,31.781]],["parent/77",[51,3.695]],["name/78",[52,37.246]],["parent/78",[]],["name/79",[1,20.794]],["parent/79",[52,3.506]],["name/80",[2,20.794]],["parent/80",[52,3.506]],["name/81",[53,50.239]],["parent/81",[52,3.506]],["name/82",[48,31.781]],["parent/82",[52,3.506]],["name/83",[54,41.766]],["parent/83",[]],["name/84",[1,20.794]],["parent/84",[54,3.932]],["name/85",[2,20.794]],["parent/85",[54,3.932]],["name/86",[55,41.766]],["parent/86",[]],["name/87",[1,20.794]],["parent/87",[55,3.932]],["name/88",[2,20.794]],["parent/88",[55,3.932]],["name/89",[56,41.766]],["parent/89",[]],["name/90",[1,20.794]],["parent/90",[56,3.932]],["name/91",[57,37.246]],["parent/91",[]],["name/92",[1,20.794]],["parent/92",[57,3.506]],["name/93",[2,20.794]],["parent/93",[57,3.506]],["name/94",[48,31.781]],["parent/94",[57,3.506]],["name/95",[58,50.239]],["parent/95",[57,3.506]],["name/96",[59,50.239]],["parent/96",[60,4.248]],["name/97",[17,45.131]],["parent/97",[60,4.248]],["name/98",[61,37.246]],["parent/98",[]],["name/99",[1,20.794]],["parent/99",[61,3.506]],["name/100",[2,20.794]],["parent/100",[61,3.506]],["name/101",[62,50.239]],["parent/101",[61,3.506]],["name/102",[63,45.131]],["parent/102",[64,4.248]],["name/103",[65,50.239]],["parent/103",[64,4.248]],["name/104",[66,37.246]],["parent/104",[]],["name/105",[1,20.794]],["parent/105",[66,3.506]],["name/106",[2,20.794]],["parent/106",[66,3.506]],["name/107",[67,50.239]],["parent/107",[66,3.506]],["name/108",[63,45.131]],["parent/108",[68,4.248]],["name/109",[69,50.239]],["parent/109",[68,4.248]],["name/110",[70,39.253]],["parent/110",[]],["name/111",[1,20.794]],["parent/111",[70,3.695]],["name/112",[2,20.794]],["parent/112",[70,3.695]],["name/113",[71,39.253]],["parent/113",[]],["name/114",[1,20.794]],["parent/114",[71,3.695]],["name/115",[2,20.794]],["parent/115",[71,3.695]],["name/116",[48,31.781]],["parent/116",[71,3.695]],["name/117",[72,41.766]],["parent/117",[]],["name/118",[1,20.794]],["parent/118",[72,3.932]],["name/119",[2,20.794]],["parent/119",[72,3.932]],["name/120",[73,41.766]],["parent/120",[]],["name/121",[1,20.794]],["parent/121",[73,3.932]],["name/122",[2,20.794]],["parent/122",[73,3.932]],["name/123",[74,41.766]],["parent/123",[]],["name/124",[1,20.794]],["parent/124",[74,3.932]],["name/125",[2,20.794]],["parent/125",[74,3.932]],["name/126",[75,41.766]],["parent/126",[]],["name/127",[1,20.794]],["parent/127",[75,3.932]],["name/128",[2,20.794]],["parent/128",[75,3.932]],["name/129",[76,31.781]],["parent/129",[]],["name/130",[77,50.239]],["parent/130",[76,2.992]],["name/131",[78,50.239]],["parent/131",[76,2.992]],["name/132",[79,50.239]],["parent/132",[76,2.992]],["name/133",[80,50.239]],["parent/133",[76,2.992]],["name/134",[81,50.239]],["parent/134",[82,2.062]],["name/135",[83,50.239]],["parent/135",[82,2.062]],["name/136",[84,50.239]],["parent/136",[82,2.062]],["name/137",[85,50.239]],["parent/137",[82,2.062]],["name/138",[86,50.239]],["parent/138",[82,2.062]],["name/139",[87,50.239]],["parent/139",[82,2.062]],["name/140",[88,50.239]],["parent/140",[82,2.062]],["name/141",[89,50.239]],["parent/141",[82,2.062]],["name/142",[90,50.239]],["parent/142",[82,2.062]],["name/143",[91,50.239]],["parent/143",[82,2.062]],["name/144",[92,50.239]],["parent/144",[82,2.062]],["name/145",[93,50.239]],["parent/145",[82,2.062]],["name/146",[94,50.239]],["parent/146",[82,2.062]],["name/147",[95,50.239]],["parent/147",[82,2.062]],["name/148",[96,50.239]],["parent/148",[82,2.062]],["name/149",[97,50.239]],["parent/149",[82,2.062]],["name/150",[98,50.239]],["parent/150",[82,2.062]],["name/151",[99,50.239]],["parent/151",[82,2.062]],["name/152",[100,50.239]],["parent/152",[82,2.062]],["name/153",[101,50.239]],["parent/153",[82,2.062]],["name/154",[102,50.239]],["parent/154",[82,2.062]],["name/155",[103,50.239]],["parent/155",[82,2.062]],["name/156",[104,50.239]],["parent/156",[82,2.062]],["name/157",[105,50.239]],["parent/157",[82,2.062]],["name/158",[106,50.239]],["parent/158",[82,2.062]],["name/159",[107,50.239]],["parent/159",[76,2.992]],["name/160",[108,50.239]],["parent/160",[76,2.992]],["name/161",[109,45.131]],["parent/161",[76,2.992]],["name/162",[110,50.239]],["parent/162",[76,2.992]],["name/163",[111,45.131]],["parent/163",[112,1.347]],["name/164",[111,45.131]],["parent/164",[112,1.347]],["name/165",[113,45.131]],["parent/165",[112,1.347]],["name/166",[113,45.131]],["parent/166",[112,1.347]],["name/167",[114,45.131]],["parent/167",[112,1.347]],["name/168",[114,45.131]],["parent/168",[112,1.347]],["name/169",[115,45.131]],["parent/169",[112,1.347]],["name/170",[115,45.131]],["parent/170",[112,1.347]],["name/171",[116,45.131]],["parent/171",[112,1.347]],["name/172",[116,45.131]],["parent/172",[112,1.347]],["name/173",[117,50.239]],["parent/173",[112,1.347]],["name/174",[118,50.239]],["parent/174",[112,1.347]],["name/175",[119,50.239]],["parent/175",[112,1.347]],["name/176",[120,50.239]],["parent/176",[112,1.347]],["name/177",[121,45.131]],["parent/177",[112,1.347]],["name/178",[121,45.131]],["parent/178",[112,1.347]],["name/179",[122,45.131]],["parent/179",[112,1.347]],["name/180",[122,45.131]],["parent/180",[112,1.347]],["name/181",[123,45.131]],["parent/181",[112,1.347]],["name/182",[123,45.131]],["parent/182",[112,1.347]],["name/183",[124,45.131]],["parent/183",[112,1.347]],["name/184",[124,45.131]],["parent/184",[112,1.347]],["name/185",[125,45.131]],["parent/185",[112,1.347]],["name/186",[125,45.131]],["parent/186",[112,1.347]],["name/187",[126,45.131]],["parent/187",[112,1.347]],["name/188",[126,45.131]],["parent/188",[112,1.347]],["name/189",[127,45.131]],["parent/189",[112,1.347]],["name/190",[127,45.131]],["parent/190",[112,1.347]],["name/191",[128,45.131]],["parent/191",[112,1.347]],["name/192",[128,45.131]],["parent/192",[112,1.347]],["name/193",[129,45.131]],["parent/193",[112,1.347]],["name/194",[129,45.131]],["parent/194",[112,1.347]],["name/195",[130,45.131]],["parent/195",[112,1.347]],["name/196",[130,45.131]],["parent/196",[112,1.347]],["name/197",[131,45.131]],["parent/197",[112,1.347]],["name/198",[131,45.131]],["parent/198",[112,1.347]],["name/199",[132,45.131]],["parent/199",[112,1.347]],["name/200",[132,45.131]],["parent/200",[112,1.347]],["name/201",[133,50.239]],["parent/201",[112,1.347]],["name/202",[134,50.239]],["parent/202",[112,1.347]],["name/203",[135,50.239]],["parent/203",[112,1.347]],["name/204",[136,50.239]],["parent/204",[112,1.347]],["name/205",[137,50.239]],["parent/205",[112,1.347]],["name/206",[138,50.239]],["parent/206",[112,1.347]],["name/207",[139,45.131]],["parent/207",[112,1.347]],["name/208",[139,45.131]],["parent/208",[112,1.347]],["name/209",[140,45.131]],["parent/209",[112,1.347]],["name/210",[140,45.131]],["parent/210",[112,1.347]],["name/211",[141,45.131]],["parent/211",[112,1.347]],["name/212",[141,45.131]],["parent/212",[112,1.347]],["name/213",[142,45.131]],["parent/213",[112,1.347]],["name/214",[142,45.131]],["parent/214",[112,1.347]],["name/215",[143,45.131]],["parent/215",[112,1.347]],["name/216",[143,45.131]],["parent/216",[112,1.347]],["name/217",[144,35.575]],["parent/217",[]],["name/218",[2,20.794]],["parent/218",[56,3.932]],["name/219",[48,31.781]],["parent/219",[61,3.506]],["name/220",[48,31.781]],["parent/220",[66,3.506]],["name/221",[48,31.781]],["parent/221",[70,3.695]],["name/222",[31,45.131]],["parent/222",[144,3.349]],["name/223",[37,45.131]],["parent/223",[144,3.349]],["name/224",[3,45.131]],["parent/224",[144,3.349]],["name/225",[10,45.131]],["parent/225",[144,3.349]],["name/226",[109,45.131]],["parent/226",[144,3.349]]],"invertedIndex":[["__type",{"_index":110,"name":{"162":{}},"parent":{}}],["_list",{"_index":111,"name":{"163":{},"164":{}},"parent":{}}],["aggregate",{"_index":113,"name":{"165":{},"166":{}},"parent":{}}],["aggregategroupbyreducers",{"_index":10,"name":{"9":{},"225":{}},"parent":{}}],["aggregatesteps",{"_index":3,"name":{"3":{},"224":{}},"parent":{}}],["aliasadd",{"_index":114,"name":{"167":{},"168":{}},"parent":{}}],["aliasdel",{"_index":115,"name":{"169":{},"170":{}},"parent":{}}],["aliasupdate",{"_index":116,"name":{"171":{},"172":{}},"parent":{}}],["apply",{"_index":7,"name":{"6":{}},"parent":{}}],["arabic",{"_index":81,"name":{"134":{}},"parent":{}}],["avg",{"_index":18,"name":{"16":{}},"parent":{}}],["basque",{"_index":83,"name":{"135":{}},"parent":{}}],["catalana",{"_index":84,"name":{"136":{}},"parent":{}}],["chinese",{"_index":106,"name":{"158":{}},"parent":{}}],["commands",{"_index":76,"name":{"129":{}},"parent":{"130":{},"131":{},"132":{},"133":{},"159":{},"160":{},"161":{},"162":{}}}],["commands.__type",{"_index":112,"name":{},"parent":{"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{},"215":{},"216":{}}}],["commands.redissearchlanguages",{"_index":82,"name":{},"parent":{"134":{},"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{}}}],["commands/_list",{"_index":75,"name":{"126":{}},"parent":{"127":{},"128":{}}}],["commands/aggregate",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{},"9":{}}}],["commands/aggregate.aggregategroupbyreducers",{"_index":12,"name":{},"parent":{"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"20":{},"21":{},"22":{}}}],["commands/aggregate.aggregatesteps",{"_index":5,"name":{},"parent":{"4":{},"5":{},"6":{},"7":{},"8":{}}}],["commands/aliasadd",{"_index":25,"name":{"23":{}},"parent":{"24":{},"25":{}}}],["commands/aliasdel",{"_index":26,"name":{"26":{}},"parent":{"27":{},"28":{}}}],["commands/aliasupdate",{"_index":27,"name":{"29":{}},"parent":{"30":{},"31":{}}}],["commands/config_get",{"_index":28,"name":{"32":{}},"parent":{"33":{},"34":{}}}],["commands/config_set",{"_index":29,"name":{"35":{}},"parent":{"36":{},"37":{}}}],["commands/create",{"_index":30,"name":{"38":{}},"parent":{"39":{},"40":{},"41":{},"46":{}}}],["commands/create.schemafieldtypes",{"_index":33,"name":{},"parent":{"42":{},"43":{},"44":{},"45":{}}}],["commands/create.schematextfieldphonetics",{"_index":39,"name":{},"parent":{"47":{},"48":{},"49":{},"50":{}}}],["commands/dictadd",{"_index":43,"name":{"51":{}},"parent":{"52":{},"53":{}}}],["commands/dictdel",{"_index":44,"name":{"54":{}},"parent":{"55":{},"56":{}}}],["commands/dictdump",{"_index":45,"name":{"57":{}},"parent":{"58":{},"59":{}}}],["commands/dropindex",{"_index":46,"name":{"60":{}},"parent":{"61":{},"62":{}}}],["commands/explain",{"_index":47,"name":{"63":{}},"parent":{"64":{},"65":{},"66":{}}}],["commands/explaincli",{"_index":49,"name":{"67":{}},"parent":{"68":{},"69":{},"70":{}}}],["commands/info",{"_index":50,"name":{"71":{}},"parent":{"72":{},"73":{}}}],["commands/profile",{"_index":51,"name":{"74":{}},"parent":{"75":{},"76":{},"77":{}}}],["commands/search",{"_index":52,"name":{"78":{}},"parent":{"79":{},"80":{},"81":{},"82":{}}}],["commands/spellcheck",{"_index":54,"name":{"83":{}},"parent":{"84":{},"85":{}}}],["commands/sugadd",{"_index":55,"name":{"86":{}},"parent":{"87":{},"88":{}}}],["commands/sugdel",{"_index":56,"name":{"89":{}},"parent":{"90":{},"218":{}}}],["commands/sugget",{"_index":57,"name":{"91":{}},"parent":{"92":{},"93":{},"94":{},"95":{}}}],["commands/sugget.suggetoptions",{"_index":60,"name":{},"parent":{"96":{},"97":{}}}],["commands/sugget_withpayloads",{"_index":61,"name":{"98":{}},"parent":{"99":{},"100":{},"101":{},"219":{}}}],["commands/sugget_withpayloads.suggestionwithpayload",{"_index":64,"name":{},"parent":{"102":{},"103":{}}}],["commands/sugget_withscores",{"_index":66,"name":{"104":{}},"parent":{"105":{},"106":{},"107":{},"220":{}}}],["commands/sugget_withscores.suggestionwithscores",{"_index":68,"name":{},"parent":{"108":{},"109":{}}}],["commands/sugget_withscores_withpayloads",{"_index":70,"name":{"110":{}},"parent":{"111":{},"112":{},"221":{}}}],["commands/suglen",{"_index":71,"name":{"113":{}},"parent":{"114":{},"115":{},"116":{}}}],["commands/syndump",{"_index":72,"name":{"117":{}},"parent":{"118":{},"119":{}}}],["commands/synupdate",{"_index":73,"name":{"120":{}},"parent":{"121":{},"122":{}}}],["commands/tagvals",{"_index":74,"name":{"123":{}},"parent":{"124":{},"125":{}}}],["config_get",{"_index":117,"name":{"173":{}},"parent":{}}],["config_set",{"_index":119,"name":{"175":{}},"parent":{}}],["configget",{"_index":118,"name":{"174":{}},"parent":{}}],["configset",{"_index":120,"name":{"176":{}},"parent":{}}],["count",{"_index":11,"name":{"10":{}},"parent":{}}],["count_distinct",{"_index":13,"name":{"11":{}},"parent":{}}],["count_distinctish",{"_index":14,"name":{"12":{}},"parent":{}}],["create",{"_index":121,"name":{"177":{},"178":{}},"parent":{}}],["danish",{"_index":85,"name":{"137":{}},"parent":{}}],["default",{"_index":109,"name":{"161":{},"226":{}},"parent":{}}],["dictadd",{"_index":122,"name":{"179":{},"180":{}},"parent":{}}],["dictdel",{"_index":123,"name":{"181":{},"182":{}},"parent":{}}],["dictdump",{"_index":124,"name":{"183":{},"184":{}},"parent":{}}],["dm_en",{"_index":38,"name":{"47":{}},"parent":{}}],["dm_es",{"_index":42,"name":{"50":{}},"parent":{}}],["dm_fr",{"_index":40,"name":{"48":{}},"parent":{}}],["dropindex",{"_index":125,"name":{"185":{},"186":{}},"parent":{}}],["dutch",{"_index":86,"name":{"138":{}},"parent":{}}],["english",{"_index":87,"name":{"139":{}},"parent":{}}],["explain",{"_index":126,"name":{"187":{},"188":{}},"parent":{}}],["explaincli",{"_index":127,"name":{"189":{},"190":{}},"parent":{}}],["filter",{"_index":9,"name":{"8":{}},"parent":{}}],["finnish",{"_index":88,"name":{"140":{}},"parent":{}}],["first_key_index",{"_index":53,"name":{"81":{}},"parent":{}}],["first_value",{"_index":23,"name":{"21":{}},"parent":{}}],["fm_pt",{"_index":41,"name":{"49":{}},"parent":{}}],["french",{"_index":89,"name":{"141":{}},"parent":{}}],["fuzzy",{"_index":59,"name":{"96":{}},"parent":{}}],["geo",{"_index":35,"name":{"44":{}},"parent":{}}],["german",{"_index":90,"name":{"142":{}},"parent":{}}],["greek",{"_index":91,"name":{"143":{}},"parent":{}}],["groupby",{"_index":4,"name":{"4":{}},"parent":{}}],["hungarian",{"_index":92,"name":{"144":{}},"parent":{}}],["index",{"_index":144,"name":{"217":{}},"parent":{"222":{},"223":{},"224":{},"225":{},"226":{}}}],["indonesain",{"_index":93,"name":{"145":{}},"parent":{}}],["info",{"_index":128,"name":{"191":{},"192":{}},"parent":{}}],["irish",{"_index":94,"name":{"146":{}},"parent":{}}],["is_read_only",{"_index":48,"name":{"66":{},"70":{},"77":{},"82":{},"94":{},"116":{},"219":{},"220":{},"221":{}},"parent":{}}],["italian",{"_index":95,"name":{"147":{}},"parent":{}}],["limit",{"_index":8,"name":{"7":{}},"parent":{}}],["lithuanian",{"_index":96,"name":{"148":{}},"parent":{}}],["max",{"_index":17,"name":{"15":{},"97":{}},"parent":{}}],["min",{"_index":16,"name":{"14":{}},"parent":{}}],["nepali",{"_index":97,"name":{"149":{}},"parent":{}}],["norweigan",{"_index":98,"name":{"150":{}},"parent":{}}],["numeric",{"_index":34,"name":{"43":{}},"parent":{}}],["payload",{"_index":65,"name":{"103":{}},"parent":{}}],["portuguese",{"_index":99,"name":{"151":{}},"parent":{}}],["propertyname",{"_index":107,"name":{"159":{}},"parent":{}}],["pushargumentswithlength",{"_index":79,"name":{"132":{}},"parent":{}}],["pushsortbyarguments",{"_index":78,"name":{"131":{}},"parent":{}}],["pushsortbyproperty",{"_index":77,"name":{"130":{}},"parent":{}}],["quantile",{"_index":20,"name":{"18":{}},"parent":{}}],["random_sample",{"_index":24,"name":{"22":{}},"parent":{}}],["redissearchlanguages",{"_index":80,"name":{"133":{}},"parent":{}}],["romanian",{"_index":100,"name":{"152":{}},"parent":{}}],["russian",{"_index":101,"name":{"153":{}},"parent":{}}],["schemafieldtypes",{"_index":31,"name":{"41":{},"222":{}},"parent":{}}],["schematextfieldphonetics",{"_index":37,"name":{"46":{},"223":{}},"parent":{}}],["score",{"_index":69,"name":{"109":{}},"parent":{}}],["search",{"_index":129,"name":{"193":{},"194":{}},"parent":{}}],["sortby",{"_index":6,"name":{"5":{}},"parent":{}}],["sortbyproperty",{"_index":108,"name":{"160":{}},"parent":{}}],["spanish",{"_index":102,"name":{"154":{}},"parent":{}}],["spellcheck",{"_index":130,"name":{"195":{},"196":{}},"parent":{}}],["stddev",{"_index":19,"name":{"17":{}},"parent":{}}],["sugadd",{"_index":131,"name":{"197":{},"198":{}},"parent":{}}],["sugdel",{"_index":132,"name":{"199":{},"200":{}},"parent":{}}],["suggestion",{"_index":63,"name":{"102":{},"108":{}},"parent":{}}],["suggestionwithpayload",{"_index":62,"name":{"101":{}},"parent":{}}],["suggestionwithscores",{"_index":67,"name":{"107":{}},"parent":{}}],["sugget",{"_index":139,"name":{"207":{},"208":{}},"parent":{}}],["sugget_withpayloads",{"_index":133,"name":{"201":{}},"parent":{}}],["sugget_withscores",{"_index":137,"name":{"205":{}},"parent":{}}],["sugget_withscores_withpayloads",{"_index":135,"name":{"203":{}},"parent":{}}],["suggetoptions",{"_index":58,"name":{"95":{}},"parent":{}}],["suggetwithpayloads",{"_index":134,"name":{"202":{}},"parent":{}}],["suggetwithscores",{"_index":138,"name":{"206":{}},"parent":{}}],["suggetwithscoreswithpayloads",{"_index":136,"name":{"204":{}},"parent":{}}],["suglen",{"_index":140,"name":{"209":{},"210":{}},"parent":{}}],["sum",{"_index":15,"name":{"13":{}},"parent":{}}],["swedish",{"_index":103,"name":{"155":{}},"parent":{}}],["syndump",{"_index":141,"name":{"211":{},"212":{}},"parent":{}}],["synupdate",{"_index":142,"name":{"213":{},"214":{}},"parent":{}}],["tag",{"_index":36,"name":{"45":{}},"parent":{}}],["tagvals",{"_index":143,"name":{"215":{},"216":{}},"parent":{}}],["tamil",{"_index":104,"name":{"156":{}},"parent":{}}],["text",{"_index":32,"name":{"42":{}},"parent":{}}],["to_list",{"_index":22,"name":{"20":{}},"parent":{}}],["tolist",{"_index":21,"name":{"19":{}},"parent":{}}],["transformarguments",{"_index":1,"name":{"1":{},"24":{},"27":{},"30":{},"33":{},"36":{},"39":{},"52":{},"55":{},"58":{},"61":{},"64":{},"68":{},"72":{},"75":{},"79":{},"84":{},"87":{},"90":{},"92":{},"99":{},"105":{},"111":{},"114":{},"118":{},"121":{},"124":{},"127":{}},"parent":{}}],["transformreply",{"_index":2,"name":{"2":{},"25":{},"28":{},"31":{},"34":{},"37":{},"40":{},"53":{},"56":{},"59":{},"62":{},"65":{},"69":{},"73":{},"76":{},"80":{},"85":{},"88":{},"93":{},"100":{},"106":{},"112":{},"115":{},"119":{},"122":{},"125":{},"128":{},"218":{}},"parent":{}}],["turkish",{"_index":105,"name":{"157":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/documentation/search/assets/style.css b/documentation/search/assets/style.css new file mode 100644 index 0000000000..28f90b673c --- /dev/null +++ b/documentation/search/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/documentation/search/assets/widgets.png b/documentation/search/assets/widgets.png new file mode 100644 index 0000000000..c7380532ac Binary files /dev/null and b/documentation/search/assets/widgets.png differ diff --git a/documentation/search/assets/widgets@2x.png b/documentation/search/assets/widgets@2x.png new file mode 100644 index 0000000000..4bbbd57272 Binary files /dev/null and b/documentation/search/assets/widgets@2x.png differ diff --git a/documentation/search/enums/commands.RedisSearchLanguages.html b/documentation/search/enums/commands.RedisSearchLanguages.html new file mode 100644 index 0000000000..bafaad7348 --- /dev/null +++ b/documentation/search/enums/commands.RedisSearchLanguages.html @@ -0,0 +1 @@ +RedisSearchLanguages | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration RedisSearchLanguages

Index

Enumeration members

ARABIC

ARABIC = "Arabic"

BASQUE

BASQUE = "Basque"

CATALANA

CATALANA = "Catalan"

CHINESE

CHINESE = "Chinese"

DANISH

DANISH = "Danish"

DUTCH

DUTCH = "Dutch"

ENGLISH

ENGLISH = "English"

FINNISH

FINNISH = "Finnish"

FRENCH

FRENCH = "French"

GERMAN

GERMAN = "German"

GREEK

GREEK = "Greek"

HUNGARIAN

HUNGARIAN = "Hungarian"

INDONESAIN

INDONESAIN = "Indonesian"

IRISH

IRISH = "Irish"

ITALIAN

ITALIAN = "Italian"

LITHUANIAN

LITHUANIAN = "Lithuanian"

NEPALI

NEPALI = "Nepali"

NORWEIGAN

NORWEIGAN = "Norwegian"

PORTUGUESE

PORTUGUESE = "Portuguese"

ROMANIAN

ROMANIAN = "Romanian"

RUSSIAN

RUSSIAN = "Russian"

SPANISH

SPANISH = "Spanish"

SWEDISH

SWEDISH = "Swedish"

TAMIL

TAMIL = "Tamil"

TURKISH

TURKISH = "Turkish"

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/enums/commands_AGGREGATE.AggregateGroupByReducers.html b/documentation/search/enums/commands_AGGREGATE.AggregateGroupByReducers.html new file mode 100644 index 0000000000..b1eb7d65f3 --- /dev/null +++ b/documentation/search/enums/commands_AGGREGATE.AggregateGroupByReducers.html @@ -0,0 +1 @@ +AggregateGroupByReducers | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

AVG

AVG = "AVG"

COUNT

COUNT = "COUNT"

COUNT_DISTINCT

COUNT_DISTINCT = "COUNT_DISTINCT"

COUNT_DISTINCTISH

COUNT_DISTINCTISH = "COUNT_DISTINCTISH"

FIRST_VALUE

FIRST_VALUE = "FIRST_VALUE"

MAX

MAX = "MAX"

MIN

MIN = "MIN"

QUANTILE

QUANTILE = "QUANTILE"

RANDOM_SAMPLE

RANDOM_SAMPLE = "RANDOM_SAMPLE"

STDDEV

STDDEV = "STDDEV"

SUM

SUM = "SUM"

TOLIST

TOLIST = "TOLIST"

TO_LIST

TO_LIST = "TOLIST"

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/enums/commands_AGGREGATE.AggregateSteps.html b/documentation/search/enums/commands_AGGREGATE.AggregateSteps.html new file mode 100644 index 0000000000..929abd728c --- /dev/null +++ b/documentation/search/enums/commands_AGGREGATE.AggregateSteps.html @@ -0,0 +1 @@ +AggregateSteps | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/enums/commands_CREATE.SchemaFieldTypes.html b/documentation/search/enums/commands_CREATE.SchemaFieldTypes.html new file mode 100644 index 0000000000..421af3a6d9 --- /dev/null +++ b/documentation/search/enums/commands_CREATE.SchemaFieldTypes.html @@ -0,0 +1 @@ +SchemaFieldTypes | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/enums/commands_CREATE.SchemaTextFieldPhonetics.html b/documentation/search/enums/commands_CREATE.SchemaTextFieldPhonetics.html new file mode 100644 index 0000000000..6c5111043c --- /dev/null +++ b/documentation/search/enums/commands_CREATE.SchemaTextFieldPhonetics.html @@ -0,0 +1 @@ +SchemaTextFieldPhonetics | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/index.html b/documentation/search/index.html new file mode 100644 index 0000000000..6e04da9d47 --- /dev/null +++ b/documentation/search/index.html @@ -0,0 +1,60 @@ +@node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

@node-redis/search

+ +

@node-redis/search

+
+

This package provides support for the RediSearch module, which adds indexing and querying support for data stored in Redis Hashes or as JSON documents with the RedisJSON module. It extends the Node Redis client to include functions for each of the RediSearch commands.

+

To use these extra commands, your Redis server must have the RediSearch module installed. To index and query JSON documents, you'll also need to add the RedisJSON module.

+ + +

Usage

+
+

For complete examples, see search-hashes.js and search-json.js in the Node Redis examples folder.

+ + +

Indexing and Querying Data in Redis Hashes

+
+ + +

Creating an Index

+
+

Before we can perform any searches, we need to tell RediSearch how to index our data, and which Redis keys to find that data in. The FT.CREATE command creates a RediSearch index. Here's how to use it to create an index we'll call idx:animals where we want to index hashes containing name, species and age fields, and whose key names in Redis begin with the prefix noderedis:animals:

+
await client.ft.create('idx:animals', {
name: {
type: SchemaFieldTypes.TEXT,
sortable: true
},
species: SchemaFieldTypes.TAG,
age: SchemaFieldTypes.NUMERIC
}, {
ON: 'HASH',
PREFIX: 'noderedis:animals'
}
); +
+

See the FT.CREATE documentation for information about the different field types and additional options.

+ + +

Querying the Index

+
+

Once we've created an index, and added some data to Redis hashes whose keys begin with the prefix noderedis:animals, we can start writing some search queries. RediSearch supports a rich query syntax for full-text search, faceted search, aggregation and more. Check out the FT.SEARCH documentation and the query syntax reference for more information.

+

Let's write a query to find all the animals where the species field has the value dog:

+
const results = await client.ft.search('idx:animals', '@species:{dog}');
+
+

results looks like this:

+
{
total: 2,
documents: [
{
id: 'noderedis:animals:4',
value: {
name: 'Fido',
species: 'dog',
age: '7'
}
},
{
id: 'noderedis:animals:3',
value: {
name: 'Rover',
species: 'dog',
age: '9'
}
}
]
} +
+ + +

Indexing and Querying Data with RedisJSON

+
+

RediSearch can also index and query JSON documents stored in Redis using the RedisJSON module. The approach is similar to that for indexing and searching data in hashes, but we can now use JSON Path like syntax and the data no longer has to be flat name/value pairs - it can contain nested objects and arrays.

+ + +

Creating an Index

+
+

As before, we create an index with the FT.CREATE command, this time specifying we want to index JSON documents that look like this:

+
{
name: 'Alice',
age: 32,
coins: 100
} +
+

Each document represents a user in some system, and users have name, age and coins properties.

+

One way we might choose to index these documents is as follows:

+
await client.ft.create('idx:users', {
'$.name': {
type: SchemaFieldTypes.TEXT,
SORTABLE: 'UNF'
},
'$.age': {
type: SchemaFieldTypes.NUMERIC,
AS: 'age'
},
'$.coins': {
type: SchemaFieldTypes.NUMERIC,
AS: 'coins'
}
}, {
ON: 'JSON',
PREFIX: 'noderedis:users'
}); +
+

Note that we're using JSON Path to specify where the fields to index are in our JSON documents, and the AS clause to define a name/alias for each field. We'll use these when writing queries.

+ + +

Querying the Index

+
+

Now we have an index and some data stored as JSON documents in Redis (see the JSON package documentation for examples of how to store JSON), we can write some queries...

+

We'll use the RediSearch query language and FT.SEARCH command. Here's a query to find users under the age of 30:

+
await client.ft.search('idx:users', '@age:[0 30]');
+
+

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/interfaces/commands_SUGGET.SugGetOptions.html b/documentation/search/interfaces/commands_SUGGET.SugGetOptions.html new file mode 100644 index 0000000000..ccf737d2b7 --- /dev/null +++ b/documentation/search/interfaces/commands_SUGGET.SugGetOptions.html @@ -0,0 +1 @@ +SugGetOptions | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/interfaces/commands_SUGGET_WITHPAYLOADS.SuggestionWithPayload.html b/documentation/search/interfaces/commands_SUGGET_WITHPAYLOADS.SuggestionWithPayload.html new file mode 100644 index 0000000000..69060ddc2a --- /dev/null +++ b/documentation/search/interfaces/commands_SUGGET_WITHPAYLOADS.SuggestionWithPayload.html @@ -0,0 +1 @@ +SuggestionWithPayload | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/interfaces/commands_SUGGET_WITHSCORES.SuggestionWithScores.html b/documentation/search/interfaces/commands_SUGGET_WITHSCORES.SuggestionWithScores.html new file mode 100644 index 0000000000..2640884790 --- /dev/null +++ b/documentation/search/interfaces/commands_SUGGET_WITHSCORES.SuggestionWithScores.html @@ -0,0 +1 @@ +SuggestionWithScores | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules.html b/documentation/search/modules.html new file mode 100644 index 0000000000..265d361ff6 --- /dev/null +++ b/documentation/search/modules.html @@ -0,0 +1 @@ +@node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

@node-redis/search

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands.html b/documentation/search/modules/commands.html new file mode 100644 index 0000000000..1c057aee02 --- /dev/null +++ b/documentation/search/modules/commands.html @@ -0,0 +1 @@ +commands | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

PropertyName

PropertyName: `${"@" | "$."}${string}`

SortByProperty

SortByProperty: PropertyName | { BY: PropertyName; DIRECTION?: "ASC" | "DESC" }

Properties

default

default: { AGGREGATE: commands/AGGREGATE; ALIASADD: commands/ALIASADD; ALIASDEL: commands/ALIASDEL; ALIASUPDATE: commands/ALIASUPDATE; CONFIG_GET: commands/CONFIG_GET; CONFIG_SET: commands/CONFIG_SET; CREATE: commands/CREATE; DICTADD: commands/DICTADD; DICTDEL: commands/DICTDEL; DICTDUMP: commands/DICTDUMP; DROPINDEX: commands/DROPINDEX; EXPLAIN: commands/EXPLAIN; EXPLAINCLI: commands/EXPLAINCLI; INFO: commands/INFO; SEARCH: commands/SEARCH; SPELLCHECK: commands/SPELLCHECK; SUGADD: commands/SUGADD; SUGDEL: commands/SUGDEL; SUGGET: commands/SUGGET; SUGGET_WITHPAYLOADS: commands/SUGGET_WITHPAYLOADS; SUGGET_WITHSCORES: commands/SUGGET_WITHSCORES; SUGGET_WITHSCORES_WITHPAYLOADS: commands/SUGGET_WITHSCORES_WITHPAYLOADS; SUGLEN: commands/SUGLEN; SYNDUMP: commands/SYNDUMP; SYNUPDATE: commands/SYNUPDATE; TAGVALS: commands/TAGVALS; _LIST: commands/_LIST; _list: commands/_LIST; aggregate: commands/AGGREGATE; aliasAdd: commands/ALIASADD; aliasDel: commands/ALIASDEL; aliasUpdate: commands/ALIASUPDATE; configGet: commands/CONFIG_GET; configSet: commands/CONFIG_SET; create: commands/CREATE; dictAdd: commands/DICTADD; dictDel: commands/DICTDEL; dictDump: commands/DICTDUMP; dropIndex: commands/DROPINDEX; explain: commands/EXPLAIN; explainCli: commands/EXPLAINCLI; info: commands/INFO; search: commands/SEARCH; spellCheck: commands/SPELLCHECK; sugAdd: commands/SUGADD; sugDel: commands/SUGDEL; sugGet: commands/SUGGET; sugGetWithPayloads: commands/SUGGET_WITHPAYLOADS; sugGetWithScores: commands/SUGGET_WITHSCORES; sugGetWithScoresWithPayloads: commands/SUGGET_WITHSCORES_WITHPAYLOADS; sugLen: commands/SUGLEN; synDump: commands/SYNDUMP; synUpdate: commands/SYNUPDATE; tagVals: commands/TAGVALS }

Type declaration

Functions

pushArgumentsWithLength

  • pushArgumentsWithLength(args: RedisCommandArguments, fn: (args: RedisCommandArguments) => void): RedisCommandArguments
  • Parameters

    • args: RedisCommandArguments
    • fn: (args: RedisCommandArguments) => void
        • (args: RedisCommandArguments): void
        • Parameters

          • args: RedisCommandArguments

          Returns void

    Returns RedisCommandArguments

pushSortByArguments

pushSortByProperty

  • pushSortByProperty(args: RedisCommandArguments, sortBy: SortByProperty): void

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_AGGREGATE.html b/documentation/search/modules/commands_AGGREGATE.html new file mode 100644 index 0000000000..254f97e8ce --- /dev/null +++ b/documentation/search/modules/commands_AGGREGATE.html @@ -0,0 +1 @@ +commands/AGGREGATE | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/AGGREGATE

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_ALIASADD.html b/documentation/search/modules/commands_ALIASADD.html new file mode 100644 index 0000000000..ce7f5dfb1d --- /dev/null +++ b/documentation/search/modules/commands_ALIASADD.html @@ -0,0 +1 @@ +commands/ALIASADD | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ALIASADD

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_ALIASDEL.html b/documentation/search/modules/commands_ALIASDEL.html new file mode 100644 index 0000000000..fc8348b570 --- /dev/null +++ b/documentation/search/modules/commands_ALIASDEL.html @@ -0,0 +1 @@ +commands/ALIASDEL | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ALIASDEL

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_ALIASUPDATE.html b/documentation/search/modules/commands_ALIASUPDATE.html new file mode 100644 index 0000000000..3b419947f5 --- /dev/null +++ b/documentation/search/modules/commands_ALIASUPDATE.html @@ -0,0 +1 @@ +commands/ALIASUPDATE | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/ALIASUPDATE

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_CONFIG_GET.html b/documentation/search/modules/commands_CONFIG_GET.html new file mode 100644 index 0000000000..788473eb07 --- /dev/null +++ b/documentation/search/modules/commands_CONFIG_GET.html @@ -0,0 +1 @@ +commands/CONFIG_GET | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/CONFIG_GET

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_CONFIG_SET.html b/documentation/search/modules/commands_CONFIG_SET.html new file mode 100644 index 0000000000..dd80494948 --- /dev/null +++ b/documentation/search/modules/commands_CONFIG_SET.html @@ -0,0 +1 @@ +commands/CONFIG_SET | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/CONFIG_SET

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_CREATE.html b/documentation/search/modules/commands_CREATE.html new file mode 100644 index 0000000000..fd0e541278 --- /dev/null +++ b/documentation/search/modules/commands_CREATE.html @@ -0,0 +1 @@ +commands/CREATE | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/CREATE

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_DICTADD.html b/documentation/search/modules/commands_DICTADD.html new file mode 100644 index 0000000000..dc13370127 --- /dev/null +++ b/documentation/search/modules/commands_DICTADD.html @@ -0,0 +1 @@ +commands/DICTADD | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/DICTADD

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_DICTDEL.html b/documentation/search/modules/commands_DICTDEL.html new file mode 100644 index 0000000000..28410ec317 --- /dev/null +++ b/documentation/search/modules/commands_DICTDEL.html @@ -0,0 +1 @@ +commands/DICTDEL | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/DICTDEL

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_DICTDUMP.html b/documentation/search/modules/commands_DICTDUMP.html new file mode 100644 index 0000000000..0bf58696aa --- /dev/null +++ b/documentation/search/modules/commands_DICTDUMP.html @@ -0,0 +1 @@ +commands/DICTDUMP | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/DICTDUMP

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_DROPINDEX.html b/documentation/search/modules/commands_DROPINDEX.html new file mode 100644 index 0000000000..6a4a29e33b --- /dev/null +++ b/documentation/search/modules/commands_DROPINDEX.html @@ -0,0 +1 @@ +commands/DROPINDEX | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/DROPINDEX

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_EXPLAIN.html b/documentation/search/modules/commands_EXPLAIN.html new file mode 100644 index 0000000000..68d7e3f2f7 --- /dev/null +++ b/documentation/search/modules/commands_EXPLAIN.html @@ -0,0 +1 @@ +commands/EXPLAIN | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/EXPLAIN

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_EXPLAINCLI.html b/documentation/search/modules/commands_EXPLAINCLI.html new file mode 100644 index 0000000000..9b6b816bfc --- /dev/null +++ b/documentation/search/modules/commands_EXPLAINCLI.html @@ -0,0 +1 @@ +commands/EXPLAINCLI | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/EXPLAINCLI

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_INFO.html b/documentation/search/modules/commands_INFO.html new file mode 100644 index 0000000000..36dcd097ea --- /dev/null +++ b/documentation/search/modules/commands_INFO.html @@ -0,0 +1 @@ +commands/INFO | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_PROFILE.html b/documentation/search/modules/commands_PROFILE.html new file mode 100644 index 0000000000..4ad87c0f41 --- /dev/null +++ b/documentation/search/modules/commands_PROFILE.html @@ -0,0 +1 @@ +commands/PROFILE | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/PROFILE

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SEARCH.html b/documentation/search/modules/commands_SEARCH.html new file mode 100644 index 0000000000..2cbac90cb3 --- /dev/null +++ b/documentation/search/modules/commands_SEARCH.html @@ -0,0 +1 @@ +commands/SEARCH | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SEARCH

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SPELLCHECK.html b/documentation/search/modules/commands_SPELLCHECK.html new file mode 100644 index 0000000000..58962aca88 --- /dev/null +++ b/documentation/search/modules/commands_SPELLCHECK.html @@ -0,0 +1 @@ +commands/SPELLCHECK | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SPELLCHECK

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SUGADD.html b/documentation/search/modules/commands_SUGADD.html new file mode 100644 index 0000000000..9acd08cbad --- /dev/null +++ b/documentation/search/modules/commands_SUGADD.html @@ -0,0 +1 @@ +commands/SUGADD | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SUGADD

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SUGDEL.html b/documentation/search/modules/commands_SUGDEL.html new file mode 100644 index 0000000000..bb62a99e2a --- /dev/null +++ b/documentation/search/modules/commands_SUGDEL.html @@ -0,0 +1 @@ +commands/SUGDEL | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SUGDEL

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SUGGET.html b/documentation/search/modules/commands_SUGGET.html new file mode 100644 index 0000000000..8087e457ed --- /dev/null +++ b/documentation/search/modules/commands_SUGGET.html @@ -0,0 +1 @@ +commands/SUGGET | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SUGGET

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SUGGET_WITHPAYLOADS.html b/documentation/search/modules/commands_SUGGET_WITHPAYLOADS.html new file mode 100644 index 0000000000..0d5bbd92f9 --- /dev/null +++ b/documentation/search/modules/commands_SUGGET_WITHPAYLOADS.html @@ -0,0 +1 @@ +commands/SUGGET_WITHPAYLOADS | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SUGGET_WITHPAYLOADS

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SUGGET_WITHSCORES.html b/documentation/search/modules/commands_SUGGET_WITHSCORES.html new file mode 100644 index 0000000000..b491460f9a --- /dev/null +++ b/documentation/search/modules/commands_SUGGET_WITHSCORES.html @@ -0,0 +1 @@ +commands/SUGGET_WITHSCORES | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SUGGET_WITHSCORES

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SUGGET_WITHSCORES_WITHPAYLOADS.html b/documentation/search/modules/commands_SUGGET_WITHSCORES_WITHPAYLOADS.html new file mode 100644 index 0000000000..b4915ad16b --- /dev/null +++ b/documentation/search/modules/commands_SUGGET_WITHSCORES_WITHPAYLOADS.html @@ -0,0 +1 @@ +commands/SUGGET_WITHSCORES_WITHPAYLOADS | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SUGGET_WITHSCORES_WITHPAYLOADS

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SUGLEN.html b/documentation/search/modules/commands_SUGLEN.html new file mode 100644 index 0000000000..e7f38f6c47 --- /dev/null +++ b/documentation/search/modules/commands_SUGLEN.html @@ -0,0 +1 @@ +commands/SUGLEN | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SUGLEN

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SYNDUMP.html b/documentation/search/modules/commands_SYNDUMP.html new file mode 100644 index 0000000000..bc9a60872c --- /dev/null +++ b/documentation/search/modules/commands_SYNDUMP.html @@ -0,0 +1 @@ +commands/SYNDUMP | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SYNDUMP

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_SYNUPDATE.html b/documentation/search/modules/commands_SYNUPDATE.html new file mode 100644 index 0000000000..0724e5cea2 --- /dev/null +++ b/documentation/search/modules/commands_SYNUPDATE.html @@ -0,0 +1 @@ +commands/SYNUPDATE | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/SYNUPDATE

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands_TAGVALS.html b/documentation/search/modules/commands_TAGVALS.html new file mode 100644 index 0000000000..7df9eae56c --- /dev/null +++ b/documentation/search/modules/commands_TAGVALS.html @@ -0,0 +1 @@ +commands/TAGVALS | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/TAGVALS

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/commands__LIST.html b/documentation/search/modules/commands__LIST.html new file mode 100644 index 0000000000..b0a835d738 --- /dev/null +++ b/documentation/search/modules/commands__LIST.html @@ -0,0 +1 @@ +commands/_LIST | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/search/modules/index.html b/documentation/search/modules/index.html new file mode 100644 index 0000000000..78026682f4 --- /dev/null +++ b/documentation/search/modules/index.html @@ -0,0 +1 @@ +index | @node-redis/search
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/assets/highlight.css b/documentation/time-series/assets/highlight.css new file mode 100644 index 0000000000..a13094d48b --- /dev/null +++ b/documentation/time-series/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/documentation/time-series/assets/icons.css b/documentation/time-series/assets/icons.css new file mode 100644 index 0000000000..776a3562d6 --- /dev/null +++ b/documentation/time-series/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/documentation/time-series/assets/icons.png b/documentation/time-series/assets/icons.png new file mode 100644 index 0000000000..3836d5fe46 Binary files /dev/null and b/documentation/time-series/assets/icons.png differ diff --git a/documentation/time-series/assets/icons@2x.png b/documentation/time-series/assets/icons@2x.png new file mode 100644 index 0000000000..5a209e2f6d Binary files /dev/null and b/documentation/time-series/assets/icons@2x.png differ diff --git a/documentation/time-series/assets/main.js b/documentation/time-series/assets/main.js new file mode 100644 index 0000000000..61009a4baa --- /dev/null +++ b/documentation/time-series/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/documentation/time-series/assets/search.js b/documentation/time-series/assets/search.js new file mode 100644 index 0000000000..b7d75205cf --- /dev/null +++ b/documentation/time-series/assets/search.js @@ -0,0 +1 @@ +window.searchData = {"kinds":{"2":"Module","8":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","256":"Interface","1024":"Property","65536":"Type literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":2,"name":"commands/ADD","url":"modules/commands_ADD.html","classes":"tsd-kind-module"},{"id":1,"kind":64,"name":"transformArguments","url":"modules/commands_ADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ADD"},{"id":2,"kind":64,"name":"transformReply","url":"modules/commands_ADD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ADD"},{"id":3,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_ADD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ADD"},{"id":4,"kind":2,"name":"commands/ALTER","url":"modules/commands_ALTER.html","classes":"tsd-kind-module"},{"id":5,"kind":64,"name":"transformArguments","url":"modules/commands_ALTER.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ALTER"},{"id":6,"kind":64,"name":"transformReply","url":"modules/commands_ALTER.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/ALTER"},{"id":7,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_ALTER.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/ALTER"},{"id":8,"kind":2,"name":"commands/CREATE","url":"modules/commands_CREATE.html","classes":"tsd-kind-module"},{"id":9,"kind":64,"name":"transformArguments","url":"modules/commands_CREATE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CREATE"},{"id":10,"kind":64,"name":"transformReply","url":"modules/commands_CREATE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CREATE"},{"id":11,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_CREATE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/CREATE"},{"id":12,"kind":2,"name":"commands/CREATERULE","url":"modules/commands_CREATERULE.html","classes":"tsd-kind-module"},{"id":13,"kind":64,"name":"transformArguments","url":"modules/commands_CREATERULE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CREATERULE"},{"id":14,"kind":64,"name":"transfromReply","url":"modules/commands_CREATERULE.html#transfromReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/CREATERULE"},{"id":15,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_CREATERULE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/CREATERULE"},{"id":16,"kind":2,"name":"commands/DECRBY","url":"modules/commands_DECRBY.html","classes":"tsd-kind-module"},{"id":17,"kind":64,"name":"transformArguments","url":"modules/commands_DECRBY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DECRBY"},{"id":18,"kind":64,"name":"transformReply","url":"modules/commands_DECRBY.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DECRBY"},{"id":19,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_DECRBY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/DECRBY"},{"id":20,"kind":2,"name":"commands/DEL","url":"modules/commands_DEL.html","classes":"tsd-kind-module"},{"id":21,"kind":64,"name":"transformArguments","url":"modules/commands_DEL.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DEL"},{"id":22,"kind":64,"name":"transformReply","url":"modules/commands_DEL.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DEL"},{"id":23,"kind":32,"name":"FIRTS_KEY_INDEX","url":"modules/commands_DEL.html#FIRTS_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/DEL"},{"id":24,"kind":2,"name":"commands/DELETERULE","url":"modules/commands_DELETERULE.html","classes":"tsd-kind-module"},{"id":25,"kind":64,"name":"transformArguments","url":"modules/commands_DELETERULE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DELETERULE"},{"id":26,"kind":64,"name":"transfromReply","url":"modules/commands_DELETERULE.html#transfromReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/DELETERULE"},{"id":27,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_DELETERULE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/DELETERULE"},{"id":28,"kind":2,"name":"commands/GET","url":"modules/commands_GET.html","classes":"tsd-kind-module"},{"id":29,"kind":64,"name":"transformArguments","url":"modules/commands_GET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/GET"},{"id":30,"kind":64,"name":"transformReply","url":"modules/commands_GET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/GET"},{"id":31,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_GET.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/GET"},{"id":32,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_GET.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/GET"},{"id":33,"kind":2,"name":"commands/INCRBY","url":"modules/commands_INCRBY.html","classes":"tsd-kind-module"},{"id":34,"kind":64,"name":"transformArguments","url":"modules/commands_INCRBY.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/INCRBY"},{"id":35,"kind":64,"name":"transformReply","url":"modules/commands_INCRBY.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/INCRBY"},{"id":36,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_INCRBY.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/INCRBY"},{"id":37,"kind":2,"name":"commands/INFO","url":"modules/commands_INFO.html","classes":"tsd-kind-module"},{"id":38,"kind":64,"name":"transformArguments","url":"modules/commands_INFO.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/INFO"},{"id":39,"kind":64,"name":"transformReply","url":"modules/commands_INFO.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/INFO"},{"id":40,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_INFO.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/INFO"},{"id":41,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_INFO.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/INFO"},{"id":42,"kind":4194304,"name":"InfoRawReply","url":"modules/commands_INFO.html#InfoRawReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands/INFO"},{"id":43,"kind":256,"name":"InfoReply","url":"interfaces/commands_INFO.InfoReply.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands/INFO"},{"id":44,"kind":1024,"name":"totalSamples","url":"interfaces/commands_INFO.InfoReply.html#totalSamples","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":45,"kind":1024,"name":"memoryUsage","url":"interfaces/commands_INFO.InfoReply.html#memoryUsage","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":46,"kind":1024,"name":"firstTimestamp","url":"interfaces/commands_INFO.InfoReply.html#firstTimestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":47,"kind":1024,"name":"lastTimestamp","url":"interfaces/commands_INFO.InfoReply.html#lastTimestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":48,"kind":1024,"name":"retentionTime","url":"interfaces/commands_INFO.InfoReply.html#retentionTime","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":49,"kind":1024,"name":"chunkCount","url":"interfaces/commands_INFO.InfoReply.html#chunkCount","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":50,"kind":1024,"name":"chunkSize","url":"interfaces/commands_INFO.InfoReply.html#chunkSize","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":51,"kind":1024,"name":"chunkType","url":"interfaces/commands_INFO.InfoReply.html#chunkType","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":52,"kind":1024,"name":"duplicatePolicy","url":"interfaces/commands_INFO.InfoReply.html#duplicatePolicy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":53,"kind":1024,"name":"labels","url":"interfaces/commands_INFO.InfoReply.html#labels","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":54,"kind":1024,"name":"sourceKey","url":"interfaces/commands_INFO.InfoReply.html#sourceKey","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":55,"kind":1024,"name":"rules","url":"interfaces/commands_INFO.InfoReply.html#rules","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/INFO.InfoReply"},{"id":56,"kind":2,"name":"commands/INFO_DEBUG","url":"modules/commands_INFO_DEBUG.html","classes":"tsd-kind-module"},{"id":57,"kind":64,"name":"transformArguments","url":"modules/commands_INFO_DEBUG.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/INFO_DEBUG"},{"id":58,"kind":64,"name":"transformReply","url":"modules/commands_INFO_DEBUG.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/INFO_DEBUG"},{"id":59,"kind":2,"name":"commands/MADD","url":"modules/commands_MADD.html","classes":"tsd-kind-module"},{"id":60,"kind":64,"name":"transformArguments","url":"modules/commands_MADD.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MADD"},{"id":61,"kind":64,"name":"transformReply","url":"modules/commands_MADD.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MADD"},{"id":62,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_MADD.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/MADD"},{"id":63,"kind":2,"name":"commands/MGET","url":"modules/commands_MGET.html","classes":"tsd-kind-module"},{"id":64,"kind":64,"name":"transformArguments","url":"modules/commands_MGET.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MGET"},{"id":65,"kind":64,"name":"transformReply","url":"modules/commands_MGET.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MGET"},{"id":66,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_MGET.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/MGET"},{"id":67,"kind":4194304,"name":"MGetRawReply","url":"modules/commands_MGET.html#MGetRawReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands/MGET"},{"id":68,"kind":256,"name":"MGetReply","url":"interfaces/commands_MGET.MGetReply.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands/MGET"},{"id":69,"kind":1024,"name":"key","url":"interfaces/commands_MGET.MGetReply.html#key","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/MGET.MGetReply"},{"id":70,"kind":1024,"name":"sample","url":"interfaces/commands_MGET.MGetReply.html#sample","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/MGET.MGetReply"},{"id":71,"kind":2,"name":"commands/MGET_WITHLABELS","url":"modules/commands_MGET_WITHLABELS.html","classes":"tsd-kind-module"},{"id":72,"kind":64,"name":"transformArguments","url":"modules/commands_MGET_WITHLABELS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MGET_WITHLABELS"},{"id":73,"kind":64,"name":"transformReply","url":"modules/commands_MGET_WITHLABELS.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MGET_WITHLABELS"},{"id":74,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_MGET_WITHLABELS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/MGET_WITHLABELS"},{"id":75,"kind":256,"name":"MGetWithLabelsReply","url":"interfaces/commands_MGET_WITHLABELS.MGetWithLabelsReply.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands/MGET_WITHLABELS"},{"id":76,"kind":1024,"name":"labels","url":"interfaces/commands_MGET_WITHLABELS.MGetWithLabelsReply.html#labels","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands/MGET_WITHLABELS.MGetWithLabelsReply"},{"id":77,"kind":1024,"name":"key","url":"interfaces/commands_MGET_WITHLABELS.MGetWithLabelsReply.html#key","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands/MGET_WITHLABELS.MGetWithLabelsReply"},{"id":78,"kind":1024,"name":"sample","url":"interfaces/commands_MGET_WITHLABELS.MGetWithLabelsReply.html#sample","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands/MGET_WITHLABELS.MGetWithLabelsReply"},{"id":79,"kind":2,"name":"commands/MRANGE","url":"modules/commands_MRANGE.html","classes":"tsd-kind-module"},{"id":80,"kind":64,"name":"transformArguments","url":"modules/commands_MRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MRANGE"},{"id":81,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_MRANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/MRANGE"},{"id":82,"kind":2,"name":"commands/MRANGE_WITHLABELS","url":"modules/commands_MRANGE_WITHLABELS.html","classes":"tsd-kind-module"},{"id":83,"kind":64,"name":"transformArguments","url":"modules/commands_MRANGE_WITHLABELS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MRANGE_WITHLABELS"},{"id":84,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_MRANGE_WITHLABELS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/MRANGE_WITHLABELS"},{"id":85,"kind":2,"name":"commands/MREVRANGE","url":"modules/commands_MREVRANGE.html","classes":"tsd-kind-module"},{"id":86,"kind":64,"name":"transformArguments","url":"modules/commands_MREVRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MREVRANGE"},{"id":87,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_MREVRANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/MREVRANGE"},{"id":88,"kind":2,"name":"commands/MREVRANGE_WITHLABELS","url":"modules/commands_MREVRANGE_WITHLABELS.html","classes":"tsd-kind-module"},{"id":89,"kind":64,"name":"transformArguments","url":"modules/commands_MREVRANGE_WITHLABELS.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/MREVRANGE_WITHLABELS"},{"id":90,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_MREVRANGE_WITHLABELS.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/MREVRANGE_WITHLABELS"},{"id":91,"kind":2,"name":"commands/QUERYINDEX","url":"modules/commands_QUERYINDEX.html","classes":"tsd-kind-module"},{"id":92,"kind":64,"name":"transformArguments","url":"modules/commands_QUERYINDEX.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/QUERYINDEX"},{"id":93,"kind":64,"name":"transformReply","url":"modules/commands_QUERYINDEX.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/QUERYINDEX"},{"id":94,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_QUERYINDEX.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/QUERYINDEX"},{"id":95,"kind":2,"name":"commands/RANGE","url":"modules/commands_RANGE.html","classes":"tsd-kind-module"},{"id":96,"kind":64,"name":"transformArguments","url":"modules/commands_RANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/RANGE"},{"id":97,"kind":64,"name":"transformReply","url":"modules/commands_RANGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/RANGE"},{"id":98,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_RANGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/RANGE"},{"id":99,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_RANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/RANGE"},{"id":100,"kind":2,"name":"commands/REVRANGE","url":"modules/commands_REVRANGE.html","classes":"tsd-kind-module"},{"id":101,"kind":64,"name":"transformArguments","url":"modules/commands_REVRANGE.html#transformArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/REVRANGE"},{"id":102,"kind":64,"name":"transformReply","url":"modules/commands_REVRANGE.html#transformReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands/REVRANGE"},{"id":103,"kind":32,"name":"FIRST_KEY_INDEX","url":"modules/commands_REVRANGE.html#FIRST_KEY_INDEX","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/REVRANGE"},{"id":104,"kind":32,"name":"IS_READ_ONLY","url":"modules/commands_REVRANGE.html#IS_READ_ONLY","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"commands/REVRANGE"},{"id":105,"kind":2,"name":"commands","url":"modules/commands.html","classes":"tsd-kind-module"},{"id":106,"kind":64,"name":"transformTimestampArgument","url":"modules/commands.html#transformTimestampArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":107,"kind":64,"name":"pushRetentionArgument","url":"modules/commands.html#pushRetentionArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":108,"kind":64,"name":"pushEncodingArgument","url":"modules/commands.html#pushEncodingArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":109,"kind":64,"name":"pushChunkSizeArgument","url":"modules/commands.html#pushChunkSizeArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":110,"kind":64,"name":"transformLablesReply","url":"modules/commands.html#transformLablesReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":111,"kind":64,"name":"pushLabelsArgument","url":"modules/commands.html#pushLabelsArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":112,"kind":64,"name":"transformIncrDecrArguments","url":"modules/commands.html#transformIncrDecrArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":113,"kind":64,"name":"transformSampleReply","url":"modules/commands.html#transformSampleReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":114,"kind":64,"name":"pushRangeArguments","url":"modules/commands.html#pushRangeArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":115,"kind":64,"name":"pushMRangeGroupByArguments","url":"modules/commands.html#pushMRangeGroupByArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":116,"kind":64,"name":"pushFilterArgument","url":"modules/commands.html#pushFilterArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":117,"kind":64,"name":"pushMRangeArguments","url":"modules/commands.html#pushMRangeArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":118,"kind":64,"name":"pushWithLabelsArgument","url":"modules/commands.html#pushWithLabelsArgument","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":119,"kind":64,"name":"pushMRangeWithLabelsArguments","url":"modules/commands.html#pushMRangeWithLabelsArguments","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":120,"kind":64,"name":"transformRangeReply","url":"modules/commands.html#transformRangeReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":121,"kind":64,"name":"transformMRangeReply","url":"modules/commands.html#transformMRangeReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":122,"kind":64,"name":"transformMRangeWithLabelsReply","url":"modules/commands.html#transformMRangeWithLabelsReply","classes":"tsd-kind-function tsd-parent-kind-module","parent":"commands"},{"id":123,"kind":8,"name":"TimeSeriesAggregationType","url":"enums/commands.TimeSeriesAggregationType.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands"},{"id":124,"kind":16,"name":"AVARAGE","url":"enums/commands.TimeSeriesAggregationType.html#AVARAGE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":125,"kind":16,"name":"SUM","url":"enums/commands.TimeSeriesAggregationType.html#SUM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":126,"kind":16,"name":"MINIMUM","url":"enums/commands.TimeSeriesAggregationType.html#MINIMUM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":127,"kind":16,"name":"MAXIMUM","url":"enums/commands.TimeSeriesAggregationType.html#MAXIMUM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":128,"kind":16,"name":"RANGE","url":"enums/commands.TimeSeriesAggregationType.html#RANGE","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":129,"kind":16,"name":"COUNT","url":"enums/commands.TimeSeriesAggregationType.html#COUNT","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":130,"kind":16,"name":"FIRST","url":"enums/commands.TimeSeriesAggregationType.html#FIRST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":131,"kind":16,"name":"LAST","url":"enums/commands.TimeSeriesAggregationType.html#LAST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":132,"kind":16,"name":"STD_P","url":"enums/commands.TimeSeriesAggregationType.html#STD_P","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":133,"kind":16,"name":"STD_S","url":"enums/commands.TimeSeriesAggregationType.html#STD_S","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":134,"kind":16,"name":"VAR_P","url":"enums/commands.TimeSeriesAggregationType.html#VAR_P","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":135,"kind":16,"name":"VAR_S","url":"enums/commands.TimeSeriesAggregationType.html#VAR_S","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesAggregationType"},{"id":136,"kind":8,"name":"TimeSeriesDuplicatePolicies","url":"enums/commands.TimeSeriesDuplicatePolicies.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands"},{"id":137,"kind":16,"name":"BLOCK","url":"enums/commands.TimeSeriesDuplicatePolicies.html#BLOCK","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesDuplicatePolicies"},{"id":138,"kind":16,"name":"FIRST","url":"enums/commands.TimeSeriesDuplicatePolicies.html#FIRST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesDuplicatePolicies"},{"id":139,"kind":16,"name":"LAST","url":"enums/commands.TimeSeriesDuplicatePolicies.html#LAST","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesDuplicatePolicies"},{"id":140,"kind":16,"name":"MIN","url":"enums/commands.TimeSeriesDuplicatePolicies.html#MIN","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesDuplicatePolicies"},{"id":141,"kind":16,"name":"MAX","url":"enums/commands.TimeSeriesDuplicatePolicies.html#MAX","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesDuplicatePolicies"},{"id":142,"kind":16,"name":"SUM","url":"enums/commands.TimeSeriesDuplicatePolicies.html#SUM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesDuplicatePolicies"},{"id":143,"kind":8,"name":"TimeSeriesReducers","url":"enums/commands.TimeSeriesReducers.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands"},{"id":144,"kind":16,"name":"SUM","url":"enums/commands.TimeSeriesReducers.html#SUM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesReducers"},{"id":145,"kind":16,"name":"MINIMUM","url":"enums/commands.TimeSeriesReducers.html#MINIMUM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesReducers"},{"id":146,"kind":16,"name":"MAXIMUM","url":"enums/commands.TimeSeriesReducers.html#MAXIMUM","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesReducers"},{"id":147,"kind":4194304,"name":"Timestamp","url":"modules/commands.html#Timestamp","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":148,"kind":8,"name":"TimeSeriesEncoding","url":"enums/commands.TimeSeriesEncoding.html","classes":"tsd-kind-enum tsd-parent-kind-module","parent":"commands"},{"id":149,"kind":16,"name":"COMPRESSED","url":"enums/commands.TimeSeriesEncoding.html#COMPRESSED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesEncoding"},{"id":150,"kind":16,"name":"UNCOMPRESSED","url":"enums/commands.TimeSeriesEncoding.html#UNCOMPRESSED","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"commands.TimeSeriesEncoding"},{"id":151,"kind":4194304,"name":"RawLabels","url":"modules/commands.html#RawLabels","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":152,"kind":4194304,"name":"Labels","url":"modules/commands.html#Labels","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":153,"kind":65536,"name":"__type","url":"modules/commands.html#Labels.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"commands.Labels"},{"id":154,"kind":256,"name":"IncrDecrOptions","url":"interfaces/commands.IncrDecrOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands"},{"id":155,"kind":1024,"name":"TIMESTAMP","url":"interfaces/commands.IncrDecrOptions.html#TIMESTAMP","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.IncrDecrOptions"},{"id":156,"kind":1024,"name":"RETENTION","url":"interfaces/commands.IncrDecrOptions.html#RETENTION","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.IncrDecrOptions"},{"id":157,"kind":1024,"name":"UNCOMPRESSED","url":"interfaces/commands.IncrDecrOptions.html#UNCOMPRESSED","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.IncrDecrOptions"},{"id":158,"kind":1024,"name":"CHUNK_SIZE","url":"interfaces/commands.IncrDecrOptions.html#CHUNK_SIZE","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.IncrDecrOptions"},{"id":159,"kind":1024,"name":"LABELS","url":"interfaces/commands.IncrDecrOptions.html#LABELS","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.IncrDecrOptions"},{"id":160,"kind":4194304,"name":"SampleRawReply","url":"modules/commands.html#SampleRawReply","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":161,"kind":256,"name":"SampleReply","url":"interfaces/commands.SampleReply.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands"},{"id":162,"kind":1024,"name":"timestamp","url":"interfaces/commands.SampleReply.html#timestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.SampleReply"},{"id":163,"kind":1024,"name":"value","url":"interfaces/commands.SampleReply.html#value","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.SampleReply"},{"id":164,"kind":256,"name":"RangeOptions","url":"interfaces/commands.RangeOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands"},{"id":165,"kind":1024,"name":"FILTER_BY_TS","url":"interfaces/commands.RangeOptions.html#FILTER_BY_TS","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.RangeOptions"},{"id":166,"kind":1024,"name":"FILTER_BY_VALUE","url":"interfaces/commands.RangeOptions.html#FILTER_BY_VALUE","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.RangeOptions"},{"id":167,"kind":65536,"name":"__type","url":"interfaces/commands.RangeOptions.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"commands.RangeOptions"},{"id":168,"kind":1024,"name":"min","url":"interfaces/commands.RangeOptions.html#__type-1.min","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.RangeOptions.__type"},{"id":169,"kind":1024,"name":"max","url":"interfaces/commands.RangeOptions.html#__type-1.max","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.RangeOptions.__type"},{"id":170,"kind":1024,"name":"COUNT","url":"interfaces/commands.RangeOptions.html#COUNT","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.RangeOptions"},{"id":171,"kind":1024,"name":"ALIGN","url":"interfaces/commands.RangeOptions.html#ALIGN","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.RangeOptions"},{"id":172,"kind":1024,"name":"AGGREGATION","url":"interfaces/commands.RangeOptions.html#AGGREGATION","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.RangeOptions"},{"id":173,"kind":65536,"name":"__type","url":"interfaces/commands.RangeOptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"commands.RangeOptions"},{"id":174,"kind":1024,"name":"type","url":"interfaces/commands.RangeOptions.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.RangeOptions.__type"},{"id":175,"kind":1024,"name":"timeBucket","url":"interfaces/commands.RangeOptions.html#__type.timeBucket","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.RangeOptions.__type"},{"id":176,"kind":4194304,"name":"Filter","url":"modules/commands.html#Filter","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":177,"kind":256,"name":"MRangeOptions","url":"interfaces/commands.MRangeOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands"},{"id":178,"kind":1024,"name":"GROUPBY","url":"interfaces/commands.MRangeOptions.html#GROUPBY","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.MRangeOptions"},{"id":179,"kind":1024,"name":"FILTER_BY_TS","url":"interfaces/commands.MRangeOptions.html#FILTER_BY_TS","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeOptions"},{"id":180,"kind":1024,"name":"FILTER_BY_VALUE","url":"interfaces/commands.MRangeOptions.html#FILTER_BY_VALUE","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeOptions"},{"id":181,"kind":65536,"name":"__type","url":"interfaces/commands.MRangeOptions.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"commands.MRangeOptions"},{"id":182,"kind":1024,"name":"min","url":"interfaces/commands.MRangeOptions.html#__type-1.min","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.MRangeOptions.__type"},{"id":183,"kind":1024,"name":"max","url":"interfaces/commands.MRangeOptions.html#__type-1.max","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.MRangeOptions.__type"},{"id":184,"kind":1024,"name":"COUNT","url":"interfaces/commands.MRangeOptions.html#COUNT","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeOptions"},{"id":185,"kind":1024,"name":"ALIGN","url":"interfaces/commands.MRangeOptions.html#ALIGN","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeOptions"},{"id":186,"kind":1024,"name":"AGGREGATION","url":"interfaces/commands.MRangeOptions.html#AGGREGATION","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeOptions"},{"id":187,"kind":65536,"name":"__type","url":"interfaces/commands.MRangeOptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"commands.MRangeOptions"},{"id":188,"kind":1024,"name":"type","url":"interfaces/commands.MRangeOptions.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.MRangeOptions.__type"},{"id":189,"kind":1024,"name":"timeBucket","url":"interfaces/commands.MRangeOptions.html#__type.timeBucket","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.MRangeOptions.__type"},{"id":190,"kind":4194304,"name":"SelectedLabels","url":"modules/commands.html#SelectedLabels","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"commands"},{"id":191,"kind":256,"name":"MRangeWithLabelsOptions","url":"interfaces/commands.MRangeWithLabelsOptions.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands"},{"id":192,"kind":1024,"name":"SELECTED_LABELS","url":"interfaces/commands.MRangeWithLabelsOptions.html#SELECTED_LABELS","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.MRangeWithLabelsOptions"},{"id":193,"kind":1024,"name":"GROUPBY","url":"interfaces/commands.MRangeWithLabelsOptions.html#GROUPBY","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeWithLabelsOptions"},{"id":194,"kind":1024,"name":"FILTER_BY_TS","url":"interfaces/commands.MRangeWithLabelsOptions.html#FILTER_BY_TS","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeWithLabelsOptions"},{"id":195,"kind":1024,"name":"FILTER_BY_VALUE","url":"interfaces/commands.MRangeWithLabelsOptions.html#FILTER_BY_VALUE","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeWithLabelsOptions"},{"id":196,"kind":65536,"name":"__type","url":"interfaces/commands.MRangeWithLabelsOptions.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"commands.MRangeWithLabelsOptions"},{"id":197,"kind":1024,"name":"min","url":"interfaces/commands.MRangeWithLabelsOptions.html#__type-1.min","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.MRangeWithLabelsOptions.__type"},{"id":198,"kind":1024,"name":"max","url":"interfaces/commands.MRangeWithLabelsOptions.html#__type-1.max","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.MRangeWithLabelsOptions.__type"},{"id":199,"kind":1024,"name":"COUNT","url":"interfaces/commands.MRangeWithLabelsOptions.html#COUNT","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeWithLabelsOptions"},{"id":200,"kind":1024,"name":"ALIGN","url":"interfaces/commands.MRangeWithLabelsOptions.html#ALIGN","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeWithLabelsOptions"},{"id":201,"kind":1024,"name":"AGGREGATION","url":"interfaces/commands.MRangeWithLabelsOptions.html#AGGREGATION","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeWithLabelsOptions"},{"id":202,"kind":65536,"name":"__type","url":"interfaces/commands.MRangeWithLabelsOptions.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-interface","parent":"commands.MRangeWithLabelsOptions"},{"id":203,"kind":1024,"name":"type","url":"interfaces/commands.MRangeWithLabelsOptions.html#__type.type","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.MRangeWithLabelsOptions.__type"},{"id":204,"kind":1024,"name":"timeBucket","url":"interfaces/commands.MRangeWithLabelsOptions.html#__type.timeBucket","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.MRangeWithLabelsOptions.__type"},{"id":205,"kind":256,"name":"MRangeWithLabelsReplyItem","url":"interfaces/commands.MRangeWithLabelsReplyItem.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"commands"},{"id":206,"kind":1024,"name":"labels","url":"interfaces/commands.MRangeWithLabelsReplyItem.html#labels","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"commands.MRangeWithLabelsReplyItem"},{"id":207,"kind":1024,"name":"key","url":"interfaces/commands.MRangeWithLabelsReplyItem.html#key","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeWithLabelsReplyItem"},{"id":208,"kind":1024,"name":"samples","url":"interfaces/commands.MRangeWithLabelsReplyItem.html#samples","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"commands.MRangeWithLabelsReplyItem"},{"id":209,"kind":1024,"name":"default","url":"modules/commands.html#default","classes":"tsd-kind-property tsd-parent-kind-module","parent":"commands"},{"id":210,"kind":65536,"name":"__type","url":"modules/commands.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-module","parent":"commands"},{"id":211,"kind":1024,"name":"ADD","url":"modules/commands.html#__type-1.ADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":212,"kind":1024,"name":"add","url":"modules/commands.html#__type-1.add","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":213,"kind":1024,"name":"ALTER","url":"modules/commands.html#__type-1.ALTER","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":214,"kind":1024,"name":"alter","url":"modules/commands.html#__type-1.alter","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":215,"kind":1024,"name":"CREATE","url":"modules/commands.html#__type-1.CREATE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":216,"kind":1024,"name":"create","url":"modules/commands.html#__type-1.create","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":217,"kind":1024,"name":"CREATERULE","url":"modules/commands.html#__type-1.CREATERULE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":218,"kind":1024,"name":"createRule","url":"modules/commands.html#__type-1.createRule","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":219,"kind":1024,"name":"DECRBY","url":"modules/commands.html#__type-1.DECRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":220,"kind":1024,"name":"decrBy","url":"modules/commands.html#__type-1.decrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":221,"kind":1024,"name":"DEL","url":"modules/commands.html#__type-1.DEL","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":222,"kind":1024,"name":"del","url":"modules/commands.html#__type-1.del","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":223,"kind":1024,"name":"DELETERULE","url":"modules/commands.html#__type-1.DELETERULE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":224,"kind":1024,"name":"deleteRule","url":"modules/commands.html#__type-1.deleteRule","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":225,"kind":1024,"name":"GET","url":"modules/commands.html#__type-1.GET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":226,"kind":1024,"name":"get","url":"modules/commands.html#__type-1.get","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":227,"kind":1024,"name":"INCRBY","url":"modules/commands.html#__type-1.INCRBY","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":228,"kind":1024,"name":"incrBy","url":"modules/commands.html#__type-1.incrBy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":229,"kind":1024,"name":"INFO_DEBUG","url":"modules/commands.html#__type-1.INFO_DEBUG","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":230,"kind":1024,"name":"infoDebug","url":"modules/commands.html#__type-1.infoDebug","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":231,"kind":1024,"name":"INFO","url":"modules/commands.html#__type-1.INFO","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":232,"kind":1024,"name":"info","url":"modules/commands.html#__type-1.info","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":233,"kind":1024,"name":"MADD","url":"modules/commands.html#__type-1.MADD","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":234,"kind":1024,"name":"mAdd","url":"modules/commands.html#__type-1.mAdd","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":235,"kind":1024,"name":"MGET","url":"modules/commands.html#__type-1.MGET","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":236,"kind":1024,"name":"mGet","url":"modules/commands.html#__type-1.mGet","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":237,"kind":1024,"name":"MGET_WITHLABELS","url":"modules/commands.html#__type-1.MGET_WITHLABELS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":238,"kind":1024,"name":"mGetWithLabels","url":"modules/commands.html#__type-1.mGetWithLabels","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":239,"kind":1024,"name":"QUERYINDEX","url":"modules/commands.html#__type-1.QUERYINDEX","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":240,"kind":1024,"name":"queryIndex","url":"modules/commands.html#__type-1.queryIndex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":241,"kind":1024,"name":"RANGE","url":"modules/commands.html#__type-1.RANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":242,"kind":1024,"name":"range","url":"modules/commands.html#__type-1.range","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":243,"kind":1024,"name":"REVRANGE","url":"modules/commands.html#__type-1.REVRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":244,"kind":1024,"name":"revRange","url":"modules/commands.html#__type-1.revRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":245,"kind":1024,"name":"MRANGE","url":"modules/commands.html#__type-1.MRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":246,"kind":1024,"name":"mRange","url":"modules/commands.html#__type-1.mRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":247,"kind":1024,"name":"MRANGE_WITHLABELS","url":"modules/commands.html#__type-1.MRANGE_WITHLABELS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":248,"kind":1024,"name":"mRangeWithLabels","url":"modules/commands.html#__type-1.mRangeWithLabels","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":249,"kind":1024,"name":"MREVRANGE","url":"modules/commands.html#__type-1.MREVRANGE","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":250,"kind":1024,"name":"mRevRange","url":"modules/commands.html#__type-1.mRevRange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":251,"kind":1024,"name":"MREVRANGE_WITHLABELS","url":"modules/commands.html#__type-1.MREVRANGE_WITHLABELS","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":252,"kind":1024,"name":"mRevRangeWithLabels","url":"modules/commands.html#__type-1.mRevRangeWithLabels","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"commands.__type"},{"id":253,"kind":2,"name":"index","url":"modules/index.html","classes":"tsd-kind-module"},{"id":254,"kind":16777216,"name":"IS_READ_ONLY","url":"modules/commands_INFO_DEBUG.html#IS_READ_ONLY","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/INFO_DEBUG"},{"id":255,"kind":16777216,"name":"FIRST_KEY_INDEX","url":"modules/commands_INFO_DEBUG.html#FIRST_KEY_INDEX","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/INFO_DEBUG"},{"id":256,"kind":16777216,"name":"transformReply","url":"modules/commands_MRANGE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/MRANGE"},{"id":257,"kind":16777216,"name":"transformReply","url":"modules/commands_MRANGE_WITHLABELS.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/MRANGE_WITHLABELS"},{"id":258,"kind":16777216,"name":"transformReply","url":"modules/commands_MREVRANGE.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/MREVRANGE"},{"id":259,"kind":16777216,"name":"transformReply","url":"modules/commands_MREVRANGE_WITHLABELS.html#transformReply","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"commands/MREVRANGE_WITHLABELS"},{"id":260,"kind":16777216,"name":"default","url":"modules/index.html#default","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"index"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,40.643]],["parent/0",[]],["name/1",[1,25.003]],["parent/1",[0,3.91]],["name/2",[2,25.979]],["parent/2",[0,3.91]],["name/3",[3,29.657]],["parent/3",[0,3.91]],["name/4",[4,40.643]],["parent/4",[]],["name/5",[1,25.003]],["parent/5",[4,3.91]],["name/6",[2,25.979]],["parent/6",[4,3.91]],["name/7",[3,29.657]],["parent/7",[4,3.91]],["name/8",[5,40.643]],["parent/8",[]],["name/9",[1,25.003]],["parent/9",[5,3.91]],["name/10",[2,25.979]],["parent/10",[5,3.91]],["name/11",[3,29.657]],["parent/11",[5,3.91]],["name/12",[6,40.643]],["parent/12",[]],["name/13",[1,25.003]],["parent/13",[6,3.91]],["name/14",[7,46.521]],["parent/14",[6,3.91]],["name/15",[3,29.657]],["parent/15",[6,3.91]],["name/16",[8,40.643]],["parent/16",[]],["name/17",[1,25.003]],["parent/17",[8,3.91]],["name/18",[2,25.979]],["parent/18",[8,3.91]],["name/19",[3,29.657]],["parent/19",[8,3.91]],["name/20",[9,40.643]],["parent/20",[]],["name/21",[1,25.003]],["parent/21",[9,3.91]],["name/22",[2,25.979]],["parent/22",[9,3.91]],["name/23",[10,51.629]],["parent/23",[9,3.91]],["name/24",[11,40.643]],["parent/24",[]],["name/25",[1,25.003]],["parent/25",[11,3.91]],["name/26",[7,46.521]],["parent/26",[11,3.91]],["name/27",[3,29.657]],["parent/27",[11,3.91]],["name/28",[12,38.636]],["parent/28",[]],["name/29",[1,25.003]],["parent/29",[12,3.717]],["name/30",[2,25.979]],["parent/30",[12,3.717]],["name/31",[3,29.657]],["parent/31",[12,3.717]],["name/32",[13,30.426]],["parent/32",[12,3.717]],["name/33",[14,40.643]],["parent/33",[]],["name/34",[1,25.003]],["parent/34",[14,3.91]],["name/35",[2,25.979]],["parent/35",[14,3.91]],["name/36",[3,29.657]],["parent/36",[14,3.91]],["name/37",[15,35.534]],["parent/37",[]],["name/38",[1,25.003]],["parent/38",[15,3.418]],["name/39",[2,25.979]],["parent/39",[15,3.418]],["name/40",[3,29.657]],["parent/40",[15,3.418]],["name/41",[13,30.426]],["parent/41",[15,3.418]],["name/42",[16,51.629]],["parent/42",[15,3.418]],["name/43",[17,51.629]],["parent/43",[15,3.418]],["name/44",[18,51.629]],["parent/44",[19,2.927]],["name/45",[20,51.629]],["parent/45",[19,2.927]],["name/46",[21,51.629]],["parent/46",[19,2.927]],["name/47",[22,51.629]],["parent/47",[19,2.927]],["name/48",[23,51.629]],["parent/48",[19,2.927]],["name/49",[24,51.629]],["parent/49",[19,2.927]],["name/50",[25,51.629]],["parent/50",[19,2.927]],["name/51",[26,51.629]],["parent/51",[19,2.927]],["name/52",[27,51.629]],["parent/52",[19,2.927]],["name/53",[28,38.636]],["parent/53",[19,2.927]],["name/54",[29,51.629]],["parent/54",[19,2.927]],["name/55",[30,51.629]],["parent/55",[19,2.927]],["name/56",[31,38.636]],["parent/56",[]],["name/57",[1,25.003]],["parent/57",[31,3.717]],["name/58",[2,25.979]],["parent/58",[31,3.717]],["name/59",[32,40.643]],["parent/59",[]],["name/60",[1,25.003]],["parent/60",[32,3.91]],["name/61",[2,25.979]],["parent/61",[32,3.91]],["name/62",[3,29.657]],["parent/62",[32,3.91]],["name/63",[33,36.965]],["parent/63",[]],["name/64",[1,25.003]],["parent/64",[33,3.556]],["name/65",[2,25.979]],["parent/65",[33,3.556]],["name/66",[13,30.426]],["parent/66",[33,3.556]],["name/67",[34,51.629]],["parent/67",[33,3.556]],["name/68",[35,51.629]],["parent/68",[33,3.556]],["name/69",[36,43.156]],["parent/69",[37,4.475]],["name/70",[38,46.521]],["parent/70",[37,4.475]],["name/71",[39,38.636]],["parent/71",[]],["name/72",[1,25.003]],["parent/72",[39,3.717]],["name/73",[2,25.979]],["parent/73",[39,3.717]],["name/74",[13,30.426]],["parent/74",[39,3.717]],["name/75",[40,51.629]],["parent/75",[39,3.717]],["name/76",[28,38.636]],["parent/76",[41,4.151]],["name/77",[36,43.156]],["parent/77",[41,4.151]],["name/78",[38,46.521]],["parent/78",[41,4.151]],["name/79",[42,40.643]],["parent/79",[]],["name/80",[1,25.003]],["parent/80",[42,3.91]],["name/81",[13,30.426]],["parent/81",[42,3.91]],["name/82",[43,40.643]],["parent/82",[]],["name/83",[1,25.003]],["parent/83",[43,3.91]],["name/84",[13,30.426]],["parent/84",[43,3.91]],["name/85",[44,40.643]],["parent/85",[]],["name/86",[1,25.003]],["parent/86",[44,3.91]],["name/87",[13,30.426]],["parent/87",[44,3.91]],["name/88",[45,40.643]],["parent/88",[]],["name/89",[1,25.003]],["parent/89",[45,3.91]],["name/90",[13,30.426]],["parent/90",[45,3.91]],["name/91",[46,40.643]],["parent/91",[]],["name/92",[1,25.003]],["parent/92",[46,3.91]],["name/93",[2,25.979]],["parent/93",[46,3.91]],["name/94",[13,30.426]],["parent/94",[46,3.91]],["name/95",[47,38.636]],["parent/95",[]],["name/96",[1,25.003]],["parent/96",[47,3.717]],["name/97",[2,25.979]],["parent/97",[47,3.717]],["name/98",[3,29.657]],["parent/98",[47,3.717]],["name/99",[13,30.426]],["parent/99",[47,3.717]],["name/100",[48,38.636]],["parent/100",[]],["name/101",[1,25.003]],["parent/101",[48,3.717]],["name/102",[2,25.979]],["parent/102",[48,3.717]],["name/103",[3,29.657]],["parent/103",[48,3.717]],["name/104",[13,30.426]],["parent/104",[48,3.717]],["name/105",[49,19.71]],["parent/105",[]],["name/106",[50,51.629]],["parent/106",[49,1.896]],["name/107",[51,51.629]],["parent/107",[49,1.896]],["name/108",[52,51.629]],["parent/108",[49,1.896]],["name/109",[53,51.629]],["parent/109",[49,1.896]],["name/110",[54,51.629]],["parent/110",[49,1.896]],["name/111",[55,51.629]],["parent/111",[49,1.896]],["name/112",[56,51.629]],["parent/112",[49,1.896]],["name/113",[57,51.629]],["parent/113",[49,1.896]],["name/114",[58,51.629]],["parent/114",[49,1.896]],["name/115",[59,51.629]],["parent/115",[49,1.896]],["name/116",[60,51.629]],["parent/116",[49,1.896]],["name/117",[61,51.629]],["parent/117",[49,1.896]],["name/118",[62,51.629]],["parent/118",[49,1.896]],["name/119",[63,51.629]],["parent/119",[49,1.896]],["name/120",[64,51.629]],["parent/120",[49,1.896]],["name/121",[65,51.629]],["parent/121",[49,1.896]],["name/122",[66,51.629]],["parent/122",[49,1.896]],["name/123",[67,51.629]],["parent/123",[49,1.896]],["name/124",[68,51.629]],["parent/124",[69,2.927]],["name/125",[70,43.156]],["parent/125",[69,2.927]],["name/126",[71,46.521]],["parent/126",[69,2.927]],["name/127",[72,46.521]],["parent/127",[69,2.927]],["name/128",[73,43.156]],["parent/128",[69,2.927]],["name/129",[74,40.643]],["parent/129",[69,2.927]],["name/130",[75,46.521]],["parent/130",[69,2.927]],["name/131",[76,46.521]],["parent/131",[69,2.927]],["name/132",[77,51.629]],["parent/132",[69,2.927]],["name/133",[78,51.629]],["parent/133",[69,2.927]],["name/134",[79,51.629]],["parent/134",[69,2.927]],["name/135",[80,51.629]],["parent/135",[69,2.927]],["name/136",[81,51.629]],["parent/136",[49,1.896]],["name/137",[82,51.629]],["parent/137",[83,3.556]],["name/138",[75,46.521]],["parent/138",[83,3.556]],["name/139",[76,46.521]],["parent/139",[83,3.556]],["name/140",[84,40.643]],["parent/140",[83,3.556]],["name/141",[85,40.643]],["parent/141",[83,3.556]],["name/142",[70,43.156]],["parent/142",[83,3.556]],["name/143",[86,51.629]],["parent/143",[49,1.896]],["name/144",[70,43.156]],["parent/144",[87,4.151]],["name/145",[71,46.521]],["parent/145",[87,4.151]],["name/146",[72,46.521]],["parent/146",[87,4.151]],["name/147",[88,43.156]],["parent/147",[49,1.896]],["name/148",[89,51.629]],["parent/148",[49,1.896]],["name/149",[90,51.629]],["parent/149",[91,4.475]],["name/150",[92,46.521]],["parent/150",[91,4.475]],["name/151",[93,51.629]],["parent/151",[49,1.896]],["name/152",[28,38.636]],["parent/152",[49,1.896]],["name/153",[94,34.283]],["parent/153",[95,4.967]],["name/154",[96,51.629]],["parent/154",[49,1.896]],["name/155",[88,43.156]],["parent/155",[97,3.717]],["name/156",[98,51.629]],["parent/156",[97,3.717]],["name/157",[92,46.521]],["parent/157",[97,3.717]],["name/158",[99,51.629]],["parent/158",[97,3.717]],["name/159",[28,38.636]],["parent/159",[97,3.717]],["name/160",[100,51.629]],["parent/160",[49,1.896]],["name/161",[101,51.629]],["parent/161",[49,1.896]],["name/162",[88,43.156]],["parent/162",[102,4.475]],["name/163",[103,51.629]],["parent/163",[102,4.475]],["name/164",[104,51.629]],["parent/164",[49,1.896]],["name/165",[105,43.156]],["parent/165",[106,3.418]],["name/166",[107,43.156]],["parent/166",[106,3.418]],["name/167",[94,34.283]],["parent/167",[106,3.418]],["name/168",[84,40.643]],["parent/168",[108,3.91]],["name/169",[85,40.643]],["parent/169",[108,3.91]],["name/170",[74,40.643]],["parent/170",[106,3.418]],["name/171",[109,43.156]],["parent/171",[106,3.418]],["name/172",[110,43.156]],["parent/172",[106,3.418]],["name/173",[94,34.283]],["parent/173",[106,3.418]],["name/174",[111,43.156]],["parent/174",[108,3.91]],["name/175",[112,43.156]],["parent/175",[108,3.91]],["name/176",[113,51.629]],["parent/176",[49,1.896]],["name/177",[114,51.629]],["parent/177",[49,1.896]],["name/178",[115,46.521]],["parent/178",[116,3.298]],["name/179",[105,43.156]],["parent/179",[116,3.298]],["name/180",[107,43.156]],["parent/180",[116,3.298]],["name/181",[94,34.283]],["parent/181",[116,3.298]],["name/182",[84,40.643]],["parent/182",[117,3.91]],["name/183",[85,40.643]],["parent/183",[117,3.91]],["name/184",[74,40.643]],["parent/184",[116,3.298]],["name/185",[109,43.156]],["parent/185",[116,3.298]],["name/186",[110,43.156]],["parent/186",[116,3.298]],["name/187",[94,34.283]],["parent/187",[116,3.298]],["name/188",[111,43.156]],["parent/188",[117,3.91]],["name/189",[112,43.156]],["parent/189",[117,3.91]],["name/190",[118,51.629]],["parent/190",[49,1.896]],["name/191",[119,51.629]],["parent/191",[49,1.896]],["name/192",[120,51.629]],["parent/192",[121,3.191]],["name/193",[115,46.521]],["parent/193",[121,3.191]],["name/194",[105,43.156]],["parent/194",[121,3.191]],["name/195",[107,43.156]],["parent/195",[121,3.191]],["name/196",[94,34.283]],["parent/196",[121,3.191]],["name/197",[84,40.643]],["parent/197",[122,3.91]],["name/198",[85,40.643]],["parent/198",[122,3.91]],["name/199",[74,40.643]],["parent/199",[121,3.191]],["name/200",[109,43.156]],["parent/200",[121,3.191]],["name/201",[110,43.156]],["parent/201",[121,3.191]],["name/202",[94,34.283]],["parent/202",[121,3.191]],["name/203",[111,43.156]],["parent/203",[122,3.91]],["name/204",[112,43.156]],["parent/204",[122,3.91]],["name/205",[123,51.629]],["parent/205",[49,1.896]],["name/206",[28,38.636]],["parent/206",[124,4.151]],["name/207",[36,43.156]],["parent/207",[124,4.151]],["name/208",[125,51.629]],["parent/208",[124,4.151]],["name/209",[126,46.521]],["parent/209",[49,1.896]],["name/210",[94,34.283]],["parent/210",[49,1.896]],["name/211",[127,46.521]],["parent/211",[128,1.75]],["name/212",[127,46.521]],["parent/212",[128,1.75]],["name/213",[129,46.521]],["parent/213",[128,1.75]],["name/214",[129,46.521]],["parent/214",[128,1.75]],["name/215",[130,46.521]],["parent/215",[128,1.75]],["name/216",[130,46.521]],["parent/216",[128,1.75]],["name/217",[131,46.521]],["parent/217",[128,1.75]],["name/218",[131,46.521]],["parent/218",[128,1.75]],["name/219",[132,46.521]],["parent/219",[128,1.75]],["name/220",[132,46.521]],["parent/220",[128,1.75]],["name/221",[133,46.521]],["parent/221",[128,1.75]],["name/222",[133,46.521]],["parent/222",[128,1.75]],["name/223",[134,46.521]],["parent/223",[128,1.75]],["name/224",[134,46.521]],["parent/224",[128,1.75]],["name/225",[135,46.521]],["parent/225",[128,1.75]],["name/226",[135,46.521]],["parent/226",[128,1.75]],["name/227",[136,46.521]],["parent/227",[128,1.75]],["name/228",[136,46.521]],["parent/228",[128,1.75]],["name/229",[137,51.629]],["parent/229",[128,1.75]],["name/230",[138,51.629]],["parent/230",[128,1.75]],["name/231",[139,46.521]],["parent/231",[128,1.75]],["name/232",[139,46.521]],["parent/232",[128,1.75]],["name/233",[140,46.521]],["parent/233",[128,1.75]],["name/234",[140,46.521]],["parent/234",[128,1.75]],["name/235",[141,46.521]],["parent/235",[128,1.75]],["name/236",[141,46.521]],["parent/236",[128,1.75]],["name/237",[142,51.629]],["parent/237",[128,1.75]],["name/238",[143,51.629]],["parent/238",[128,1.75]],["name/239",[144,46.521]],["parent/239",[128,1.75]],["name/240",[144,46.521]],["parent/240",[128,1.75]],["name/241",[73,43.156]],["parent/241",[128,1.75]],["name/242",[73,43.156]],["parent/242",[128,1.75]],["name/243",[145,46.521]],["parent/243",[128,1.75]],["name/244",[145,46.521]],["parent/244",[128,1.75]],["name/245",[146,46.521]],["parent/245",[128,1.75]],["name/246",[146,46.521]],["parent/246",[128,1.75]],["name/247",[147,51.629]],["parent/247",[128,1.75]],["name/248",[148,51.629]],["parent/248",[128,1.75]],["name/249",[149,46.521]],["parent/249",[128,1.75]],["name/250",[149,46.521]],["parent/250",[128,1.75]],["name/251",[150,51.629]],["parent/251",[128,1.75]],["name/252",[151,51.629]],["parent/252",[128,1.75]],["name/253",[152,46.521]],["parent/253",[]],["name/254",[13,30.426]],["parent/254",[31,3.717]],["name/255",[3,29.657]],["parent/255",[31,3.717]],["name/256",[2,25.979]],["parent/256",[42,3.91]],["name/257",[2,25.979]],["parent/257",[43,3.91]],["name/258",[2,25.979]],["parent/258",[44,3.91]],["name/259",[2,25.979]],["parent/259",[45,3.91]],["name/260",[126,46.521]],["parent/260",[152,4.475]]],"invertedIndex":[["__type",{"_index":94,"name":{"153":{},"167":{},"173":{},"181":{},"187":{},"196":{},"202":{},"210":{}},"parent":{}}],["add",{"_index":127,"name":{"211":{},"212":{}},"parent":{}}],["aggregation",{"_index":110,"name":{"172":{},"186":{},"201":{}},"parent":{}}],["align",{"_index":109,"name":{"171":{},"185":{},"200":{}},"parent":{}}],["alter",{"_index":129,"name":{"213":{},"214":{}},"parent":{}}],["avarage",{"_index":68,"name":{"124":{}},"parent":{}}],["block",{"_index":82,"name":{"137":{}},"parent":{}}],["chunk_size",{"_index":99,"name":{"158":{}},"parent":{}}],["chunkcount",{"_index":24,"name":{"49":{}},"parent":{}}],["chunksize",{"_index":25,"name":{"50":{}},"parent":{}}],["chunktype",{"_index":26,"name":{"51":{}},"parent":{}}],["commands",{"_index":49,"name":{"105":{}},"parent":{"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{},"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"136":{},"143":{},"147":{},"148":{},"151":{},"152":{},"154":{},"160":{},"161":{},"164":{},"176":{},"177":{},"190":{},"191":{},"205":{},"209":{},"210":{}}}],["commands.__type",{"_index":128,"name":{},"parent":{"211":{},"212":{},"213":{},"214":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{}}}],["commands.incrdecroptions",{"_index":97,"name":{},"parent":{"155":{},"156":{},"157":{},"158":{},"159":{}}}],["commands.labels",{"_index":95,"name":{},"parent":{"153":{}}}],["commands.mrangeoptions",{"_index":116,"name":{},"parent":{"178":{},"179":{},"180":{},"181":{},"184":{},"185":{},"186":{},"187":{}}}],["commands.mrangeoptions.__type",{"_index":117,"name":{},"parent":{"182":{},"183":{},"188":{},"189":{}}}],["commands.mrangewithlabelsoptions",{"_index":121,"name":{},"parent":{"192":{},"193":{},"194":{},"195":{},"196":{},"199":{},"200":{},"201":{},"202":{}}}],["commands.mrangewithlabelsoptions.__type",{"_index":122,"name":{},"parent":{"197":{},"198":{},"203":{},"204":{}}}],["commands.mrangewithlabelsreplyitem",{"_index":124,"name":{},"parent":{"206":{},"207":{},"208":{}}}],["commands.rangeoptions",{"_index":106,"name":{},"parent":{"165":{},"166":{},"167":{},"170":{},"171":{},"172":{},"173":{}}}],["commands.rangeoptions.__type",{"_index":108,"name":{},"parent":{"168":{},"169":{},"174":{},"175":{}}}],["commands.samplereply",{"_index":102,"name":{},"parent":{"162":{},"163":{}}}],["commands.timeseriesaggregationtype",{"_index":69,"name":{},"parent":{"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{},"133":{},"134":{},"135":{}}}],["commands.timeseriesduplicatepolicies",{"_index":83,"name":{},"parent":{"137":{},"138":{},"139":{},"140":{},"141":{},"142":{}}}],["commands.timeseriesencoding",{"_index":91,"name":{},"parent":{"149":{},"150":{}}}],["commands.timeseriesreducers",{"_index":87,"name":{},"parent":{"144":{},"145":{},"146":{}}}],["commands/add",{"_index":0,"name":{"0":{}},"parent":{"1":{},"2":{},"3":{}}}],["commands/alter",{"_index":4,"name":{"4":{}},"parent":{"5":{},"6":{},"7":{}}}],["commands/create",{"_index":5,"name":{"8":{}},"parent":{"9":{},"10":{},"11":{}}}],["commands/createrule",{"_index":6,"name":{"12":{}},"parent":{"13":{},"14":{},"15":{}}}],["commands/decrby",{"_index":8,"name":{"16":{}},"parent":{"17":{},"18":{},"19":{}}}],["commands/del",{"_index":9,"name":{"20":{}},"parent":{"21":{},"22":{},"23":{}}}],["commands/deleterule",{"_index":11,"name":{"24":{}},"parent":{"25":{},"26":{},"27":{}}}],["commands/get",{"_index":12,"name":{"28":{}},"parent":{"29":{},"30":{},"31":{},"32":{}}}],["commands/incrby",{"_index":14,"name":{"33":{}},"parent":{"34":{},"35":{},"36":{}}}],["commands/info",{"_index":15,"name":{"37":{}},"parent":{"38":{},"39":{},"40":{},"41":{},"42":{},"43":{}}}],["commands/info.inforeply",{"_index":19,"name":{},"parent":{"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{}}}],["commands/info_debug",{"_index":31,"name":{"56":{}},"parent":{"57":{},"58":{},"254":{},"255":{}}}],["commands/madd",{"_index":32,"name":{"59":{}},"parent":{"60":{},"61":{},"62":{}}}],["commands/mget",{"_index":33,"name":{"63":{}},"parent":{"64":{},"65":{},"66":{},"67":{},"68":{}}}],["commands/mget.mgetreply",{"_index":37,"name":{},"parent":{"69":{},"70":{}}}],["commands/mget_withlabels",{"_index":39,"name":{"71":{}},"parent":{"72":{},"73":{},"74":{},"75":{}}}],["commands/mget_withlabels.mgetwithlabelsreply",{"_index":41,"name":{},"parent":{"76":{},"77":{},"78":{}}}],["commands/mrange",{"_index":42,"name":{"79":{}},"parent":{"80":{},"81":{},"256":{}}}],["commands/mrange_withlabels",{"_index":43,"name":{"82":{}},"parent":{"83":{},"84":{},"257":{}}}],["commands/mrevrange",{"_index":44,"name":{"85":{}},"parent":{"86":{},"87":{},"258":{}}}],["commands/mrevrange_withlabels",{"_index":45,"name":{"88":{}},"parent":{"89":{},"90":{},"259":{}}}],["commands/queryindex",{"_index":46,"name":{"91":{}},"parent":{"92":{},"93":{},"94":{}}}],["commands/range",{"_index":47,"name":{"95":{}},"parent":{"96":{},"97":{},"98":{},"99":{}}}],["commands/revrange",{"_index":48,"name":{"100":{}},"parent":{"101":{},"102":{},"103":{},"104":{}}}],["compressed",{"_index":90,"name":{"149":{}},"parent":{}}],["count",{"_index":74,"name":{"129":{},"170":{},"184":{},"199":{}},"parent":{}}],["create",{"_index":130,"name":{"215":{},"216":{}},"parent":{}}],["createrule",{"_index":131,"name":{"217":{},"218":{}},"parent":{}}],["decrby",{"_index":132,"name":{"219":{},"220":{}},"parent":{}}],["default",{"_index":126,"name":{"209":{},"260":{}},"parent":{}}],["del",{"_index":133,"name":{"221":{},"222":{}},"parent":{}}],["deleterule",{"_index":134,"name":{"223":{},"224":{}},"parent":{}}],["duplicatepolicy",{"_index":27,"name":{"52":{}},"parent":{}}],["filter",{"_index":113,"name":{"176":{}},"parent":{}}],["filter_by_ts",{"_index":105,"name":{"165":{},"179":{},"194":{}},"parent":{}}],["filter_by_value",{"_index":107,"name":{"166":{},"180":{},"195":{}},"parent":{}}],["first",{"_index":75,"name":{"130":{},"138":{}},"parent":{}}],["first_key_index",{"_index":3,"name":{"3":{},"7":{},"11":{},"15":{},"19":{},"27":{},"31":{},"36":{},"40":{},"62":{},"98":{},"103":{},"255":{}},"parent":{}}],["firsttimestamp",{"_index":21,"name":{"46":{}},"parent":{}}],["firts_key_index",{"_index":10,"name":{"23":{}},"parent":{}}],["get",{"_index":135,"name":{"225":{},"226":{}},"parent":{}}],["groupby",{"_index":115,"name":{"178":{},"193":{}},"parent":{}}],["incrby",{"_index":136,"name":{"227":{},"228":{}},"parent":{}}],["incrdecroptions",{"_index":96,"name":{"154":{}},"parent":{}}],["index",{"_index":152,"name":{"253":{}},"parent":{"260":{}}}],["info",{"_index":139,"name":{"231":{},"232":{}},"parent":{}}],["info_debug",{"_index":137,"name":{"229":{}},"parent":{}}],["infodebug",{"_index":138,"name":{"230":{}},"parent":{}}],["inforawreply",{"_index":16,"name":{"42":{}},"parent":{}}],["inforeply",{"_index":17,"name":{"43":{}},"parent":{}}],["is_read_only",{"_index":13,"name":{"32":{},"41":{},"66":{},"74":{},"81":{},"84":{},"87":{},"90":{},"94":{},"99":{},"104":{},"254":{}},"parent":{}}],["key",{"_index":36,"name":{"69":{},"77":{},"207":{}},"parent":{}}],["labels",{"_index":28,"name":{"53":{},"76":{},"152":{},"159":{},"206":{}},"parent":{}}],["last",{"_index":76,"name":{"131":{},"139":{}},"parent":{}}],["lasttimestamp",{"_index":22,"name":{"47":{}},"parent":{}}],["madd",{"_index":140,"name":{"233":{},"234":{}},"parent":{}}],["max",{"_index":85,"name":{"141":{},"169":{},"183":{},"198":{}},"parent":{}}],["maximum",{"_index":72,"name":{"127":{},"146":{}},"parent":{}}],["memoryusage",{"_index":20,"name":{"45":{}},"parent":{}}],["mget",{"_index":141,"name":{"235":{},"236":{}},"parent":{}}],["mget_withlabels",{"_index":142,"name":{"237":{}},"parent":{}}],["mgetrawreply",{"_index":34,"name":{"67":{}},"parent":{}}],["mgetreply",{"_index":35,"name":{"68":{}},"parent":{}}],["mgetwithlabels",{"_index":143,"name":{"238":{}},"parent":{}}],["mgetwithlabelsreply",{"_index":40,"name":{"75":{}},"parent":{}}],["min",{"_index":84,"name":{"140":{},"168":{},"182":{},"197":{}},"parent":{}}],["minimum",{"_index":71,"name":{"126":{},"145":{}},"parent":{}}],["mrange",{"_index":146,"name":{"245":{},"246":{}},"parent":{}}],["mrange_withlabels",{"_index":147,"name":{"247":{}},"parent":{}}],["mrangeoptions",{"_index":114,"name":{"177":{}},"parent":{}}],["mrangewithlabels",{"_index":148,"name":{"248":{}},"parent":{}}],["mrangewithlabelsoptions",{"_index":119,"name":{"191":{}},"parent":{}}],["mrangewithlabelsreplyitem",{"_index":123,"name":{"205":{}},"parent":{}}],["mrevrange",{"_index":149,"name":{"249":{},"250":{}},"parent":{}}],["mrevrange_withlabels",{"_index":150,"name":{"251":{}},"parent":{}}],["mrevrangewithlabels",{"_index":151,"name":{"252":{}},"parent":{}}],["pushchunksizeargument",{"_index":53,"name":{"109":{}},"parent":{}}],["pushencodingargument",{"_index":52,"name":{"108":{}},"parent":{}}],["pushfilterargument",{"_index":60,"name":{"116":{}},"parent":{}}],["pushlabelsargument",{"_index":55,"name":{"111":{}},"parent":{}}],["pushmrangearguments",{"_index":61,"name":{"117":{}},"parent":{}}],["pushmrangegroupbyarguments",{"_index":59,"name":{"115":{}},"parent":{}}],["pushmrangewithlabelsarguments",{"_index":63,"name":{"119":{}},"parent":{}}],["pushrangearguments",{"_index":58,"name":{"114":{}},"parent":{}}],["pushretentionargument",{"_index":51,"name":{"107":{}},"parent":{}}],["pushwithlabelsargument",{"_index":62,"name":{"118":{}},"parent":{}}],["queryindex",{"_index":144,"name":{"239":{},"240":{}},"parent":{}}],["range",{"_index":73,"name":{"128":{},"241":{},"242":{}},"parent":{}}],["rangeoptions",{"_index":104,"name":{"164":{}},"parent":{}}],["rawlabels",{"_index":93,"name":{"151":{}},"parent":{}}],["retention",{"_index":98,"name":{"156":{}},"parent":{}}],["retentiontime",{"_index":23,"name":{"48":{}},"parent":{}}],["revrange",{"_index":145,"name":{"243":{},"244":{}},"parent":{}}],["rules",{"_index":30,"name":{"55":{}},"parent":{}}],["sample",{"_index":38,"name":{"70":{},"78":{}},"parent":{}}],["samplerawreply",{"_index":100,"name":{"160":{}},"parent":{}}],["samplereply",{"_index":101,"name":{"161":{}},"parent":{}}],["samples",{"_index":125,"name":{"208":{}},"parent":{}}],["selected_labels",{"_index":120,"name":{"192":{}},"parent":{}}],["selectedlabels",{"_index":118,"name":{"190":{}},"parent":{}}],["sourcekey",{"_index":29,"name":{"54":{}},"parent":{}}],["std_p",{"_index":77,"name":{"132":{}},"parent":{}}],["std_s",{"_index":78,"name":{"133":{}},"parent":{}}],["sum",{"_index":70,"name":{"125":{},"142":{},"144":{}},"parent":{}}],["timebucket",{"_index":112,"name":{"175":{},"189":{},"204":{}},"parent":{}}],["timeseriesaggregationtype",{"_index":67,"name":{"123":{}},"parent":{}}],["timeseriesduplicatepolicies",{"_index":81,"name":{"136":{}},"parent":{}}],["timeseriesencoding",{"_index":89,"name":{"148":{}},"parent":{}}],["timeseriesreducers",{"_index":86,"name":{"143":{}},"parent":{}}],["timestamp",{"_index":88,"name":{"147":{},"155":{},"162":{}},"parent":{}}],["totalsamples",{"_index":18,"name":{"44":{}},"parent":{}}],["transformarguments",{"_index":1,"name":{"1":{},"5":{},"9":{},"13":{},"17":{},"21":{},"25":{},"29":{},"34":{},"38":{},"57":{},"60":{},"64":{},"72":{},"80":{},"83":{},"86":{},"89":{},"92":{},"96":{},"101":{}},"parent":{}}],["transformincrdecrarguments",{"_index":56,"name":{"112":{}},"parent":{}}],["transformlablesreply",{"_index":54,"name":{"110":{}},"parent":{}}],["transformmrangereply",{"_index":65,"name":{"121":{}},"parent":{}}],["transformmrangewithlabelsreply",{"_index":66,"name":{"122":{}},"parent":{}}],["transformrangereply",{"_index":64,"name":{"120":{}},"parent":{}}],["transformreply",{"_index":2,"name":{"2":{},"6":{},"10":{},"18":{},"22":{},"30":{},"35":{},"39":{},"58":{},"61":{},"65":{},"73":{},"93":{},"97":{},"102":{},"256":{},"257":{},"258":{},"259":{}},"parent":{}}],["transformsamplereply",{"_index":57,"name":{"113":{}},"parent":{}}],["transformtimestampargument",{"_index":50,"name":{"106":{}},"parent":{}}],["transfromreply",{"_index":7,"name":{"14":{},"26":{}},"parent":{}}],["type",{"_index":111,"name":{"174":{},"188":{},"203":{}},"parent":{}}],["uncompressed",{"_index":92,"name":{"150":{},"157":{}},"parent":{}}],["value",{"_index":103,"name":{"163":{}},"parent":{}}],["var_p",{"_index":79,"name":{"134":{}},"parent":{}}],["var_s",{"_index":80,"name":{"135":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/documentation/time-series/assets/style.css b/documentation/time-series/assets/style.css new file mode 100644 index 0000000000..28f90b673c --- /dev/null +++ b/documentation/time-series/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/documentation/time-series/assets/widgets.png b/documentation/time-series/assets/widgets.png new file mode 100644 index 0000000000..c7380532ac Binary files /dev/null and b/documentation/time-series/assets/widgets.png differ diff --git a/documentation/time-series/assets/widgets@2x.png b/documentation/time-series/assets/widgets@2x.png new file mode 100644 index 0000000000..4bbbd57272 Binary files /dev/null and b/documentation/time-series/assets/widgets@2x.png differ diff --git a/documentation/time-series/enums/commands.TimeSeriesAggregationType.html b/documentation/time-series/enums/commands.TimeSeriesAggregationType.html new file mode 100644 index 0000000000..3507a1749d --- /dev/null +++ b/documentation/time-series/enums/commands.TimeSeriesAggregationType.html @@ -0,0 +1 @@ +TimeSeriesAggregationType | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/enums/commands.TimeSeriesDuplicatePolicies.html b/documentation/time-series/enums/commands.TimeSeriesDuplicatePolicies.html new file mode 100644 index 0000000000..75bc3daf5f --- /dev/null +++ b/documentation/time-series/enums/commands.TimeSeriesDuplicatePolicies.html @@ -0,0 +1 @@ +TimeSeriesDuplicatePolicies | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration TimeSeriesDuplicatePolicies

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/enums/commands.TimeSeriesEncoding.html b/documentation/time-series/enums/commands.TimeSeriesEncoding.html new file mode 100644 index 0000000000..e6befe1284 --- /dev/null +++ b/documentation/time-series/enums/commands.TimeSeriesEncoding.html @@ -0,0 +1 @@ +TimeSeriesEncoding | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/enums/commands.TimeSeriesReducers.html b/documentation/time-series/enums/commands.TimeSeriesReducers.html new file mode 100644 index 0000000000..53ceb42f06 --- /dev/null +++ b/documentation/time-series/enums/commands.TimeSeriesReducers.html @@ -0,0 +1 @@ +TimeSeriesReducers | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/index.html b/documentation/time-series/index.html new file mode 100644 index 0000000000..882bd14669 --- /dev/null +++ b/documentation/time-series/index.html @@ -0,0 +1,6 @@ +@node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

@node-redis/time-series

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands.IncrDecrOptions.html b/documentation/time-series/interfaces/commands.IncrDecrOptions.html new file mode 100644 index 0000000000..590312c7ca --- /dev/null +++ b/documentation/time-series/interfaces/commands.IncrDecrOptions.html @@ -0,0 +1 @@ +IncrDecrOptions | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands.MRangeOptions.html b/documentation/time-series/interfaces/commands.MRangeOptions.html new file mode 100644 index 0000000000..60eb32d860 --- /dev/null +++ b/documentation/time-series/interfaces/commands.MRangeOptions.html @@ -0,0 +1 @@ +MRangeOptions | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands.MRangeWithLabelsOptions.html b/documentation/time-series/interfaces/commands.MRangeWithLabelsOptions.html new file mode 100644 index 0000000000..b3c2f28d54 --- /dev/null +++ b/documentation/time-series/interfaces/commands.MRangeWithLabelsOptions.html @@ -0,0 +1 @@ +MRangeWithLabelsOptions | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Optional AGGREGATION

AGGREGATION?: { timeBucket: Timestamp; type: TimeSeriesAggregationType }

Type declaration

Optional ALIGN

ALIGN?: Timestamp

Optional COUNT

COUNT?: number

Optional FILTER_BY_TS

FILTER_BY_TS?: Timestamp[]

Optional FILTER_BY_VALUE

FILTER_BY_VALUE?: { max: number; min: number }

Type declaration

  • max: number
  • min: number

Optional GROUPBY

GROUPBY?: MRangeGroupBy

Optional SELECTED_LABELS

SELECTED_LABELS?: SelectedLabels

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands.MRangeWithLabelsReplyItem.html b/documentation/time-series/interfaces/commands.MRangeWithLabelsReplyItem.html new file mode 100644 index 0000000000..fe0a80cb73 --- /dev/null +++ b/documentation/time-series/interfaces/commands.MRangeWithLabelsReplyItem.html @@ -0,0 +1 @@ +MRangeWithLabelsReplyItem | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands.RangeOptions.html b/documentation/time-series/interfaces/commands.RangeOptions.html new file mode 100644 index 0000000000..ace1edc049 --- /dev/null +++ b/documentation/time-series/interfaces/commands.RangeOptions.html @@ -0,0 +1 @@ +RangeOptions | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands.SampleReply.html b/documentation/time-series/interfaces/commands.SampleReply.html new file mode 100644 index 0000000000..956af62752 --- /dev/null +++ b/documentation/time-series/interfaces/commands.SampleReply.html @@ -0,0 +1 @@ +SampleReply | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands_INFO.InfoReply.html b/documentation/time-series/interfaces/commands_INFO.InfoReply.html new file mode 100644 index 0000000000..2fc34298bf --- /dev/null +++ b/documentation/time-series/interfaces/commands_INFO.InfoReply.html @@ -0,0 +1 @@ +InfoReply | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • InfoReply

Index

Properties

chunkCount

chunkCount: number

chunkSize

chunkSize: number

chunkType

chunkType: string

duplicatePolicy

duplicatePolicy: null | TimeSeriesDuplicatePolicies

firstTimestamp

firstTimestamp: number

labels

labels: { name: string; value: string }[]

lastTimestamp

lastTimestamp: number

memoryUsage

memoryUsage: number

retentionTime

retentionTime: number

rules

rules: { aggregationType: TimeSeriesAggregationType; key: string; timeBucket: number }[]

sourceKey

sourceKey: null | string

totalSamples

totalSamples: number

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands_MGET.MGetReply.html b/documentation/time-series/interfaces/commands_MGET.MGetReply.html new file mode 100644 index 0000000000..8d422f88f4 --- /dev/null +++ b/documentation/time-series/interfaces/commands_MGET.MGetReply.html @@ -0,0 +1 @@ +MGetReply | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/interfaces/commands_MGET_WITHLABELS.MGetWithLabelsReply.html b/documentation/time-series/interfaces/commands_MGET_WITHLABELS.MGetWithLabelsReply.html new file mode 100644 index 0000000000..8cc43a9f1c --- /dev/null +++ b/documentation/time-series/interfaces/commands_MGET_WITHLABELS.MGetWithLabelsReply.html @@ -0,0 +1 @@ +MGetWithLabelsReply | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Interface
  • Property
  • Enumeration

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules.html b/documentation/time-series/modules.html new file mode 100644 index 0000000000..d3b7e4e223 --- /dev/null +++ b/documentation/time-series/modules.html @@ -0,0 +1 @@ +@node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

@node-redis/time-series

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands.html b/documentation/time-series/modules/commands.html new file mode 100644 index 0000000000..bda8bc798c --- /dev/null +++ b/documentation/time-series/modules/commands.html @@ -0,0 +1 @@ +commands | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

Filter

Filter: string | string[]

Labels

Labels: {}

Type declaration

  • [label: string]: string

RawLabels

RawLabels: [label: string, value: string][]

SampleRawReply

SampleRawReply: [timestamp: number, value: string]

SelectedLabels

SelectedLabels: string | string[]

Timestamp

Timestamp: number | Date | string

Properties

default

default: { ADD: commands/ADD; ALTER: commands/ALTER; CREATE: commands/CREATE; CREATERULE: commands/CREATERULE; DECRBY: commands/DECRBY; DEL: commands/DEL; DELETERULE: commands/DELETERULE; GET: commands/GET; INCRBY: commands/INCRBY; INFO: commands/INFO; INFO_DEBUG: commands/INFO_DEBUG; MADD: commands/MADD; MGET: commands/MGET; MGET_WITHLABELS: commands/MGET_WITHLABELS; MRANGE: commands/MRANGE; MRANGE_WITHLABELS: commands/MRANGE_WITHLABELS; MREVRANGE: commands/MREVRANGE; MREVRANGE_WITHLABELS: commands/MREVRANGE_WITHLABELS; QUERYINDEX: commands/QUERYINDEX; RANGE: commands/RANGE; REVRANGE: commands/REVRANGE; add: commands/ADD; alter: commands/ALTER; create: commands/CREATE; createRule: commands/CREATERULE; decrBy: commands/DECRBY; del: commands/DEL; deleteRule: commands/DELETERULE; get: commands/GET; incrBy: commands/INCRBY; info: commands/INFO; infoDebug: commands/INFO_DEBUG; mAdd: commands/MADD; mGet: commands/MGET; mGetWithLabels: commands/MGET_WITHLABELS; mRange: commands/MRANGE; mRangeWithLabels: commands/MRANGE_WITHLABELS; mRevRange: commands/MREVRANGE; mRevRangeWithLabels: commands/MREVRANGE_WITHLABELS; queryIndex: commands/QUERYINDEX; range: commands/RANGE; revRange: commands/REVRANGE }

Functions

pushChunkSizeArgument

  • pushChunkSizeArgument(args: RedisCommandArguments, chunkSize?: number): RedisCommandArguments
  • Parameters

    • args: RedisCommandArguments
    • Optional chunkSize: number

    Returns RedisCommandArguments

pushEncodingArgument

  • pushEncodingArgument(args: RedisCommandArguments, encoding?: TimeSeriesEncoding): RedisCommandArguments

pushFilterArgument

  • pushFilterArgument(args: RedisCommandArguments, filter: string | string[]): RedisCommandArguments
  • Parameters

    • args: RedisCommandArguments
    • filter: string | string[]

    Returns RedisCommandArguments

pushLabelsArgument

  • pushLabelsArgument(args: RedisCommandArguments, labels?: Labels): RedisCommandArguments

pushMRangeArguments

pushMRangeGroupByArguments

  • pushMRangeGroupByArguments(args: RedisCommandArguments, groupBy?: MRangeGroupBy): RedisCommandArguments
  • Parameters

    • args: RedisCommandArguments
    • Optional groupBy: MRangeGroupBy

    Returns RedisCommandArguments

pushMRangeWithLabelsArguments

pushRangeArguments

pushRetentionArgument

  • pushRetentionArgument(args: RedisCommandArguments, retention?: number): RedisCommandArguments
  • Parameters

    • args: RedisCommandArguments
    • Optional retention: number

    Returns RedisCommandArguments

pushWithLabelsArgument

  • pushWithLabelsArgument(args: RedisCommandArguments, selectedLabels?: SelectedLabels): RedisCommandArguments

transformIncrDecrArguments

  • transformIncrDecrArguments(command: "TS.INCRBY" | "TS.DECRBY", key: string, value: number, options?: IncrDecrOptions): RedisCommandArguments

transformLablesReply

transformMRangeReply

  • transformMRangeReply(reply: MRangeRawReply): MRangeReplyItem[]

transformMRangeWithLabelsReply

transformRangeReply

transformSampleReply

transformTimestampArgument

  • transformTimestampArgument(timestamp: Timestamp): string

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_ADD.html b/documentation/time-series/modules/commands_ADD.html new file mode 100644 index 0000000000..4d244d8c9a --- /dev/null +++ b/documentation/time-series/modules/commands_ADD.html @@ -0,0 +1 @@ +commands/ADD | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

Functions

transformArguments

  • transformArguments(key: string, timestamp: Timestamp, value: number, options?: AddOptions): string[]

transformReply

  • transformReply(): number

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_ALTER.html b/documentation/time-series/modules/commands_ALTER.html new file mode 100644 index 0000000000..ec49893b5e --- /dev/null +++ b/documentation/time-series/modules/commands_ALTER.html @@ -0,0 +1 @@ +commands/ALTER | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_CREATE.html b/documentation/time-series/modules/commands_CREATE.html new file mode 100644 index 0000000000..38034b120f --- /dev/null +++ b/documentation/time-series/modules/commands_CREATE.html @@ -0,0 +1 @@ +commands/CREATE | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_CREATERULE.html b/documentation/time-series/modules/commands_CREATERULE.html new file mode 100644 index 0000000000..9cc973f6fb --- /dev/null +++ b/documentation/time-series/modules/commands_CREATERULE.html @@ -0,0 +1 @@ +commands/CREATERULE | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_DECRBY.html b/documentation/time-series/modules/commands_DECRBY.html new file mode 100644 index 0000000000..a10129ed8a --- /dev/null +++ b/documentation/time-series/modules/commands_DECRBY.html @@ -0,0 +1 @@ +commands/DECRBY | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_DEL.html b/documentation/time-series/modules/commands_DEL.html new file mode 100644 index 0000000000..a484ffe16c --- /dev/null +++ b/documentation/time-series/modules/commands_DEL.html @@ -0,0 +1 @@ +commands/DEL | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_DELETERULE.html b/documentation/time-series/modules/commands_DELETERULE.html new file mode 100644 index 0000000000..20e69efc4e --- /dev/null +++ b/documentation/time-series/modules/commands_DELETERULE.html @@ -0,0 +1 @@ +commands/DELETERULE | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_GET.html b/documentation/time-series/modules/commands_GET.html new file mode 100644 index 0000000000..f2bdef798b --- /dev/null +++ b/documentation/time-series/modules/commands_GET.html @@ -0,0 +1 @@ +commands/GET | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_INCRBY.html b/documentation/time-series/modules/commands_INCRBY.html new file mode 100644 index 0000000000..7ddd3f1a83 --- /dev/null +++ b/documentation/time-series/modules/commands_INCRBY.html @@ -0,0 +1 @@ +commands/INCRBY | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_INFO.html b/documentation/time-series/modules/commands_INFO.html new file mode 100644 index 0000000000..c2c28ff5dd --- /dev/null +++ b/documentation/time-series/modules/commands_INFO.html @@ -0,0 +1 @@ +commands/INFO | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

InfoRawReply

InfoRawReply: [_: string, totalSamples: number, _: string, memoryUsage: number, _: string, firstTimestamp: number, _: string, lastTimestamp: number, _: string, retentionTime: number, _: string, chunkCount: number, _: string, chunkSize: number, _: string, chunkType: string, _: string, duplicatePolicy: TimeSeriesDuplicatePolicies | null, _: string, labels: [name: string, value: string][], _: string, sourceKey: string | null, _: string, rules: [key: string, timeBucket: number, aggregationType: TimeSeriesAggregationType][]]

Variables

FIRST_KEY_INDEX

FIRST_KEY_INDEX: 1 = 1

IS_READ_ONLY

IS_READ_ONLY: true = true

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_INFO_DEBUG.html b/documentation/time-series/modules/commands_INFO_DEBUG.html new file mode 100644 index 0000000000..d9e5685788 --- /dev/null +++ b/documentation/time-series/modules/commands_INFO_DEBUG.html @@ -0,0 +1 @@ +commands/INFO_DEBUG | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

References

FIRST_KEY_INDEX

Re-exports FIRST_KEY_INDEX

IS_READ_ONLY

Re-exports IS_READ_ONLY

Functions

transformArguments

  • transformArguments(key: string): string[]

transformReply

  • transformReply(rawReply: [_: string, totalSamples: number, _: string, memoryUsage: number, _: string, firstTimestamp: number, _: string, lastTimestamp: number, _: string, retentionTime: number, _: string, chunkCount: number, _: string, chunkSize: number, _: string, chunkType: string, _: string, duplicatePolicy: null | TimeSeriesDuplicatePolicies, _: string, labels: [name: string, value: string][]]): InfoDebugReply
  • Parameters

    • rawReply: [_: string, totalSamples: number, _: string, memoryUsage: number, _: string, firstTimestamp: number, _: string, lastTimestamp: number, _: string, retentionTime: number, _: string, chunkCount: number, _: string, chunkSize: number, _: string, chunkType: string, _: string, duplicatePolicy: null | TimeSeriesDuplicatePolicies, _: string, labels: [name: string, value: string][]]

    Returns InfoDebugReply

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_MADD.html b/documentation/time-series/modules/commands_MADD.html new file mode 100644 index 0000000000..bef997bc0f --- /dev/null +++ b/documentation/time-series/modules/commands_MADD.html @@ -0,0 +1 @@ +commands/MADD | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_MGET.html b/documentation/time-series/modules/commands_MGET.html new file mode 100644 index 0000000000..fb9e167e2d --- /dev/null +++ b/documentation/time-series/modules/commands_MGET.html @@ -0,0 +1 @@ +commands/MGET | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_MGET_WITHLABELS.html b/documentation/time-series/modules/commands_MGET_WITHLABELS.html new file mode 100644 index 0000000000..402b4913ea --- /dev/null +++ b/documentation/time-series/modules/commands_MGET_WITHLABELS.html @@ -0,0 +1 @@ +commands/MGET_WITHLABELS | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_MRANGE.html b/documentation/time-series/modules/commands_MRANGE.html new file mode 100644 index 0000000000..bea784b2b7 --- /dev/null +++ b/documentation/time-series/modules/commands_MRANGE.html @@ -0,0 +1 @@ +commands/MRANGE | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_MRANGE_WITHLABELS.html b/documentation/time-series/modules/commands_MRANGE_WITHLABELS.html new file mode 100644 index 0000000000..02bc071a6a --- /dev/null +++ b/documentation/time-series/modules/commands_MRANGE_WITHLABELS.html @@ -0,0 +1 @@ +commands/MRANGE_WITHLABELS | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/MRANGE_WITHLABELS

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_MREVRANGE.html b/documentation/time-series/modules/commands_MREVRANGE.html new file mode 100644 index 0000000000..1959c83778 --- /dev/null +++ b/documentation/time-series/modules/commands_MREVRANGE.html @@ -0,0 +1 @@ +commands/MREVRANGE | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_MREVRANGE_WITHLABELS.html b/documentation/time-series/modules/commands_MREVRANGE_WITHLABELS.html new file mode 100644 index 0000000000..acff124191 --- /dev/null +++ b/documentation/time-series/modules/commands_MREVRANGE_WITHLABELS.html @@ -0,0 +1 @@ +commands/MREVRANGE_WITHLABELS | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module commands/MREVRANGE_WITHLABELS

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_QUERYINDEX.html b/documentation/time-series/modules/commands_QUERYINDEX.html new file mode 100644 index 0000000000..aba162800e --- /dev/null +++ b/documentation/time-series/modules/commands_QUERYINDEX.html @@ -0,0 +1 @@ +commands/QUERYINDEX | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_RANGE.html b/documentation/time-series/modules/commands_RANGE.html new file mode 100644 index 0000000000..75722dc3e2 --- /dev/null +++ b/documentation/time-series/modules/commands_RANGE.html @@ -0,0 +1 @@ +commands/RANGE | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/commands_REVRANGE.html b/documentation/time-series/modules/commands_REVRANGE.html new file mode 100644 index 0000000000..7968e05b88 --- /dev/null +++ b/documentation/time-series/modules/commands_REVRANGE.html @@ -0,0 +1 @@ +commands/REVRANGE | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/documentation/time-series/modules/index.html b/documentation/time-series/modules/index.html new file mode 100644 index 0000000000..f5d61ea902 --- /dev/null +++ b/documentation/time-series/modules/index.html @@ -0,0 +1 @@ +index | @node-redis/time-series
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Function
  • Type alias
  • Enumeration
  • Interface

Settings

Theme

Generated using TypeDoc

\ No newline at end of file