From 5820c7fa0a2968328565c3d1e2d26961b66405d8 Mon Sep 17 00:00:00 2001 From: artegoser Date: Wed, 9 Aug 2023 07:06:05 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20artegose?= =?UTF-8?q?r/piped-api@33d64ddfa1201018d06998673260e329ca8511c2=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .nojekyll | 1 + assets/highlight.css | 78 ++ assets/main.js | 58 + assets/search.js | 1 + assets/style.css | 1367 ++++++++++++++++++++++++ classes/PipedAPI.html | 365 +++++++ index.html | 54 + interfaces/Types.AudioStream.html | 155 +++ interfaces/Types.Channel.html | 148 +++ interfaces/Types.Comment.html | 148 +++ interfaces/Types.Comments.html | 99 ++ interfaces/Types.NextPageChannel.html | 92 ++ interfaces/Types.NextPagePlaylist.html | 92 ++ interfaces/Types.Playlist.html | 141 +++ interfaces/Types.Search.html | 106 ++ interfaces/Types.Segments.html | 113 ++ interfaces/Types.Sponsors.html | 99 ++ interfaces/Types.Streams.html | 218 ++++ interfaces/Types.Subtitle.html | 113 ++ interfaces/Types.Video.html | 176 +++ interfaces/Types.VideoStream.html | 176 +++ modules.html | 48 + modules/Types.html | 79 ++ 23 files changed, 3927 insertions(+) create mode 100644 .nojekyll create mode 100644 assets/highlight.css create mode 100644 assets/main.js create mode 100644 assets/search.js create mode 100644 assets/style.css create mode 100644 classes/PipedAPI.html create mode 100644 index.html create mode 100644 interfaces/Types.AudioStream.html create mode 100644 interfaces/Types.Channel.html create mode 100644 interfaces/Types.Comment.html create mode 100644 interfaces/Types.Comments.html create mode 100644 interfaces/Types.NextPageChannel.html create mode 100644 interfaces/Types.NextPagePlaylist.html create mode 100644 interfaces/Types.Playlist.html create mode 100644 interfaces/Types.Search.html create mode 100644 interfaces/Types.Segments.html create mode 100644 interfaces/Types.Sponsors.html create mode 100644 interfaces/Types.Streams.html create mode 100644 interfaces/Types.Subtitle.html create mode 100644 interfaces/Types.Video.html create mode 100644 interfaces/Types.VideoStream.html create mode 100644 modules.html create mode 100644 modules/Types.html diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e2ac661 --- /dev/null +++ b/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/assets/highlight.css b/assets/highlight.css new file mode 100644 index 0000000..e99f111 --- /dev/null +++ b/assets/highlight.css @@ -0,0 +1,78 @@ +:root { + --light-hl-0: #795E26; + --dark-hl-0: #DCDCAA; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --light-hl-3: #AF00DB; + --dark-hl-3: #C586C0; + --light-hl-4: #001080; + --dark-hl-4: #9CDCFE; + --light-hl-5: #0000FF; + --dark-hl-5: #569CD6; + --light-hl-6: #0070C1; + --dark-hl-6: #4FC1FF; + --light-hl-7: #098658; + --dark-hl-7: #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); + --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); +} } + +:root[data-theme='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); +} + +:root[data-theme='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/assets/main.js b/assets/main.js new file mode 100644 index 0000000..4c8fa61 --- /dev/null +++ b/assets/main.js @@ -0,0 +1,58 @@ +"use strict"; +"use strict";(()=>{var Se=Object.create;var re=Object.defineProperty;var we=Object.getOwnPropertyDescriptor;var Te=Object.getOwnPropertyNames;var ke=Object.getPrototypeOf,Qe=Object.prototype.hasOwnProperty;var Pe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Ie=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Te(e))!Qe.call(t,i)&&i!==r&&re(t,i,{get:()=>e[i],enumerable:!(n=we(e,i))||n.enumerable});return t};var Ce=(t,e,r)=>(r=t!=null?Se(ke(t)):{},Ie(e||!t||!t.__esModule?re(r,"default",{value:t,enumerable:!0}):r,t));var ae=Pe((se,oe)=>{(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 d=t.utils.clone(r)||{};d.position=[a,u],d.index=s.length,s.push(new t.Token(n.slice(a,o),d))}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(ol?d+=2:a==l&&(r+=n[u+1]*i[d+1],u+=2,d+=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 l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,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 u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),m=s.str.charAt(1),y;m in s.node.edges?y=s.node.edges[m]:(y=new t.TokenSet,s.node.edges[m]=y),s.str.length==1&&(y.final=!0),i.push({node:y,editsRemaining:s.editsRemaining-1,str:d+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),l=0;l1?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 se=="object"?oe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ne=[];function G(t,e){ne.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureActivePageVisible(),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible())}createComponents(e){ne.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n,app:this}),n.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),r=e?.parentElement;for(;r&&!r.classList.contains(".tsd-navigation");)r instanceof HTMLDetailsElement&&(r.open=!0),r=r.parentElement;if(e){let n=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=n}}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let r=e.parentElement;for(;r&&r.tagName!=="SECTION";)r=r.parentElement;if(r&&r.offsetParent==null){this.alwaysVisibleMember=r,r.classList.add("always-visible");let n=document.createElement("p");n.classList.add("warning"),n.textContent="This member is normally hidden due to your filter settings.",r.prepend(n)}}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let r;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent="Copied!",e.classList.add("visible"),clearTimeout(r),r=setTimeout(()=>{e.classList.remove("visible"),r=setTimeout(()=>{e.textContent="Copy"},100)},1e3)})})}};var ie=(t,e=100)=>{let r;return()=>{clearTimeout(r),r=setTimeout(()=>t(),e)}};var ce=Ce(ae());function de(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("tsd-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+"/"};Oe(t,n,r,s)}function Oe(t,e,r,n){r.addEventListener("input",ie(()=>{Re(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Fe(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?ue(e,-1):s.key==="ArrowDown"?ue(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 _e(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ce.Index.load(window.searchData.index))}function Re(t,e,r,n){if(_e(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o${le(l.parent,i)}.${u}`);let d=document.createElement("li");d.classList.value=l.classes??"";let m=document.createElement("a");m.href=n.base+l.url,m.innerHTML=u,d.append(m),e.appendChild(d)}}function ue(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??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling??void 0;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Fe(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 le(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(K(t.substring(s,o)),`${K(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(K(t.substring(s))),i.join("")}var Me={"&":"&","<":"<",">":">","'":"'",'"':"""};function K(t){return t.replace(/[&<>"'"]/g,e=>Me[e])}var P=class{constructor(e){this.el=e.el,this.app=e.app}};var M="mousedown",fe="mousemove",N="mouseup",J={x:0,y:0},he=!1,ee=!1,De=!1,D=!1,pe=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(pe?"is-mobile":"not-mobile");pe&&"ontouchstart"in document.documentElement&&(De=!0,M="touchstart",fe="touchmove",N="touchend");document.addEventListener(M,t=>{ee=!0,D=!1;let e=M=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(fe,t=>{if(ee&&!D){let e=M=="touchstart"?t.targetTouches[0]:t,r=J.x-(e.pageX||0),n=J.y-(e.pageY||0);D=Math.sqrt(r*r+n*n)>10}});document.addEventListener(N,()=>{ee=!1});document.addEventListener("click",t=>{he&&(t.preventDefault(),t.stopImmediatePropagation(),he=!1)});var X=class extends P{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(N,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(M,n=>this.onDocumentPointerDown(n)),document.addEventListener(N,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){D||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!D&&this.active&&r.target.closest(".col-sidebar")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substring(0,i.indexOf("#"))),n.href.substring(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te;try{te=localStorage}catch{te={getItem(){return null},setItem(){}}}var Q=te;var me=document.head.appendChild(document.createElement("style"));me.dataset.for="filters";var Y=class extends P{constructor(r){super(r);this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),me.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`}fromLocalStorage(){let r=Q.getItem(this.key);return r?r==="true":this.el.checked}setLocalStorage(r){Q.setItem(this.key,r.toString()),this.value=r,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let n=Array.from(r.querySelectorAll(".tsd-index-link")).every(i=>i.offsetParent==null);r.style.display=n?"none":"block"})}};var Z=class extends P{constructor(r){super(r);this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update()),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function ve(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,ye(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),ye(t.value)})}function ye(t){document.documentElement.dataset.theme=t}de();G(X,"a[data-toggle]");G(Z,".tsd-index-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var ge=document.getElementById("tsd-theme");ge&&ve(ge);var Ae=new U;Object.defineProperty(window,"app",{value:Ae});document.querySelectorAll("summary a").forEach(t=>{t.addEventListener("click",()=>{location.assign(t.href)})});})(); +/*! Bundled license information: + +lunr/lunr.js: + (** + * 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 + *) + (*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Pipeline + * 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.trimmer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + *) +*/ diff --git a/assets/search.js b/assets/search.js new file mode 100644 index 0000000..71659a3 --- /dev/null +++ b/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"rows\":[{\"kind\":128,\"name\":\"PipedAPI\",\"url\":\"classes/PipedAPI.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PipedAPI.html#constructor\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":1024,\"name\":\"host\",\"url\":\"classes/PipedAPI.html#host\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"_get\",\"url\":\"classes/PipedAPI.html#_get\",\"classes\":\"tsd-is-private\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"trending\",\"url\":\"classes/PipedAPI.html#trending\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"streams\",\"url\":\"classes/PipedAPI.html#streams\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"comments\",\"url\":\"classes/PipedAPI.html#comments\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"channel\",\"url\":\"classes/PipedAPI.html#channel\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"channelByName\",\"url\":\"classes/PipedAPI.html#channelByName\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"user\",\"url\":\"classes/PipedAPI.html#user\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"playlist\",\"url\":\"classes/PipedAPI.html#playlist\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"suggestions\",\"url\":\"classes/PipedAPI.html#suggestions\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"sponsors\",\"url\":\"classes/PipedAPI.html#sponsors\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":2048,\"name\":\"search\",\"url\":\"classes/PipedAPI.html#search\",\"classes\":\"\",\"parent\":\"PipedAPI\"},{\"kind\":4,\"name\":\"Types\",\"url\":\"modules/Types.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"Streams\",\"url\":\"interfaces/Types.Streams.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"audioStreams\",\"url\":\"interfaces/Types.Streams.html#audioStreams\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"dash\",\"url\":\"interfaces/Types.Streams.html#dash\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/Types.Streams.html#description\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"dislikes\",\"url\":\"interfaces/Types.Streams.html#dislikes\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/Types.Streams.html#duration\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"hls\",\"url\":\"interfaces/Types.Streams.html#hls\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"lbryId\",\"url\":\"interfaces/Types.Streams.html#lbryId\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"likes\",\"url\":\"interfaces/Types.Streams.html#likes\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"livestream\",\"url\":\"interfaces/Types.Streams.html#livestream\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"proxyUrl\",\"url\":\"interfaces/Types.Streams.html#proxyUrl\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"relatedStreams\",\"url\":\"interfaces/Types.Streams.html#relatedStreams\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"subtitles\",\"url\":\"interfaces/Types.Streams.html#subtitles\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"thumbnailUrl\",\"url\":\"interfaces/Types.Streams.html#thumbnailUrl\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/Types.Streams.html#title\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"uploadedDate\",\"url\":\"interfaces/Types.Streams.html#uploadedDate\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"uploader\",\"url\":\"interfaces/Types.Streams.html#uploader\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"uploaderUrl\",\"url\":\"interfaces/Types.Streams.html#uploaderUrl\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"uploaderVerified\",\"url\":\"interfaces/Types.Streams.html#uploaderVerified\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"videoStreams\",\"url\":\"interfaces/Types.Streams.html#videoStreams\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":1024,\"name\":\"views\",\"url\":\"interfaces/Types.Streams.html#views\",\"classes\":\"\",\"parent\":\"Types.Streams\"},{\"kind\":256,\"name\":\"AudioStream\",\"url\":\"interfaces/Types.AudioStream.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"bitrate\",\"url\":\"interfaces/Types.AudioStream.html#bitrate\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"codec\",\"url\":\"interfaces/Types.AudioStream.html#codec\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/Types.AudioStream.html#format\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"indexEnd\",\"url\":\"interfaces/Types.AudioStream.html#indexEnd\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"indexStart\",\"url\":\"interfaces/Types.AudioStream.html#indexStart\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"initStart\",\"url\":\"interfaces/Types.AudioStream.html#initStart\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"initEnd\",\"url\":\"interfaces/Types.AudioStream.html#initEnd\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"mimeType\",\"url\":\"interfaces/Types.AudioStream.html#mimeType\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"quality\",\"url\":\"interfaces/Types.AudioStream.html#quality\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/Types.AudioStream.html#url\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":1024,\"name\":\"videoOnly\",\"url\":\"interfaces/Types.AudioStream.html#videoOnly\",\"classes\":\"\",\"parent\":\"Types.AudioStream\"},{\"kind\":256,\"name\":\"Subtitle\",\"url\":\"interfaces/Types.Subtitle.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"autoGenerated\",\"url\":\"interfaces/Types.Subtitle.html#autoGenerated\",\"classes\":\"\",\"parent\":\"Types.Subtitle\"},{\"kind\":1024,\"name\":\"code\",\"url\":\"interfaces/Types.Subtitle.html#code\",\"classes\":\"\",\"parent\":\"Types.Subtitle\"},{\"kind\":1024,\"name\":\"mimeType\",\"url\":\"interfaces/Types.Subtitle.html#mimeType\",\"classes\":\"\",\"parent\":\"Types.Subtitle\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Types.Subtitle.html#name\",\"classes\":\"\",\"parent\":\"Types.Subtitle\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/Types.Subtitle.html#url\",\"classes\":\"\",\"parent\":\"Types.Subtitle\"},{\"kind\":256,\"name\":\"VideoStream\",\"url\":\"interfaces/Types.VideoStream.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"bitrate\",\"url\":\"interfaces/Types.VideoStream.html#bitrate\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"codec\",\"url\":\"interfaces/Types.VideoStream.html#codec\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"format\",\"url\":\"interfaces/Types.VideoStream.html#format\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"fps\",\"url\":\"interfaces/Types.VideoStream.html#fps\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"height\",\"url\":\"interfaces/Types.VideoStream.html#height\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"indexEnd\",\"url\":\"interfaces/Types.VideoStream.html#indexEnd\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"indexStart\",\"url\":\"interfaces/Types.VideoStream.html#indexStart\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"initStart\",\"url\":\"interfaces/Types.VideoStream.html#initStart\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"initEnd\",\"url\":\"interfaces/Types.VideoStream.html#initEnd\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"mimeType\",\"url\":\"interfaces/Types.VideoStream.html#mimeType\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"quality\",\"url\":\"interfaces/Types.VideoStream.html#quality\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/Types.VideoStream.html#url\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"videoOnly\",\"url\":\"interfaces/Types.VideoStream.html#videoOnly\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":1024,\"name\":\"width\",\"url\":\"interfaces/Types.VideoStream.html#width\",\"classes\":\"\",\"parent\":\"Types.VideoStream\"},{\"kind\":256,\"name\":\"Comments\",\"url\":\"interfaces/Types.Comments.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"comments\",\"url\":\"interfaces/Types.Comments.html#comments\",\"classes\":\"\",\"parent\":\"Types.Comments\"},{\"kind\":1024,\"name\":\"disabled\",\"url\":\"interfaces/Types.Comments.html#disabled\",\"classes\":\"\",\"parent\":\"Types.Comments\"},{\"kind\":1024,\"name\":\"nextpage\",\"url\":\"interfaces/Types.Comments.html#nextpage\",\"classes\":\"\",\"parent\":\"Types.Comments\"},{\"kind\":256,\"name\":\"Comment\",\"url\":\"interfaces/Types.Comment.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"author\",\"url\":\"interfaces/Types.Comment.html#author\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"commentId\",\"url\":\"interfaces/Types.Comment.html#commentId\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"commentText\",\"url\":\"interfaces/Types.Comment.html#commentText\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"commentedTime\",\"url\":\"interfaces/Types.Comment.html#commentedTime\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"commentorUrl\",\"url\":\"interfaces/Types.Comment.html#commentorUrl\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"hearted\",\"url\":\"interfaces/Types.Comment.html#hearted\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"likeCount\",\"url\":\"interfaces/Types.Comment.html#likeCount\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"pinned\",\"url\":\"interfaces/Types.Comment.html#pinned\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"thumbnail\",\"url\":\"interfaces/Types.Comment.html#thumbnail\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":1024,\"name\":\"verified\",\"url\":\"interfaces/Types.Comment.html#verified\",\"classes\":\"\",\"parent\":\"Types.Comment\"},{\"kind\":256,\"name\":\"Video\",\"url\":\"interfaces/Types.Video.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"duration\",\"url\":\"interfaces/Types.Video.html#duration\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"thumbnail\",\"url\":\"interfaces/Types.Video.html#thumbnail\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/Types.Video.html#title\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"uploadedDate\",\"url\":\"interfaces/Types.Video.html#uploadedDate\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"uploaderAvatar\",\"url\":\"interfaces/Types.Video.html#uploaderAvatar\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"uploaderUrl\",\"url\":\"interfaces/Types.Video.html#uploaderUrl\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"uploaderVerified\",\"url\":\"interfaces/Types.Video.html#uploaderVerified\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"uploaderName\",\"url\":\"interfaces/Types.Video.html#uploaderName\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"url\",\"url\":\"interfaces/Types.Video.html#url\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"views\",\"url\":\"interfaces/Types.Video.html#views\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"isShort\",\"url\":\"interfaces/Types.Video.html#isShort\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"uploaded\",\"url\":\"interfaces/Types.Video.html#uploaded\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"shortDescription\",\"url\":\"interfaces/Types.Video.html#shortDescription\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Types.Video.html#type\",\"classes\":\"\",\"parent\":\"Types.Video\"},{\"kind\":256,\"name\":\"Channel\",\"url\":\"interfaces/Types.Channel.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"avatarUrl\",\"url\":\"interfaces/Types.Channel.html#avatarUrl\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"bannerUrl\",\"url\":\"interfaces/Types.Channel.html#bannerUrl\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/Types.Channel.html#description\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/Types.Channel.html#id\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Types.Channel.html#name\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"nextpage\",\"url\":\"interfaces/Types.Channel.html#nextpage\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"relatedStreams\",\"url\":\"interfaces/Types.Channel.html#relatedStreams\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"subscriberCount\",\"url\":\"interfaces/Types.Channel.html#subscriberCount\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"verified\",\"url\":\"interfaces/Types.Channel.html#verified\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Types.Channel.html#type\",\"classes\":\"\",\"parent\":\"Types.Channel\"},{\"kind\":256,\"name\":\"NextPageChannel\",\"url\":\"interfaces/Types.NextPageChannel.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"nextpage\",\"url\":\"interfaces/Types.NextPageChannel.html#nextpage\",\"classes\":\"\",\"parent\":\"Types.NextPageChannel\"},{\"kind\":1024,\"name\":\"relatedStreams\",\"url\":\"interfaces/Types.NextPageChannel.html#relatedStreams\",\"classes\":\"\",\"parent\":\"Types.NextPageChannel\"},{\"kind\":256,\"name\":\"Playlist\",\"url\":\"interfaces/Types.Playlist.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"bannerUrl\",\"url\":\"interfaces/Types.Playlist.html#bannerUrl\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Types.Playlist.html#name\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":1024,\"name\":\"nextpage\",\"url\":\"interfaces/Types.Playlist.html#nextpage\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":1024,\"name\":\"relatedStreams\",\"url\":\"interfaces/Types.Playlist.html#relatedStreams\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":1024,\"name\":\"thumbnailUrl\",\"url\":\"interfaces/Types.Playlist.html#thumbnailUrl\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":1024,\"name\":\"uploader\",\"url\":\"interfaces/Types.Playlist.html#uploader\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":1024,\"name\":\"uploaderAvatar\",\"url\":\"interfaces/Types.Playlist.html#uploaderAvatar\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":1024,\"name\":\"uploaderUrl\",\"url\":\"interfaces/Types.Playlist.html#uploaderUrl\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":1024,\"name\":\"videos\",\"url\":\"interfaces/Types.Playlist.html#videos\",\"classes\":\"\",\"parent\":\"Types.Playlist\"},{\"kind\":256,\"name\":\"NextPagePlaylist\",\"url\":\"interfaces/Types.NextPagePlaylist.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"nextpage\",\"url\":\"interfaces/Types.NextPagePlaylist.html#nextpage\",\"classes\":\"\",\"parent\":\"Types.NextPagePlaylist\"},{\"kind\":1024,\"name\":\"relatedStreams\",\"url\":\"interfaces/Types.NextPagePlaylist.html#relatedStreams\",\"classes\":\"\",\"parent\":\"Types.NextPagePlaylist\"},{\"kind\":256,\"name\":\"Sponsors\",\"url\":\"interfaces/Types.Sponsors.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"hash\",\"url\":\"interfaces/Types.Sponsors.html#hash\",\"classes\":\"\",\"parent\":\"Types.Sponsors\"},{\"kind\":1024,\"name\":\"segments\",\"url\":\"interfaces/Types.Sponsors.html#segments\",\"classes\":\"\",\"parent\":\"Types.Sponsors\"},{\"kind\":1024,\"name\":\"videoId\",\"url\":\"interfaces/Types.Sponsors.html#videoId\",\"classes\":\"\",\"parent\":\"Types.Sponsors\"},{\"kind\":256,\"name\":\"Segments\",\"url\":\"interfaces/Types.Segments.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"UUID\",\"url\":\"interfaces/Types.Segments.html#UUID\",\"classes\":\"\",\"parent\":\"Types.Segments\"},{\"kind\":1024,\"name\":\"actionType\",\"url\":\"interfaces/Types.Segments.html#actionType\",\"classes\":\"\",\"parent\":\"Types.Segments\"},{\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/Types.Segments.html#category\",\"classes\":\"\",\"parent\":\"Types.Segments\"},{\"kind\":1024,\"name\":\"segment\",\"url\":\"interfaces/Types.Segments.html#segment\",\"classes\":\"\",\"parent\":\"Types.Segments\"},{\"kind\":1024,\"name\":\"videoDuration\",\"url\":\"interfaces/Types.Segments.html#videoDuration\",\"classes\":\"\",\"parent\":\"Types.Segments\"},{\"kind\":256,\"name\":\"Search\",\"url\":\"interfaces/Types.Search.html\",\"classes\":\"\",\"parent\":\"Types\"},{\"kind\":1024,\"name\":\"nextpage\",\"url\":\"interfaces/Types.Search.html#nextpage\",\"classes\":\"\",\"parent\":\"Types.Search\"},{\"kind\":1024,\"name\":\"items\",\"url\":\"interfaces/Types.Search.html#items\",\"classes\":\"\",\"parent\":\"Types.Search\"},{\"kind\":1024,\"name\":\"corrected\",\"url\":\"interfaces/Types.Search.html#corrected\",\"classes\":\"\",\"parent\":\"Types.Search\"},{\"kind\":1024,\"name\":\"suggestion\",\"url\":\"interfaces/Types.Search.html#suggestion\",\"classes\":\"\",\"parent\":\"Types.Search\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,45.504]],[\"comment/0\",[]],[\"name/1\",[1,45.504]],[\"comment/1\",[]],[\"name/2\",[2,45.504]],[\"comment/2\",[]],[\"name/3\",[3,45.504]],[\"comment/3\",[]],[\"name/4\",[4,45.504]],[\"comment/4\",[]],[\"name/5\",[5,40.395]],[\"comment/5\",[]],[\"name/6\",[6,37.031]],[\"comment/6\",[]],[\"name/7\",[7,40.395]],[\"comment/7\",[]],[\"name/8\",[8,45.504]],[\"comment/8\",[]],[\"name/9\",[9,45.504]],[\"comment/9\",[]],[\"name/10\",[10,40.395]],[\"comment/10\",[]],[\"name/11\",[11,45.504]],[\"comment/11\",[]],[\"name/12\",[12,40.395]],[\"comment/12\",[]],[\"name/13\",[13,40.395]],[\"comment/13\",[]],[\"name/14\",[14,45.504]],[\"comment/14\",[]],[\"name/15\",[5,40.395]],[\"comment/15\",[]],[\"name/16\",[15,45.504]],[\"comment/16\",[]],[\"name/17\",[16,45.504]],[\"comment/17\",[]],[\"name/18\",[17,40.395]],[\"comment/18\",[]],[\"name/19\",[18,45.504]],[\"comment/19\",[]],[\"name/20\",[19,40.395]],[\"comment/20\",[]],[\"name/21\",[20,45.504]],[\"comment/21\",[]],[\"name/22\",[21,45.504]],[\"comment/22\",[]],[\"name/23\",[22,45.504]],[\"comment/23\",[]],[\"name/24\",[23,45.504]],[\"comment/24\",[]],[\"name/25\",[24,45.504]],[\"comment/25\",[]],[\"name/26\",[25,32.511]],[\"comment/26\",[]],[\"name/27\",[26,45.504]],[\"comment/27\",[]],[\"name/28\",[27,40.395]],[\"comment/28\",[]],[\"name/29\",[28,40.395]],[\"comment/29\",[]],[\"name/30\",[29,40.395]],[\"comment/30\",[]],[\"name/31\",[30,40.395]],[\"comment/31\",[]],[\"name/32\",[31,37.031]],[\"comment/32\",[]],[\"name/33\",[32,40.395]],[\"comment/33\",[]],[\"name/34\",[33,45.504]],[\"comment/34\",[]],[\"name/35\",[34,40.395]],[\"comment/35\",[]],[\"name/36\",[35,45.504]],[\"comment/36\",[]],[\"name/37\",[36,40.395]],[\"comment/37\",[]],[\"name/38\",[37,40.395]],[\"comment/38\",[]],[\"name/39\",[38,40.395]],[\"comment/39\",[]],[\"name/40\",[39,40.395]],[\"comment/40\",[]],[\"name/41\",[40,40.395]],[\"comment/41\",[]],[\"name/42\",[41,40.395]],[\"comment/42\",[]],[\"name/43\",[42,40.395]],[\"comment/43\",[]],[\"name/44\",[43,37.031]],[\"comment/44\",[]],[\"name/45\",[44,40.395]],[\"comment/45\",[]],[\"name/46\",[45,34.517]],[\"comment/46\",[]],[\"name/47\",[46,40.395]],[\"comment/47\",[]],[\"name/48\",[47,45.504]],[\"comment/48\",[]],[\"name/49\",[48,45.504]],[\"comment/49\",[]],[\"name/50\",[49,45.504]],[\"comment/50\",[]],[\"name/51\",[43,37.031]],[\"comment/51\",[]],[\"name/52\",[50,37.031]],[\"comment/52\",[]],[\"name/53\",[45,34.517]],[\"comment/53\",[]],[\"name/54\",[51,45.504]],[\"comment/54\",[]],[\"name/55\",[36,40.395]],[\"comment/55\",[]],[\"name/56\",[37,40.395]],[\"comment/56\",[]],[\"name/57\",[38,40.395]],[\"comment/57\",[]],[\"name/58\",[52,45.504]],[\"comment/58\",[]],[\"name/59\",[53,45.504]],[\"comment/59\",[]],[\"name/60\",[39,40.395]],[\"comment/60\",[]],[\"name/61\",[40,40.395]],[\"comment/61\",[]],[\"name/62\",[41,40.395]],[\"comment/62\",[]],[\"name/63\",[42,40.395]],[\"comment/63\",[]],[\"name/64\",[43,37.031]],[\"comment/64\",[]],[\"name/65\",[44,40.395]],[\"comment/65\",[]],[\"name/66\",[45,34.517]],[\"comment/66\",[]],[\"name/67\",[46,40.395]],[\"comment/67\",[]],[\"name/68\",[54,45.504]],[\"comment/68\",[]],[\"name/69\",[6,37.031]],[\"comment/69\",[]],[\"name/70\",[6,37.031]],[\"comment/70\",[]],[\"name/71\",[55,45.504]],[\"comment/71\",[]],[\"name/72\",[56,30.84]],[\"comment/72\",[]],[\"name/73\",[57,45.504]],[\"comment/73\",[]],[\"name/74\",[58,45.504]],[\"comment/74\",[]],[\"name/75\",[59,45.504]],[\"comment/75\",[]],[\"name/76\",[60,45.504]],[\"comment/76\",[]],[\"name/77\",[61,45.504]],[\"comment/77\",[]],[\"name/78\",[62,45.504]],[\"comment/78\",[]],[\"name/79\",[63,45.504]],[\"comment/79\",[]],[\"name/80\",[64,45.504]],[\"comment/80\",[]],[\"name/81\",[65,45.504]],[\"comment/81\",[]],[\"name/82\",[66,40.395]],[\"comment/82\",[]],[\"name/83\",[67,40.395]],[\"comment/83\",[]],[\"name/84\",[68,45.504]],[\"comment/84\",[]],[\"name/85\",[19,40.395]],[\"comment/85\",[]],[\"name/86\",[66,40.395]],[\"comment/86\",[]],[\"name/87\",[28,40.395]],[\"comment/87\",[]],[\"name/88\",[29,40.395]],[\"comment/88\",[]],[\"name/89\",[69,40.395]],[\"comment/89\",[]],[\"name/90\",[31,37.031]],[\"comment/90\",[]],[\"name/91\",[32,40.395]],[\"comment/91\",[]],[\"name/92\",[70,45.504]],[\"comment/92\",[]],[\"name/93\",[45,34.517]],[\"comment/93\",[]],[\"name/94\",[34,40.395]],[\"comment/94\",[]],[\"name/95\",[71,45.504]],[\"comment/95\",[]],[\"name/96\",[72,45.504]],[\"comment/96\",[]],[\"name/97\",[73,45.504]],[\"comment/97\",[]],[\"name/98\",[74,40.395]],[\"comment/98\",[]],[\"name/99\",[7,40.395]],[\"comment/99\",[]],[\"name/100\",[75,45.504]],[\"comment/100\",[]],[\"name/101\",[76,40.395]],[\"comment/101\",[]],[\"name/102\",[17,40.395]],[\"comment/102\",[]],[\"name/103\",[77,45.504]],[\"comment/103\",[]],[\"name/104\",[50,37.031]],[\"comment/104\",[]],[\"name/105\",[56,30.84]],[\"comment/105\",[]],[\"name/106\",[25,32.511]],[\"comment/106\",[]],[\"name/107\",[78,45.504]],[\"comment/107\",[]],[\"name/108\",[67,40.395]],[\"comment/108\",[]],[\"name/109\",[74,40.395]],[\"comment/109\",[]],[\"name/110\",[79,45.504]],[\"comment/110\",[]],[\"name/111\",[56,30.84]],[\"comment/111\",[]],[\"name/112\",[25,32.511]],[\"comment/112\",[]],[\"name/113\",[10,40.395]],[\"comment/113\",[]],[\"name/114\",[76,40.395]],[\"comment/114\",[]],[\"name/115\",[50,37.031]],[\"comment/115\",[]],[\"name/116\",[56,30.84]],[\"comment/116\",[]],[\"name/117\",[25,32.511]],[\"comment/117\",[]],[\"name/118\",[27,40.395]],[\"comment/118\",[]],[\"name/119\",[30,40.395]],[\"comment/119\",[]],[\"name/120\",[69,40.395]],[\"comment/120\",[]],[\"name/121\",[31,37.031]],[\"comment/121\",[]],[\"name/122\",[80,45.504]],[\"comment/122\",[]],[\"name/123\",[81,45.504]],[\"comment/123\",[]],[\"name/124\",[56,30.84]],[\"comment/124\",[]],[\"name/125\",[25,32.511]],[\"comment/125\",[]],[\"name/126\",[12,40.395]],[\"comment/126\",[]],[\"name/127\",[82,45.504]],[\"comment/127\",[]],[\"name/128\",[83,40.395]],[\"comment/128\",[]],[\"name/129\",[84,45.504]],[\"comment/129\",[]],[\"name/130\",[83,40.395]],[\"comment/130\",[]],[\"name/131\",[85,45.504]],[\"comment/131\",[]],[\"name/132\",[86,45.504]],[\"comment/132\",[]],[\"name/133\",[87,45.504]],[\"comment/133\",[]],[\"name/134\",[88,45.504]],[\"comment/134\",[]],[\"name/135\",[89,45.504]],[\"comment/135\",[]],[\"name/136\",[13,40.395]],[\"comment/136\",[]],[\"name/137\",[56,30.84]],[\"comment/137\",[]],[\"name/138\",[90,45.504]],[\"comment/138\",[]],[\"name/139\",[91,45.504]],[\"comment/139\",[]],[\"name/140\",[92,45.504]],[\"comment/140\",[]]],\"invertedIndex\":[[\"_get\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"actiontype\",{\"_index\":86,\"name\":{\"132\":{}},\"comment\":{}}],[\"audiostream\",{\"_index\":35,\"name\":{\"36\":{}},\"comment\":{}}],[\"audiostreams\",{\"_index\":15,\"name\":{\"16\":{}},\"comment\":{}}],[\"author\",{\"_index\":58,\"name\":{\"74\":{}},\"comment\":{}}],[\"autogenerated\",{\"_index\":48,\"name\":{\"49\":{}},\"comment\":{}}],[\"avatarurl\",{\"_index\":75,\"name\":{\"100\":{}},\"comment\":{}}],[\"bannerurl\",{\"_index\":76,\"name\":{\"101\":{},\"114\":{}},\"comment\":{}}],[\"bitrate\",{\"_index\":36,\"name\":{\"37\":{},\"55\":{}},\"comment\":{}}],[\"category\",{\"_index\":87,\"name\":{\"133\":{}},\"comment\":{}}],[\"channel\",{\"_index\":7,\"name\":{\"7\":{},\"99\":{}},\"comment\":{}}],[\"channelbyname\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"code\",{\"_index\":49,\"name\":{\"50\":{}},\"comment\":{}}],[\"codec\",{\"_index\":37,\"name\":{\"38\":{},\"56\":{}},\"comment\":{}}],[\"comment\",{\"_index\":57,\"name\":{\"73\":{}},\"comment\":{}}],[\"commentedtime\",{\"_index\":61,\"name\":{\"77\":{}},\"comment\":{}}],[\"commentid\",{\"_index\":59,\"name\":{\"75\":{}},\"comment\":{}}],[\"commentorurl\",{\"_index\":62,\"name\":{\"78\":{}},\"comment\":{}}],[\"comments\",{\"_index\":6,\"name\":{\"6\":{},\"69\":{},\"70\":{}},\"comment\":{}}],[\"commenttext\",{\"_index\":60,\"name\":{\"76\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"corrected\",{\"_index\":91,\"name\":{\"139\":{}},\"comment\":{}}],[\"dash\",{\"_index\":16,\"name\":{\"17\":{}},\"comment\":{}}],[\"description\",{\"_index\":17,\"name\":{\"18\":{},\"102\":{}},\"comment\":{}}],[\"disabled\",{\"_index\":55,\"name\":{\"71\":{}},\"comment\":{}}],[\"dislikes\",{\"_index\":18,\"name\":{\"19\":{}},\"comment\":{}}],[\"duration\",{\"_index\":19,\"name\":{\"20\":{},\"85\":{}},\"comment\":{}}],[\"format\",{\"_index\":38,\"name\":{\"39\":{},\"57\":{}},\"comment\":{}}],[\"fps\",{\"_index\":52,\"name\":{\"58\":{}},\"comment\":{}}],[\"hash\",{\"_index\":82,\"name\":{\"127\":{}},\"comment\":{}}],[\"hearted\",{\"_index\":63,\"name\":{\"79\":{}},\"comment\":{}}],[\"height\",{\"_index\":53,\"name\":{\"59\":{}},\"comment\":{}}],[\"hls\",{\"_index\":20,\"name\":{\"21\":{}},\"comment\":{}}],[\"host\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"id\",{\"_index\":77,\"name\":{\"103\":{}},\"comment\":{}}],[\"indexend\",{\"_index\":39,\"name\":{\"40\":{},\"60\":{}},\"comment\":{}}],[\"indexstart\",{\"_index\":40,\"name\":{\"41\":{},\"61\":{}},\"comment\":{}}],[\"initend\",{\"_index\":42,\"name\":{\"43\":{},\"63\":{}},\"comment\":{}}],[\"initstart\",{\"_index\":41,\"name\":{\"42\":{},\"62\":{}},\"comment\":{}}],[\"isshort\",{\"_index\":71,\"name\":{\"95\":{}},\"comment\":{}}],[\"items\",{\"_index\":90,\"name\":{\"138\":{}},\"comment\":{}}],[\"lbryid\",{\"_index\":21,\"name\":{\"22\":{}},\"comment\":{}}],[\"likecount\",{\"_index\":64,\"name\":{\"80\":{}},\"comment\":{}}],[\"likes\",{\"_index\":22,\"name\":{\"23\":{}},\"comment\":{}}],[\"livestream\",{\"_index\":23,\"name\":{\"24\":{}},\"comment\":{}}],[\"mimetype\",{\"_index\":43,\"name\":{\"44\":{},\"51\":{},\"64\":{}},\"comment\":{}}],[\"name\",{\"_index\":50,\"name\":{\"52\":{},\"104\":{},\"115\":{}},\"comment\":{}}],[\"nextpage\",{\"_index\":56,\"name\":{\"72\":{},\"105\":{},\"111\":{},\"116\":{},\"124\":{},\"137\":{}},\"comment\":{}}],[\"nextpagechannel\",{\"_index\":79,\"name\":{\"110\":{}},\"comment\":{}}],[\"nextpageplaylist\",{\"_index\":81,\"name\":{\"123\":{}},\"comment\":{}}],[\"pinned\",{\"_index\":65,\"name\":{\"81\":{}},\"comment\":{}}],[\"pipedapi\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"playlist\",{\"_index\":10,\"name\":{\"10\":{},\"113\":{}},\"comment\":{}}],[\"proxyurl\",{\"_index\":24,\"name\":{\"25\":{}},\"comment\":{}}],[\"quality\",{\"_index\":44,\"name\":{\"45\":{},\"65\":{}},\"comment\":{}}],[\"relatedstreams\",{\"_index\":25,\"name\":{\"26\":{},\"106\":{},\"112\":{},\"117\":{},\"125\":{}},\"comment\":{}}],[\"search\",{\"_index\":13,\"name\":{\"13\":{},\"136\":{}},\"comment\":{}}],[\"segment\",{\"_index\":88,\"name\":{\"134\":{}},\"comment\":{}}],[\"segments\",{\"_index\":83,\"name\":{\"128\":{},\"130\":{}},\"comment\":{}}],[\"shortdescription\",{\"_index\":73,\"name\":{\"97\":{}},\"comment\":{}}],[\"sponsors\",{\"_index\":12,\"name\":{\"12\":{},\"126\":{}},\"comment\":{}}],[\"streams\",{\"_index\":5,\"name\":{\"5\":{},\"15\":{}},\"comment\":{}}],[\"subscribercount\",{\"_index\":78,\"name\":{\"107\":{}},\"comment\":{}}],[\"subtitle\",{\"_index\":47,\"name\":{\"48\":{}},\"comment\":{}}],[\"subtitles\",{\"_index\":26,\"name\":{\"27\":{}},\"comment\":{}}],[\"suggestion\",{\"_index\":92,\"name\":{\"140\":{}},\"comment\":{}}],[\"suggestions\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"thumbnail\",{\"_index\":66,\"name\":{\"82\":{},\"86\":{}},\"comment\":{}}],[\"thumbnailurl\",{\"_index\":27,\"name\":{\"28\":{},\"118\":{}},\"comment\":{}}],[\"title\",{\"_index\":28,\"name\":{\"29\":{},\"87\":{}},\"comment\":{}}],[\"trending\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"type\",{\"_index\":74,\"name\":{\"98\":{},\"109\":{}},\"comment\":{}}],[\"types\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"uploaded\",{\"_index\":72,\"name\":{\"96\":{}},\"comment\":{}}],[\"uploadeddate\",{\"_index\":29,\"name\":{\"30\":{},\"88\":{}},\"comment\":{}}],[\"uploader\",{\"_index\":30,\"name\":{\"31\":{},\"119\":{}},\"comment\":{}}],[\"uploaderavatar\",{\"_index\":69,\"name\":{\"89\":{},\"120\":{}},\"comment\":{}}],[\"uploadername\",{\"_index\":70,\"name\":{\"92\":{}},\"comment\":{}}],[\"uploaderurl\",{\"_index\":31,\"name\":{\"32\":{},\"90\":{},\"121\":{}},\"comment\":{}}],[\"uploaderverified\",{\"_index\":32,\"name\":{\"33\":{},\"91\":{}},\"comment\":{}}],[\"url\",{\"_index\":45,\"name\":{\"46\":{},\"53\":{},\"66\":{},\"93\":{}},\"comment\":{}}],[\"user\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"uuid\",{\"_index\":85,\"name\":{\"131\":{}},\"comment\":{}}],[\"verified\",{\"_index\":67,\"name\":{\"83\":{},\"108\":{}},\"comment\":{}}],[\"video\",{\"_index\":68,\"name\":{\"84\":{}},\"comment\":{}}],[\"videoduration\",{\"_index\":89,\"name\":{\"135\":{}},\"comment\":{}}],[\"videoid\",{\"_index\":84,\"name\":{\"129\":{}},\"comment\":{}}],[\"videoonly\",{\"_index\":46,\"name\":{\"47\":{},\"67\":{}},\"comment\":{}}],[\"videos\",{\"_index\":80,\"name\":{\"122\":{}},\"comment\":{}}],[\"videostream\",{\"_index\":51,\"name\":{\"54\":{}},\"comment\":{}}],[\"videostreams\",{\"_index\":33,\"name\":{\"34\":{}},\"comment\":{}}],[\"views\",{\"_index\":34,\"name\":{\"35\":{},\"94\":{}},\"comment\":{}}],[\"width\",{\"_index\":54,\"name\":{\"68\":{}},\"comment\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..18b4f8f --- /dev/null +++ b/assets/style.css @@ -0,0 +1,1367 @@ +:root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-icon-background: var(--light-color-background); + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); + --light-color-text: #222; + --light-color-text-aside: #6e6e6e; + --light-color-link: #1f70c2; + + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: var(--light-color-ts-variable); + --light-color-ts-method: var(--light-color-ts-function); + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var(--light-color-ts-constructor); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: var(--light-color-ts-type-alias); + --light-color-ts-accessor: var(--light-color-ts-property); + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + /* object literal not included as it is not used and will be removed in 0.25 */ + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + --dark-color-link: #00aff4; + + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: var(--dark-color-ts-variable); + --dark-color-ts-method: var(--dark-color-ts-function); + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias); + --dark-color-ts-accessor: var(--dark-color-ts-property); + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + /* object literal not included as it is not used and will be removed in 0.25 */ + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } +} + +html { + color-scheme: var(--color-scheme); +} + +body { + margin: 0; +} + +:root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); +} + +:root[data-theme="dark"] { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +.always-visible, +.always-visible .tsd-signatures { + display: inherit !important; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 > a, +h2 > a, +h3 > a, +h4 > a, +h5 > a, +h6 > a { + text-decoration: none; + color: var(--color-text); +} + +h1 { + font-size: 1.875rem; + margin: 0.67rem 0; +} + +h2 { + font-size: 1.5rem; + margin: 0.83rem 0; +} + +h3 { + font-size: 1.25rem; + margin: 1rem 0; +} + +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; +} + +h5 { + font-size: 1rem; + margin: 1.5rem 0; +} + +h6 { + font-size: 0.875rem; + margin: 2.33rem 0; +} + +.uppercase { + text-transform: uppercase; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1700px; + padding: 0 2rem; +} + +/* Footer */ +.tsd-generator { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} + +.tsd-generator > p { + margin-top: 0; + margin-bottom: 0; + padding: 0 1rem; +} + +.container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); +} + +@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 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: 0.875rem; + border-radius: 0.8em; +} + +pre { + position: relative; + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; + padding: 10px; + border: 1px solid var(--color-accent); +} +pre code { + padding: 0; + font-size: 100%; +} +pre > button { + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; +} +pre:hover > button, +pre > button.visible { + opacity: 1; +} + +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; +} + +.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: " / "; +} + +.tsd-comment-tags { + display: flex; + flex-direction: column; +} +dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; +} +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; +} +dl.tsd-comment-tag-group dd { + margin: 0; +} +code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; +} +h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; +} + +dl.tsd-comment-tag-group dd:before, +dl.tsd-comment-tag-group dd:after { + content: " "; +} +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { + clear: both; +} +dl.tsd-comment-tag-group 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; +} + +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; +} +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; +} +.tsd-filter-input { + display: flex; + width: fit-content; + width: -moz-fit-content; + align-items: center; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + cursor: pointer; +} +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; +} +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; +} +.tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; +} +.tsd-filter-input input[type="checkbox"]:focus + svg { + transform: scale(0.95); +} +.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { + transform: scale(1); +} +.tsd-checkbox-background { + fill: var(--color-accent); +} +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); +} + +.tsd-theme-toggle { + padding-top: 0.75rem; +} +.tsd-theme-toggle > h4 { + display: inline; + vertical-align: middle; + margin-right: 0.75rem; +} + +.tsd-hierarchy { + list-style: square; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; +} +@media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } +} +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } +} +.tsd-index-panel .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-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: relative; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} + +.tsd-navigation.settings { + margin: 1rem 0; +} +.tsd-navigation > a, +.tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.5rem); +} +.tsd-navigation a, +.tsd-navigation summary > span, +.tsd-page-navigation a { + display: inline-flex; + align-items: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + box-sizing: border-box; +} +.tsd-navigation a.current, +.tsd-page-navigation a.current { + background: var(--color-active-menu-item); +} +.tsd-navigation a:hover, +.tsd-page-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul, +.tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li, +.tsd-page-navigation li { + padding: 0; + max-width: 100%; +} +.tsd-nested-navigation { + margin-left: 3rem; +} +.tsd-nested-navigation > li > details { + margin-left: -1.5rem; +} +.tsd-small-nested-navigation { + margin-left: 1.5rem; +} +.tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; +} + +.tsd-nested-navigation > li > a, +.tsd-nested-navigation > li > span { + width: calc(100% - 1.75rem - 0.5rem); +} + +.tsd-page-navigation ul { + padding-left: 1.75rem; +} + +#tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; +} +#tsd-sidebar-links a:last-of-type { + margin-bottom: 0; +} + +a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); +} +.tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ +} +.tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ +} +.tsd-accordion-summary, +.tsd-accordion-summary a { + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + + cursor: pointer; +} +.tsd-accordion-summary a { + width: calc(100% - 1.5rem); +} +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tsd-index-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; +} +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; +} +.tsd-kind-icon path { + transform-origin: center; + transform: scale(1.1); +} +.tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; +} + +.tsd-panel { + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; +} + +.tsd-panel-group { + margin: 4rem 0; +} +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; +} + +#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: 2.5rem; + height: 100%; +} +#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, +#tsd-toolbar-links a { + 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-background-secondary); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current, +#tsd-search .results li:hover { + background-color: var(--color-accent); +} +#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-accent); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { + 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-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + +.tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} + +.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; + list-style-type: none; +} +.tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; +} +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; +} + +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameter-list > li.tsd-parameter-signature, +ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +.tsd-sources { + margin-top: 1rem; + font-size: 0.875em; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: sticky; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; +} +.tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; +} +.tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; +} + +.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-accent); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} + +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} + +.deprecated { + text-decoration: line-through; +} + +.warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); +} + +.tsd-kind-project { + color: var(--color-ts-project); +} +.tsd-kind-module { + color: var(--color-ts-module); +} +.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-kind-enum-member { + color: var(--color-ts-enum-member); +} +.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-kind-interface { + color: var(--color-ts-interface); +} +.tsd-kind-constructor { + color: var(--color-ts-constructor); +} +.tsd-kind-property { + color: var(--color-ts-property); +} +.tsd-kind-method { + color: var(--color-ts-method); +} +.tsd-kind-call-signature { + color: var(--color-ts-call-signature); +} +.tsd-kind-index-signature { + color: var(--color-ts-index-signature); +} +.tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); +} +.tsd-kind-parameter { + color: var(--color-ts-parameter); +} +.tsd-kind-type-literal { + color: var(--color-ts-type-literal); +} +.tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); +} +.tsd-kind-accessor { + color: var(--color-ts-accessor); +} +.tsd-kind-get-signature { + color: var(--color-ts-get-signature); +} +.tsd-kind-set-signature { + color: var(--color-ts-set-signature); +} +.tsd-kind-type-alias { + color: var(--color-ts-type-alias); +} + +/* if we have a kind icon, don't color the text by kind */ +.tsd-kind-icon ~ span { + color: var(--color-text); +} + +* { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); +} + +*::-webkit-scrollbar { + width: 0.75rem; +} + +*::-webkit-scrollbar-track { + background: var(--color-icon-background); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); +} + +/* mobile */ +@media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-sidebar > *: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 .col-sidebar { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +/* one sidebar */ +@media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + margin: 2rem auto; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } +} +@media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .site-menu { + margin-top: 1rem; + } +} + +/* two sidebars */ +@media (min-width: 1200px) { + .container-main { + grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 1rem 0; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } +} diff --git a/classes/PipedAPI.html b/classes/PipedAPI.html new file mode 100644 index 0000000..3404775 --- /dev/null +++ b/classes/PipedAPI.html @@ -0,0 +1,365 @@ +PipedAPI | piped-api
+
+ +
+
+
+
+ +

Class PipedAPI

+
+

Hierarchy

+
    +
  • PipedAPI
+
+
+
+ +
+
+

Constructors

+
+
+

Properties

+
+
+

Methods

+
+
+

Constructors

+
+ +
+
+

Properties

+
+ +
host: string
+
+

Methods

+
+ +
    + +
  • +

    Retrieves data from the specified URL.

    +
    +
    +

    Parameters

    +
      +
    • +
      url: string
      +

      The URL from which to retrieve data.

      +
      +
    +

    Returns Promise<any>

      +
    • A Promise that resolves to the parsed JSON data.
    • +
    + +
+
+ +
    + +
  • +

    Retrieves a channel by its ID.

    +
    +
    +

    Parameters

    +
      +
    • +
      id: string
      +

      The ID of the channel to retrieve.

      +
      +
    • +
    • +
      Optional nextpage: string
      +

      The JSON encoded nextpage variable, to be sent as a query string (optional).

      +
      +
    +

    Returns Promise<Channel | NextPageChannel>

    A Promise that resolves to the retrieved Channel object.

    + +
+
+ +
    + +
  • +

    Retrieves a channel by its name.

    +
    +
    +

    Parameters

    +
      +
    • +
      name: string
      +

      The name of the channel.

      +
      +
    +

    Returns Promise<Channel>

    A promise that resolves to the channel object.

    + +
+
+ +
    + +
  • +

    Retrieves comments for a specific video.

    +
    +
    +

    Parameters

    +
      +
    • +
      videoId: string
      +

      The ID of the video for which to retrieve comments.

      +
      +
    • +
    • +
      Optional nextpage: string
      +

      The JSON encoded nextpage variable, to be sent as a query string (optional).

      +
      +
    +

    Returns Promise<Comments>

    A Promise that resolves to the comments for the video.

    + +
+
+ +
    + +
  • +

    Retrieves a playlist based on its ID.

    +
    +
    +

    Parameters

    +
      +
    • +
      id: string
      +

      The ID of the playlist to retrieve.

      +
      +
    • +
    • +
      Optional nextpage: string
      +

      The token for the next page of results (optional).

      +
      +
    +

    Returns Promise<Playlist | NextPagePlaylist>

    A Promise that resolves to a Playlist or NextPagePlaylist object.

    + +
+
+ +
    + +
  • +

    Searches videos for a given query with an optional filter.

    +
    +
    +

    Parameters

    +
      +
    • +
      query: string
      +

      The query to search for.

      +
      +
    • +
    • +
      Optional filter: string = "all"
      +

      The optional filter to apply.

      +
      +
    +

    Returns Promise<Search>

      +
    • A Promise that resolves to the search results.
    • +
    + +
+
+ +
    + +
  • +

    Retrieves sponsors based on the provided ID and category.

    +
    +
    +

    Parameters

    +
      +
    • +
      id: string
      +

      The ID of the video.

      +
      +
    • +
    • +
      category: string[] = ...
      +

      The category of sponsors you would like to skip. Example: ["sponsor"].

      +
      +
    +

    Returns Promise<Sponsors>

    A promise that resolves to the sponsors.

    + +
+
+ +
    + +
  • +

    Retrieves the streams for a given video ID.

    +
    +
    +

    Parameters

    +
      +
    • +
      videoId: string
      +

      The ID of the video.

      +
      +
    +

    Returns Promise<Streams>

    A promise that resolves to the streams for the given video ID.

    + +
+
+ +
    + +
  • +

    Retrieves suggestions based on the given query.

    +
    +
    +

    Parameters

    +
      +
    • +
      query: string
      +

      The query string to search for suggestions.

      +
      +
    +

    Returns Promise<string[]>

    A promise that resolves to an array of string suggestions.

    + +
+
+ +
    + +
  • +

    Retrieves the trending videos for a specific region.

    +
    +
    +

    Parameters

    +
      +
    • +
      region: string
      +

      The region for which to retrieve trending videos.

      +
      +
    +

    Returns Promise<Video[]>

      +
    • A promise that resolves to an array of Video objects representing the trending videos.
    • +
    + +
+
+ +
    + +
  • +

    Retrieves a user by their name.

    +
    +
    +

    Parameters

    +
      +
    • +
      name: string
      +

      The name of the user.

      +
      +
    +

    Returns Promise<Channel>

    A Promise that resolves to the user's channel.

    + +
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..50db212 --- /dev/null +++ b/index.html @@ -0,0 +1,54 @@ +piped-api
+
+ +
+
+
+
+

piped-api

+

Piped API

This is the API wrapper for Piped in Node.js (Typescript).

+

Installation

npm i piped-api
+
+

Usage

import { PipedAPI } from "piped-api";

const api = new PipedAPI("https://ytapi.dc09.ru");

let trending = await api.trending("US");

console.log(trending[0].title); +
+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.AudioStream.html b/interfaces/Types.AudioStream.html new file mode 100644 index 0000000..8b77503 --- /dev/null +++ b/interfaces/Types.AudioStream.html @@ -0,0 +1,155 @@ +AudioStream | piped-api
+
+ +
+
+
+
+ +

Interface AudioStream

+
+

Hierarchy

+
    +
  • AudioStream
+
+
+
+ +
+
+

Properties

+
+ +
bitrate: number
+
+ +
codec: string
+
+ +
format: string
+
+ +
indexEnd: number
+
+ +
indexStart: number
+
+ +
initEnd: number
+
+ +
initStart: number
+
+ +
mimeType: string
+
+ +
quality: string
+
+ +
url: string
+
+ +
videoOnly: boolean
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Channel.html b/interfaces/Types.Channel.html new file mode 100644 index 0000000..92164a6 --- /dev/null +++ b/interfaces/Types.Channel.html @@ -0,0 +1,148 @@ +Channel | piped-api
+
+ +
+
+
+
+ +

Interface Channel

+
+

Hierarchy

+
    +
  • Channel
+
+
+
+ +
+
+

Properties

+
+ +
avatarUrl: string
+
+ +
bannerUrl: string
+
+ +
description: string
+
+ +
id: string
+
+ +
name: string
+
+ +
nextpage: string
+
+ +
relatedStreams: Video[]
+
+ +
subscriberCount: number
+
+ +
type?: string
+
+ +
verified: boolean
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Comment.html b/interfaces/Types.Comment.html new file mode 100644 index 0000000..a4c6a2e --- /dev/null +++ b/interfaces/Types.Comment.html @@ -0,0 +1,148 @@ +Comment | piped-api
+
+ +
+
+
+
+ +

Interface Comment

+
+

Hierarchy

+
    +
  • Comment
+
+
+
+ +
+
+

Properties

+
+ +
author: string
+
+ +
commentId: string
+
+ +
commentText: string
+
+ +
commentedTime: string
+
+ +
commentorUrl: string
+
+ +
hearted: boolean
+
+ +
likeCount: number
+
+ +
pinned: boolean
+
+ +
thumbnail: string
+
+ +
verified: boolean
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Comments.html b/interfaces/Types.Comments.html new file mode 100644 index 0000000..b1d83b2 --- /dev/null +++ b/interfaces/Types.Comments.html @@ -0,0 +1,99 @@ +Comments | piped-api
+
+ +
+
+
+
+ +

Interface Comments

+
+

Hierarchy

+
    +
  • Comments
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
comments: Comment[]
+
+ +
disabled: boolean
+
+ +
nextpage: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.NextPageChannel.html b/interfaces/Types.NextPageChannel.html new file mode 100644 index 0000000..802991c --- /dev/null +++ b/interfaces/Types.NextPageChannel.html @@ -0,0 +1,92 @@ +NextPageChannel | piped-api
+
+ +
+
+
+
+ +

Interface NextPageChannel

+
+

Hierarchy

+
    +
  • NextPageChannel
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
nextpage: string
+
+ +
relatedStreams: Video[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.NextPagePlaylist.html b/interfaces/Types.NextPagePlaylist.html new file mode 100644 index 0000000..c433dd5 --- /dev/null +++ b/interfaces/Types.NextPagePlaylist.html @@ -0,0 +1,92 @@ +NextPagePlaylist | piped-api
+
+ +
+
+
+
+ +

Interface NextPagePlaylist

+
+

Hierarchy

+
    +
  • NextPagePlaylist
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
nextpage: string
+
+ +
relatedStreams: Video[]
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Playlist.html b/interfaces/Types.Playlist.html new file mode 100644 index 0000000..3e0b883 --- /dev/null +++ b/interfaces/Types.Playlist.html @@ -0,0 +1,141 @@ +Playlist | piped-api
+
+ +
+
+
+
+ +

Interface Playlist

+
+

Hierarchy

+
    +
  • Playlist
+
+
+
+ +
+
+

Properties

+
+ +
bannerUrl: string
+
+ +
name: string
+
+ +
nextpage: string
+
+ +
relatedStreams: Video[]
+
+ +
thumbnailUrl: string
+
+ +
uploader: string
+
+ +
uploaderAvatar: string
+
+ +
uploaderUrl: string
+
+ +
videos: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Search.html b/interfaces/Types.Search.html new file mode 100644 index 0000000..4fb229a --- /dev/null +++ b/interfaces/Types.Search.html @@ -0,0 +1,106 @@ +Search | piped-api
+
+ +
+
+
+
+ +

Interface Search

+
+

Hierarchy

+
    +
  • Search
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
corrected: boolean
+
+ +
items: (Video | Channel)[]
+
+ +
nextpage: string
+
+ +
suggestion: null | string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Segments.html b/interfaces/Types.Segments.html new file mode 100644 index 0000000..f3ae249 --- /dev/null +++ b/interfaces/Types.Segments.html @@ -0,0 +1,113 @@ +Segments | piped-api
+
+ +
+
+
+
+ +

Interface Segments

+
+

Hierarchy

+
    +
  • Segments
+
+
+
+ +
+
+

Properties

+
+ +
UUID: string
+
+ +
actionType: string
+
+ +
category: string
+
+ +
segment: string
+
+ +
videoDuration: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Sponsors.html b/interfaces/Types.Sponsors.html new file mode 100644 index 0000000..3f4be39 --- /dev/null +++ b/interfaces/Types.Sponsors.html @@ -0,0 +1,99 @@ +Sponsors | piped-api
+
+ +
+
+
+
+ +

Interface Sponsors

+
+

Hierarchy

+
    +
  • Sponsors
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
hash: string
+
+ +
segments: Segments[]
+
+ +
videoId: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Streams.html b/interfaces/Types.Streams.html new file mode 100644 index 0000000..5e873ac --- /dev/null +++ b/interfaces/Types.Streams.html @@ -0,0 +1,218 @@ +Streams | piped-api
+
+ +
+
+
+
+ +

Interface Streams

+
+

Hierarchy

+
    +
  • Streams
+
+
+
+ +
+
+

Properties

+
+ +
audioStreams: AudioStream[]
+
+ +
dash: null | string
+
+ +
description: string
+
+ +
dislikes: number
+
+ +
duration: number
+
+ +
hls: null | string
+
+ +
lbryId: string
+
+ +
likes: number
+
+ +
livestream: boolean
+
+ +
proxyUrl: string
+
+ +
relatedStreams: Video[]
+
+ +
subtitles: Subtitle[]
+
+ +
thumbnailUrl: string
+
+ +
title: string
+
+ +
uploadedDate: string
+
+ +
uploader: string
+
+ +
uploaderUrl: string
+
+ +
uploaderVerified: boolean
+
+ +
videoStreams: VideoStream[]
+
+ +
views: number
+
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Subtitle.html b/interfaces/Types.Subtitle.html new file mode 100644 index 0000000..c9bb4df --- /dev/null +++ b/interfaces/Types.Subtitle.html @@ -0,0 +1,113 @@ +Subtitle | piped-api
+
+ +
+
+
+
+ +

Interface Subtitle

+
+

Hierarchy

+
    +
  • Subtitle
+
+
+
+ +
+
+

Properties

+
+
+

Properties

+
+ +
autoGenerated: boolean
+
+ +
code: string
+
+ +
mimeType: string
+
+ +
name: string
+
+ +
url: string
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.Video.html b/interfaces/Types.Video.html new file mode 100644 index 0000000..9191ddb --- /dev/null +++ b/interfaces/Types.Video.html @@ -0,0 +1,176 @@ +Video | piped-api
+
+ +
+
+
+
+ +

Interface Video

+
+

Hierarchy

+
    +
  • Video
+
+
+
+ +
+
+

Properties

+
+ +
duration: number
+
+ +
isShort: boolean
+
+ +
shortDescription: string
+
+ +
thumbnail: string
+
+ +
title: string
+
+ +
type?: string
+
+ +
uploaded: number
+
+ +
uploadedDate: string
+
+ +
uploaderAvatar: string
+
+ +
uploaderName: string
+
+ +
uploaderUrl: string
+
+ +
uploaderVerified: boolean
+
+ +
url: string
+
+ +
views: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/interfaces/Types.VideoStream.html b/interfaces/Types.VideoStream.html new file mode 100644 index 0000000..2ccd375 --- /dev/null +++ b/interfaces/Types.VideoStream.html @@ -0,0 +1,176 @@ +VideoStream | piped-api
+
+ +
+
+
+
+ +

Interface VideoStream

+
+

Hierarchy

+
    +
  • VideoStream
+
+
+
+ +
+
+

Properties

+
+ +
bitrate: number
+
+ +
codec: string
+
+ +
format: string
+
+ +
fps: number
+
+ +
height: number
+
+ +
indexEnd: number
+
+ +
indexStart: number
+
+ +
initEnd: number
+
+ +
initStart: number
+
+ +
mimeType: string
+
+ +
quality: string
+
+ +
url: string
+
+ +
videoOnly: boolean
+
+ +
width: number
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 0000000..26c52fd --- /dev/null +++ b/modules.html @@ -0,0 +1,48 @@ +piped-api
+
+ +
+
+
+
+

piped-api

+
+
+

Index

+
+

Namespaces

+
+
+

Classes

+
+
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file diff --git a/modules/Types.html b/modules/Types.html new file mode 100644 index 0000000..eaf2f84 --- /dev/null +++ b/modules/Types.html @@ -0,0 +1,79 @@ +Types | piped-api
+
+ +
+
+ +
+ +
+
+

Generated using TypeDoc

+
\ No newline at end of file