RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html 738 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807
  1. <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>HTMLDirectoryElement | @rcsb/rcsb-saguaro-3d</title><meta name="description" content="Documentation for @rcsb/rcsb-saguaro-3d"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
  2. <div class="tsd-toolbar-contents container">
  3. <div class="table-cell" id="tsd-search" data-base="..">
  4. <div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
  5. <ul class="results">
  6. <li class="state loading">Preparing search index...</li>
  7. <li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@rcsb/rcsb-saguaro-3d</a></div>
  8. <div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
  9. <div class="container container-main">
  10. <div class="col-8 col-content">
  11. <div class="tsd-page-title">
  12. <ul class="tsd-breadcrumb">
  13. <li><a href="../modules.html">@rcsb/rcsb-saguaro-3d</a></li>
  14. <li><a href="../modules/RcsbFv3DAssembly.html">RcsbFv3DAssembly</a></li>
  15. <li><a href="../modules/RcsbFv3DAssembly._internal_.html">&lt;internal&gt;</a></li>
  16. <li><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html">HTMLDirectoryElement</a></li></ul>
  17. <h1>Interface HTMLDirectoryElement</h1></div>
  18. <section class="tsd-panel tsd-comment">
  19. <div class="tsd-comment tsd-typography">
  20. <h3>Deprecated</h3></div></section>
  21. <section class="tsd-panel tsd-hierarchy">
  22. <h4>Hierarchy</h4>
  23. <ul class="tsd-hierarchy">
  24. <li><span class="tsd-signature-type">HTMLElement</span>
  25. <ul class="tsd-hierarchy">
  26. <li><span class="target">HTMLDirectoryElement</span></li></ul></li></ul></section><aside class="tsd-sources">
  27. <ul>
  28. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6291</li>
  29. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6301</li></ul></aside>
  30. <section class="tsd-panel-group tsd-index-group">
  31. <section class="tsd-panel tsd-index-panel">
  32. <details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
  33. <h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex=0><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M1.5 5.50969L8 11.6609L14.5 5.50969L12.5466 3.66086L8 7.96494L3.45341 3.66086L1.5 5.50969Z" fill="var(--color-text)"></path></svg> Index</h5></summary>
  34. <div class="tsd-accordion-details">
  35. <section class="tsd-index-section">
  36. <h3 class="tsd-index-heading">Properties</h3>
  37. <div class="tsd-index-list"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ATTRIBUTE_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#FF984D" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-1024-path"></rect><path d="M9.354 16V7.24H12.174C12.99 7.24 13.638 7.476 14.118 7.948C14.606 8.412 14.85 9.036 14.85 9.82C14.85 10.604 14.606 11.232 14.118 11.704C13.638 12.168 12.99 12.4 12.174 12.4H10.434V16H9.354ZM10.434 11.428H12.174C12.646 11.428 13.022 11.284 13.302 10.996C13.59 10.7 13.734 10.308 13.734 9.82C13.734 9.324 13.59 8.932 13.302 8.644C13.022 8.356 12.646 8.212 12.174 8.212H10.434V11.428Z" fill="var(--color-text)" id="icon-1024-text"></path></svg><span>ATTRIBUTE_<wbr/>NODE</span></a>
  38. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#CDATA_SECTION_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>CDATA_<wbr/>SECTION_<wbr/>NODE</span></a>
  39. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#COMMENT_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>COMMENT_<wbr/>NODE</span></a>
  40. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_FRAGMENT_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>FRAGMENT_<wbr/>NODE</span></a>
  41. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>NODE</span></a>
  42. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_CONTAINED_BY" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>POSITION_<wbr/>CONTAINED_<wbr/>BY</span></a>
  43. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_CONTAINS" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>POSITION_<wbr/>CONTAINS</span></a>
  44. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_DISCONNECTED" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>POSITION_<wbr/>DISCONNECTED</span></a>
  45. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_FOLLOWING" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>POSITION_<wbr/>FOLLOWING</span></a>
  46. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>POSITION_<wbr/>IMPLEMENTATION_<wbr/>SPECIFIC</span></a>
  47. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_PRECEDING" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>POSITION_<wbr/>PRECEDING</span></a>
  48. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_TYPE_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>DOCUMENT_<wbr/>TYPE_<wbr/>NODE</span></a>
  49. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ELEMENT_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ELEMENT_<wbr/>NODE</span></a>
  50. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ENTITY_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ENTITY_<wbr/>NODE</span></a>
  51. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ENTITY_REFERENCE_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ENTITY_<wbr/>REFERENCE_<wbr/>NODE</span></a>
  52. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#NOTATION_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>NOTATION_<wbr/>NODE</span></a>
  53. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#PROCESSING_INSTRUCTION_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>PROCESSING_<wbr/>INSTRUCTION_<wbr/>NODE</span></a>
  54. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#TEXT_NODE" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>TEXT_<wbr/>NODE</span></a>
  55. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#accessKey" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>access<wbr/>Key</span></a>
  56. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#accessKeyLabel" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>access<wbr/>Key<wbr/>Label</span></a>
  57. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaAtomic" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Atomic</span></a>
  58. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaAutoComplete" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Auto<wbr/>Complete</span></a>
  59. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaBusy" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Busy</span></a>
  60. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaChecked" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Checked</span></a>
  61. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaColCount" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Col<wbr/>Count</span></a>
  62. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaColIndex" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Col<wbr/>Index</span></a>
  63. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaColSpan" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Col<wbr/>Span</span></a>
  64. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaCurrent" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Current</span></a>
  65. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaDisabled" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Disabled</span></a>
  66. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaExpanded" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Expanded</span></a>
  67. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaHasPopup" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Has<wbr/>Popup</span></a>
  68. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaHidden" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Hidden</span></a>
  69. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaKeyShortcuts" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Key<wbr/>Shortcuts</span></a>
  70. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaLabel" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Label</span></a>
  71. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaLevel" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Level</span></a>
  72. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaLive" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Live</span></a>
  73. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaModal" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Modal</span></a>
  74. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaMultiLine" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Multi<wbr/>Line</span></a>
  75. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaMultiSelectable" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Multi<wbr/>Selectable</span></a>
  76. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaOrientation" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Orientation</span></a>
  77. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaPlaceholder" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Placeholder</span></a>
  78. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaPosInSet" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Pos<wbr/>In<wbr/>Set</span></a>
  79. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaPressed" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Pressed</span></a>
  80. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaReadOnly" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Read<wbr/>Only</span></a>
  81. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRequired" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Required</span></a>
  82. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRoleDescription" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Role<wbr/>Description</span></a>
  83. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRowCount" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Row<wbr/>Count</span></a>
  84. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRowIndex" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Row<wbr/>Index</span></a>
  85. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRowSpan" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Row<wbr/>Span</span></a>
  86. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaSelected" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Selected</span></a>
  87. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaSetSize" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Set<wbr/>Size</span></a>
  88. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaSort" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Sort</span></a>
  89. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaValueMax" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Value<wbr/>Max</span></a>
  90. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaValueMin" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Value<wbr/>Min</span></a>
  91. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaValueNow" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Value<wbr/>Now</span></a>
  92. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaValueText" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>aria<wbr/>Value<wbr/>Text</span></a>
  93. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#assignedSlot" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>assigned<wbr/>Slot</span></a>
  94. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#attributes" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>attributes</span></a>
  95. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#autocapitalize" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>autocapitalize</span></a>
  96. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#autofocus" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>autofocus</span></a>
  97. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#baseURI" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>baseURI</span></a>
  98. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#childElementCount" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>child<wbr/>Element<wbr/>Count</span></a>
  99. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#childNodes" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>child<wbr/>Nodes</span></a>
  100. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#children" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>children</span></a>
  101. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#classList" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>class<wbr/>List</span></a>
  102. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#className" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>class<wbr/>Name</span></a>
  103. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#clientHeight" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>client<wbr/>Height</span></a>
  104. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#clientLeft" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>client<wbr/>Left</span></a>
  105. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#clientTop" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>client<wbr/>Top</span></a>
  106. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#clientWidth" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>client<wbr/>Width</span></a>
  107. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#compact" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>compact</span></a>
  108. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#contentEditable" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>content<wbr/>Editable</span></a>
  109. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#dataset" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>dataset</span></a>
  110. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#dir" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>dir</span></a>
  111. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#draggable" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>draggable</span></a>
  112. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#enterKeyHint" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>enter<wbr/>Key<wbr/>Hint</span></a>
  113. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#firstChild" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>first<wbr/>Child</span></a>
  114. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#firstElementChild" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>first<wbr/>Element<wbr/>Child</span></a>
  115. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hidden" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>hidden</span></a>
  116. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#id" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>id</span></a>
  117. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#innerHTML" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>innerHTML</span></a>
  118. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#innerText" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>inner<wbr/>Text</span></a>
  119. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#inputMode" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>input<wbr/>Mode</span></a>
  120. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isConnected" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>is<wbr/>Connected</span></a>
  121. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isContentEditable" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>is<wbr/>Content<wbr/>Editable</span></a>
  122. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lang" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>lang</span></a>
  123. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lastChild" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>last<wbr/>Child</span></a>
  124. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lastElementChild" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>last<wbr/>Element<wbr/>Child</span></a>
  125. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#localName" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>local<wbr/>Name</span></a>
  126. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#namespaceURI" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>namespaceURI</span></a>
  127. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nextElementSibling" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>next<wbr/>Element<wbr/>Sibling</span></a>
  128. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nextSibling" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>next<wbr/>Sibling</span></a>
  129. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nodeName" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>node<wbr/>Name</span></a>
  130. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nodeType" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>node<wbr/>Type</span></a>
  131. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nodeValue" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>node<wbr/>Value</span></a>
  132. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nonce" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>nonce?</span></a>
  133. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetHeight" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>offset<wbr/>Height</span></a>
  134. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetLeft" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>offset<wbr/>Left</span></a>
  135. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetParent" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>offset<wbr/>Parent</span></a>
  136. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetTop" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>offset<wbr/>Top</span></a>
  137. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetWidth" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>offset<wbr/>Width</span></a>
  138. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onabort" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onabort</span></a>
  139. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onanimationcancel" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onanimationcancel</span></a>
  140. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onanimationend" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onanimationend</span></a>
  141. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onanimationiteration" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onanimationiteration</span></a>
  142. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onanimationstart" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onanimationstart</span></a>
  143. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onauxclick" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onauxclick</span></a>
  144. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onblur" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onblur</span></a>
  145. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncanplay" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>oncanplay</span></a>
  146. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncanplaythrough" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>oncanplaythrough</span></a>
  147. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onchange" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onchange</span></a>
  148. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onclick" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onclick</span></a>
  149. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onclose" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onclose</span></a>
  150. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncontextmenu" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>oncontextmenu</span></a>
  151. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncopy" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>oncopy</span></a>
  152. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncuechange" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>oncuechange</span></a>
  153. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncut" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>oncut</span></a>
  154. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondblclick" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondblclick</span></a>
  155. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondrag" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondrag</span></a>
  156. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragend" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondragend</span></a>
  157. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragenter" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondragenter</span></a>
  158. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragleave" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondragleave</span></a>
  159. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragover" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondragover</span></a>
  160. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragstart" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondragstart</span></a>
  161. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondrop" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondrop</span></a>
  162. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondurationchange" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ondurationchange</span></a>
  163. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onemptied" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onemptied</span></a>
  164. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onended" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onended</span></a>
  165. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onerror" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onerror</span></a>
  166. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onfocus" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onfocus</span></a>
  167. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onformdata" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onformdata</span></a>
  168. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onfullscreenchange" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onfullscreenchange</span></a>
  169. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onfullscreenerror" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onfullscreenerror</span></a>
  170. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ongotpointercapture" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ongotpointercapture</span></a>
  171. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oninput" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>oninput</span></a>
  172. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oninvalid" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>oninvalid</span></a>
  173. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onkeydown" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onkeydown</span></a>
  174. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onkeypress" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onkeypress</span></a>
  175. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onkeyup" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onkeyup</span></a>
  176. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onload" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onload</span></a>
  177. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onloadeddata" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onloadeddata</span></a>
  178. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onloadedmetadata" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onloadedmetadata</span></a>
  179. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onloadstart" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onloadstart</span></a>
  180. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onlostpointercapture" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onlostpointercapture</span></a>
  181. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmousedown" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onmousedown</span></a>
  182. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseenter" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onmouseenter</span></a>
  183. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseleave" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onmouseleave</span></a>
  184. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmousemove" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onmousemove</span></a>
  185. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseout" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onmouseout</span></a>
  186. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseover" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onmouseover</span></a>
  187. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseup" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onmouseup</span></a>
  188. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpaste" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpaste</span></a>
  189. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpause" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpause</span></a>
  190. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onplay" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onplay</span></a>
  191. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onplaying" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onplaying</span></a>
  192. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointercancel" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpointercancel</span></a>
  193. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerdown" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpointerdown</span></a>
  194. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerenter" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpointerenter</span></a>
  195. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerleave" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpointerleave</span></a>
  196. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointermove" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpointermove</span></a>
  197. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerout" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpointerout</span></a>
  198. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerover" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpointerover</span></a>
  199. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerup" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onpointerup</span></a>
  200. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onprogress" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onprogress</span></a>
  201. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onratechange" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onratechange</span></a>
  202. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onreset" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onreset</span></a>
  203. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onresize" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onresize</span></a>
  204. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onscroll" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onscroll</span></a>
  205. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onsecuritypolicyviolation" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onsecuritypolicyviolation</span></a>
  206. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onseeked" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onseeked</span></a>
  207. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onseeking" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onseeking</span></a>
  208. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onselect" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onselect</span></a>
  209. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onselectionchange" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onselectionchange</span></a>
  210. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onselectstart" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onselectstart</span></a>
  211. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onslotchange" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onslotchange</span></a>
  212. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onstalled" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onstalled</span></a>
  213. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onsubmit" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onsubmit</span></a>
  214. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onsuspend" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onsuspend</span></a>
  215. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontimeupdate" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontimeupdate</span></a>
  216. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontoggle" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontoggle</span></a>
  217. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontouchcancel" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontouchcancel?</span></a>
  218. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontouchend" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontouchend?</span></a>
  219. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontouchmove" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontouchmove?</span></a>
  220. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontouchstart" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontouchstart?</span></a>
  221. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontransitioncancel" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontransitioncancel</span></a>
  222. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontransitionend" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontransitionend</span></a>
  223. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontransitionrun" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontransitionrun</span></a>
  224. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontransitionstart" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>ontransitionstart</span></a>
  225. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onvolumechange" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onvolumechange</span></a>
  226. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwaiting" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onwaiting</span></a>
  227. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwebkitanimationend" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onwebkitanimationend</span></a>
  228. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwebkitanimationiteration" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onwebkitanimationiteration</span></a>
  229. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwebkitanimationstart" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onwebkitanimationstart</span></a>
  230. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwebkittransitionend" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onwebkittransitionend</span></a>
  231. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwheel" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>onwheel</span></a>
  232. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#outerHTML" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>outerHTML</span></a>
  233. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#outerText" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>outer<wbr/>Text</span></a>
  234. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ownerDocument" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>owner<wbr/>Document</span></a>
  235. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#parentElement" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>parent<wbr/>Element</span></a>
  236. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#parentNode" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>parent<wbr/>Node</span></a>
  237. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#part" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>part</span></a>
  238. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#prefix" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>prefix</span></a>
  239. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#previousElementSibling" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>previous<wbr/>Element<wbr/>Sibling</span></a>
  240. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#previousSibling" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>previous<wbr/>Sibling</span></a>
  241. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollHeight" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>scroll<wbr/>Height</span></a>
  242. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollLeft" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>scroll<wbr/>Left</span></a>
  243. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollTop" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>scroll<wbr/>Top</span></a>
  244. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollWidth" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>scroll<wbr/>Width</span></a>
  245. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#shadowRoot" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>shadow<wbr/>Root</span></a>
  246. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#slot" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>slot</span></a>
  247. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#spellcheck" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>spellcheck</span></a>
  248. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#style" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>style</span></a>
  249. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#tabIndex" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>tab<wbr/>Index</span></a>
  250. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#tagName" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>tag<wbr/>Name</span></a>
  251. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#textContent" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>text<wbr/>Content</span></a>
  252. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#title" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>title</span></a>
  253. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#translate" class="tsd-index-link deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg><span>translate</span></a>
  254. </div></section>
  255. <section class="tsd-index-section">
  256. <h3 class="tsd-index-heading">Methods</h3>
  257. <div class="tsd-index-list"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#addEventListener" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#FF4DB8" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-2048-path"></rect><path d="M9.162 16V7.24H10.578L11.514 10.072C11.602 10.328 11.674 10.584 11.73 10.84C11.794 11.088 11.842 11.28 11.874 11.416C11.906 11.28 11.954 11.088 12.018 10.84C12.082 10.584 12.154 10.324 12.234 10.06L13.122 7.24H14.538V16H13.482V12.82C13.482 12.468 13.49 12.068 13.506 11.62C13.53 11.172 13.558 10.716 13.59 10.252C13.622 9.78 13.654 9.332 13.686 8.908C13.726 8.476 13.762 8.1 13.794 7.78L12.366 12.16H11.334L9.894 7.78C9.934 8.092 9.97 8.456 10.002 8.872C10.042 9.28 10.078 9.716 10.11 10.18C10.142 10.636 10.166 11.092 10.182 11.548C10.206 12.004 10.218 12.428 10.218 12.82V16H9.162Z" fill="var(--color-text)" id="icon-2048-text"></path></svg><span>add<wbr/>Event<wbr/>Listener</span></a>
  258. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#after" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>after</span></a>
  259. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#animate" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>animate</span></a>
  260. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#append" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>append</span></a>
  261. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#appendChild" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>append<wbr/>Child</span></a>
  262. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#attachInternals" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>attach<wbr/>Internals</span></a>
  263. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#attachShadow" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>attach<wbr/>Shadow</span></a>
  264. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#before" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>before</span></a>
  265. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#blur" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>blur</span></a>
  266. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#click" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>click</span></a>
  267. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#cloneNode" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>clone<wbr/>Node</span></a>
  268. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#closest" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>closest</span></a>
  269. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#compareDocumentPosition" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>compare<wbr/>Document<wbr/>Position</span></a>
  270. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#contains" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>contains</span></a>
  271. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#dispatchEvent" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>dispatch<wbr/>Event</span></a>
  272. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#focus" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>focus</span></a>
  273. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAnimations" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Animations</span></a>
  274. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttribute" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Attribute</span></a>
  275. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttributeNS" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>AttributeNS</span></a>
  276. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttributeNames" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Attribute<wbr/>Names</span></a>
  277. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttributeNode" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Attribute<wbr/>Node</span></a>
  278. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttributeNodeNS" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Attribute<wbr/>NodeNS</span></a>
  279. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getBoundingClientRect" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Bounding<wbr/>Client<wbr/>Rect</span></a>
  280. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getClientRects" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Client<wbr/>Rects</span></a>
  281. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getElementsByClassName" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Elements<wbr/>By<wbr/>Class<wbr/>Name</span></a>
  282. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getElementsByTagName" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>Name</span></a>
  283. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getElementsByTagNameNS" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>NameNS</span></a>
  284. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getRootNode" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>get<wbr/>Root<wbr/>Node</span></a>
  285. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasAttribute" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>has<wbr/>Attribute</span></a>
  286. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasAttributeNS" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>has<wbr/>AttributeNS</span></a>
  287. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasAttributes" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>has<wbr/>Attributes</span></a>
  288. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasChildNodes" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>has<wbr/>Child<wbr/>Nodes</span></a>
  289. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasPointerCapture" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>has<wbr/>Pointer<wbr/>Capture</span></a>
  290. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#insertAdjacentElement" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>insert<wbr/>Adjacent<wbr/>Element</span></a>
  291. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#insertAdjacentHTML" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>insert<wbr/>AdjacentHTML</span></a>
  292. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#insertAdjacentText" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>insert<wbr/>Adjacent<wbr/>Text</span></a>
  293. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#insertBefore" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>insert<wbr/>Before</span></a>
  294. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isDefaultNamespace" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>is<wbr/>Default<wbr/>Namespace</span></a>
  295. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isEqualNode" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>is<wbr/>Equal<wbr/>Node</span></a>
  296. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isSameNode" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>is<wbr/>Same<wbr/>Node</span></a>
  297. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lookupNamespaceURI" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>lookup<wbr/>NamespaceURI</span></a>
  298. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lookupPrefix" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>lookup<wbr/>Prefix</span></a>
  299. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#matches" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>matches</span></a>
  300. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#normalize" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>normalize</span></a>
  301. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#prepend" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>prepend</span></a>
  302. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#querySelector" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>query<wbr/>Selector</span></a>
  303. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#querySelectorAll" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>query<wbr/>Selector<wbr/>All</span></a>
  304. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#releasePointerCapture" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>release<wbr/>Pointer<wbr/>Capture</span></a>
  305. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#remove" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>remove</span></a>
  306. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeAttribute" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>remove<wbr/>Attribute</span></a>
  307. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeAttributeNS" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>remove<wbr/>AttributeNS</span></a>
  308. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeAttributeNode" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>remove<wbr/>Attribute<wbr/>Node</span></a>
  309. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeChild" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>remove<wbr/>Child</span></a>
  310. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeEventListener" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>remove<wbr/>Event<wbr/>Listener</span></a>
  311. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#replaceChild" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>replace<wbr/>Child</span></a>
  312. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#replaceChildren" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>replace<wbr/>Children</span></a>
  313. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#replaceWith" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>replace<wbr/>With</span></a>
  314. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#requestFullscreen" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>request<wbr/>Fullscreen</span></a>
  315. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#requestPointerLock" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>request<wbr/>Pointer<wbr/>Lock</span></a>
  316. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scroll" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>scroll</span></a>
  317. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollBy" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>scroll<wbr/>By</span></a>
  318. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollIntoView" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>scroll<wbr/>Into<wbr/>View</span></a>
  319. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollTo" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>scroll<wbr/>To</span></a>
  320. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setAttribute" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>set<wbr/>Attribute</span></a>
  321. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setAttributeNS" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>set<wbr/>AttributeNS</span></a>
  322. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setAttributeNode" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>set<wbr/>Attribute<wbr/>Node</span></a>
  323. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setAttributeNodeNS" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>set<wbr/>Attribute<wbr/>NodeNS</span></a>
  324. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setPointerCapture" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>set<wbr/>Pointer<wbr/>Capture</span></a>
  325. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#toggleAttribute" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>toggle<wbr/>Attribute</span></a>
  326. <a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#webkitMatchesSelector" class="tsd-index-link deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg><span>webkit<wbr/>Matches<wbr/>Selector</span></a>
  327. </div></section></div></details></section></section>
  328. <section class="tsd-panel-group tsd-member-group">
  329. <h2>Properties</h2>
  330. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ATTRIBUTE_NODE" class="tsd-anchor"></a>
  331. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">ATTRIBUTE_<wbr/>NODE</span><a href="#ATTRIBUTE_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
  332. <div class="tsd-signature">ATTRIBUTE_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  333. <p>Inherited from HTMLElement.ATTRIBUTE_NODE</p>
  334. <ul>
  335. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10089</li></ul></aside></section>
  336. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="CDATA_SECTION_NODE" class="tsd-anchor"></a>
  337. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">CDATA_<wbr/>SECTION_<wbr/>NODE</span><a href="#CDATA_SECTION_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  338. <div class="tsd-signature">CDATA_<wbr/>SECTION_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  339. <div class="tsd-comment tsd-typography"><p>node is a CDATASection node.</p>
  340. </div><aside class="tsd-sources">
  341. <p>Inherited from HTMLElement.CDATA_SECTION_NODE</p>
  342. <ul>
  343. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10091</li></ul></aside></section>
  344. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="COMMENT_NODE" class="tsd-anchor"></a>
  345. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">COMMENT_<wbr/>NODE</span><a href="#COMMENT_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  346. <div class="tsd-signature">COMMENT_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  347. <div class="tsd-comment tsd-typography"><p>node is a Comment node.</p>
  348. </div><aside class="tsd-sources">
  349. <p>Inherited from HTMLElement.COMMENT_NODE</p>
  350. <ul>
  351. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10093</li></ul></aside></section>
  352. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_FRAGMENT_NODE" class="tsd-anchor"></a>
  353. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>FRAGMENT_<wbr/>NODE</span><a href="#DOCUMENT_FRAGMENT_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  354. <div class="tsd-signature">DOCUMENT_<wbr/>FRAGMENT_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  355. <div class="tsd-comment tsd-typography"><p>node is a DocumentFragment node.</p>
  356. </div><aside class="tsd-sources">
  357. <p>Inherited from HTMLElement.DOCUMENT_FRAGMENT_NODE</p>
  358. <ul>
  359. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10095</li></ul></aside></section>
  360. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_NODE" class="tsd-anchor"></a>
  361. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>NODE</span><a href="#DOCUMENT_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  362. <div class="tsd-signature">DOCUMENT_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  363. <div class="tsd-comment tsd-typography"><p>node is a document.</p>
  364. </div><aside class="tsd-sources">
  365. <p>Inherited from HTMLElement.DOCUMENT_NODE</p>
  366. <ul>
  367. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10097</li></ul></aside></section>
  368. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_POSITION_CONTAINED_BY" class="tsd-anchor"></a>
  369. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>POSITION_<wbr/>CONTAINED_<wbr/>BY</span><a href="#DOCUMENT_POSITION_CONTAINED_BY" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  370. <div class="tsd-signature">DOCUMENT_<wbr/>POSITION_<wbr/>CONTAINED_<wbr/>BY<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  371. <div class="tsd-comment tsd-typography"><p>Set when other is a descendant of node.</p>
  372. </div><aside class="tsd-sources">
  373. <p>Inherited from HTMLElement.DOCUMENT_POSITION_CONTAINED_BY</p>
  374. <ul>
  375. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10099</li></ul></aside></section>
  376. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_POSITION_CONTAINS" class="tsd-anchor"></a>
  377. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>POSITION_<wbr/>CONTAINS</span><a href="#DOCUMENT_POSITION_CONTAINS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  378. <div class="tsd-signature">DOCUMENT_<wbr/>POSITION_<wbr/>CONTAINS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  379. <div class="tsd-comment tsd-typography"><p>Set when other is an ancestor of node.</p>
  380. </div><aside class="tsd-sources">
  381. <p>Inherited from HTMLElement.DOCUMENT_POSITION_CONTAINS</p>
  382. <ul>
  383. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10101</li></ul></aside></section>
  384. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_POSITION_DISCONNECTED" class="tsd-anchor"></a>
  385. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>POSITION_<wbr/>DISCONNECTED</span><a href="#DOCUMENT_POSITION_DISCONNECTED" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  386. <div class="tsd-signature">DOCUMENT_<wbr/>POSITION_<wbr/>DISCONNECTED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  387. <div class="tsd-comment tsd-typography"><p>Set when node and other are not in the same tree.</p>
  388. </div><aside class="tsd-sources">
  389. <p>Inherited from HTMLElement.DOCUMENT_POSITION_DISCONNECTED</p>
  390. <ul>
  391. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10103</li></ul></aside></section>
  392. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_POSITION_FOLLOWING" class="tsd-anchor"></a>
  393. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>POSITION_<wbr/>FOLLOWING</span><a href="#DOCUMENT_POSITION_FOLLOWING" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  394. <div class="tsd-signature">DOCUMENT_<wbr/>POSITION_<wbr/>FOLLOWING<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  395. <div class="tsd-comment tsd-typography"><p>Set when other is following node.</p>
  396. </div><aside class="tsd-sources">
  397. <p>Inherited from HTMLElement.DOCUMENT_POSITION_FOLLOWING</p>
  398. <ul>
  399. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10105</li></ul></aside></section>
  400. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" class="tsd-anchor"></a>
  401. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>POSITION_<wbr/>IMPLEMENTATION_<wbr/>SPECIFIC</span><a href="#DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  402. <div class="tsd-signature">DOCUMENT_<wbr/>POSITION_<wbr/>IMPLEMENTATION_<wbr/>SPECIFIC<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  403. <p>Inherited from HTMLElement.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC</p>
  404. <ul>
  405. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10106</li></ul></aside></section>
  406. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_POSITION_PRECEDING" class="tsd-anchor"></a>
  407. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>POSITION_<wbr/>PRECEDING</span><a href="#DOCUMENT_POSITION_PRECEDING" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  408. <div class="tsd-signature">DOCUMENT_<wbr/>POSITION_<wbr/>PRECEDING<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  409. <div class="tsd-comment tsd-typography"><p>Set when other is preceding node.</p>
  410. </div><aside class="tsd-sources">
  411. <p>Inherited from HTMLElement.DOCUMENT_POSITION_PRECEDING</p>
  412. <ul>
  413. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10108</li></ul></aside></section>
  414. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="DOCUMENT_TYPE_NODE" class="tsd-anchor"></a>
  415. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">DOCUMENT_<wbr/>TYPE_<wbr/>NODE</span><a href="#DOCUMENT_TYPE_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  416. <div class="tsd-signature">DOCUMENT_<wbr/>TYPE_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  417. <div class="tsd-comment tsd-typography"><p>node is a doctype.</p>
  418. </div><aside class="tsd-sources">
  419. <p>Inherited from HTMLElement.DOCUMENT_TYPE_NODE</p>
  420. <ul>
  421. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10110</li></ul></aside></section>
  422. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ELEMENT_NODE" class="tsd-anchor"></a>
  423. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">ELEMENT_<wbr/>NODE</span><a href="#ELEMENT_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  424. <div class="tsd-signature">ELEMENT_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  425. <div class="tsd-comment tsd-typography"><p>node is an element.</p>
  426. </div><aside class="tsd-sources">
  427. <p>Inherited from HTMLElement.ELEMENT_NODE</p>
  428. <ul>
  429. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10112</li></ul></aside></section>
  430. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ENTITY_NODE" class="tsd-anchor"></a>
  431. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">ENTITY_<wbr/>NODE</span><a href="#ENTITY_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  432. <div class="tsd-signature">ENTITY_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  433. <p>Inherited from HTMLElement.ENTITY_NODE</p>
  434. <ul>
  435. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10113</li></ul></aside></section>
  436. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ENTITY_REFERENCE_NODE" class="tsd-anchor"></a>
  437. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">ENTITY_<wbr/>REFERENCE_<wbr/>NODE</span><a href="#ENTITY_REFERENCE_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  438. <div class="tsd-signature">ENTITY_<wbr/>REFERENCE_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  439. <p>Inherited from HTMLElement.ENTITY_REFERENCE_NODE</p>
  440. <ul>
  441. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10114</li></ul></aside></section>
  442. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="NOTATION_NODE" class="tsd-anchor"></a>
  443. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">NOTATION_<wbr/>NODE</span><a href="#NOTATION_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  444. <div class="tsd-signature">NOTATION_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  445. <p>Inherited from HTMLElement.NOTATION_NODE</p>
  446. <ul>
  447. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10115</li></ul></aside></section>
  448. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="PROCESSING_INSTRUCTION_NODE" class="tsd-anchor"></a>
  449. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">PROCESSING_<wbr/>INSTRUCTION_<wbr/>NODE</span><a href="#PROCESSING_INSTRUCTION_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  450. <div class="tsd-signature">PROCESSING_<wbr/>INSTRUCTION_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  451. <div class="tsd-comment tsd-typography"><p>node is a ProcessingInstruction node.</p>
  452. </div><aside class="tsd-sources">
  453. <p>Inherited from HTMLElement.PROCESSING_INSTRUCTION_NODE</p>
  454. <ul>
  455. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10117</li></ul></aside></section>
  456. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="TEXT_NODE" class="tsd-anchor"></a>
  457. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">TEXT_<wbr/>NODE</span><a href="#TEXT_NODE" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  458. <div class="tsd-signature">TEXT_<wbr/>NODE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  459. <div class="tsd-comment tsd-typography"><p>node is a Text node.</p>
  460. </div><aside class="tsd-sources">
  461. <p>Inherited from HTMLElement.TEXT_NODE</p>
  462. <ul>
  463. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10119</li></ul></aside></section>
  464. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="accessKey" class="tsd-anchor"></a>
  465. <h3 class="tsd-anchor-link"><span class="deprecated">access<wbr/>Key</span><a href="#accessKey" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  466. <div class="tsd-signature">access<wbr/>Key<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  467. <p>Inherited from HTMLElement.accessKey</p>
  468. <ul>
  469. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6343</li></ul></aside></section>
  470. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="accessKeyLabel" class="tsd-anchor"></a>
  471. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">access<wbr/>Key<wbr/>Label</span><a href="#accessKeyLabel" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  472. <div class="tsd-signature">access<wbr/>Key<wbr/>Label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  473. <p>Inherited from HTMLElement.accessKeyLabel</p>
  474. <ul>
  475. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6344</li></ul></aside></section>
  476. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaAtomic" class="tsd-anchor"></a>
  477. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Atomic</span><a href="#ariaAtomic" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  478. <div class="tsd-signature">aria<wbr/>Atomic<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  479. <p>Inherited from HTMLElement.ariaAtomic</p>
  480. <ul>
  481. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1924</li></ul></aside></section>
  482. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaAutoComplete" class="tsd-anchor"></a>
  483. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Auto<wbr/>Complete</span><a href="#ariaAutoComplete" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  484. <div class="tsd-signature">aria<wbr/>Auto<wbr/>Complete<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  485. <p>Inherited from HTMLElement.ariaAutoComplete</p>
  486. <ul>
  487. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1925</li></ul></aside></section>
  488. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaBusy" class="tsd-anchor"></a>
  489. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Busy</span><a href="#ariaBusy" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  490. <div class="tsd-signature">aria<wbr/>Busy<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  491. <p>Inherited from HTMLElement.ariaBusy</p>
  492. <ul>
  493. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1926</li></ul></aside></section>
  494. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaChecked" class="tsd-anchor"></a>
  495. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Checked</span><a href="#ariaChecked" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  496. <div class="tsd-signature">aria<wbr/>Checked<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  497. <p>Inherited from HTMLElement.ariaChecked</p>
  498. <ul>
  499. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1927</li></ul></aside></section>
  500. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaColCount" class="tsd-anchor"></a>
  501. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Col<wbr/>Count</span><a href="#ariaColCount" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  502. <div class="tsd-signature">aria<wbr/>Col<wbr/>Count<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  503. <p>Inherited from HTMLElement.ariaColCount</p>
  504. <ul>
  505. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1928</li></ul></aside></section>
  506. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaColIndex" class="tsd-anchor"></a>
  507. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Col<wbr/>Index</span><a href="#ariaColIndex" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  508. <div class="tsd-signature">aria<wbr/>Col<wbr/>Index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  509. <p>Inherited from HTMLElement.ariaColIndex</p>
  510. <ul>
  511. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1929</li></ul></aside></section>
  512. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaColSpan" class="tsd-anchor"></a>
  513. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Col<wbr/>Span</span><a href="#ariaColSpan" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  514. <div class="tsd-signature">aria<wbr/>Col<wbr/>Span<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  515. <p>Inherited from HTMLElement.ariaColSpan</p>
  516. <ul>
  517. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1930</li></ul></aside></section>
  518. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaCurrent" class="tsd-anchor"></a>
  519. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Current</span><a href="#ariaCurrent" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  520. <div class="tsd-signature">aria<wbr/>Current<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  521. <p>Inherited from HTMLElement.ariaCurrent</p>
  522. <ul>
  523. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1931</li></ul></aside></section>
  524. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaDisabled" class="tsd-anchor"></a>
  525. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Disabled</span><a href="#ariaDisabled" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  526. <div class="tsd-signature">aria<wbr/>Disabled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  527. <p>Inherited from HTMLElement.ariaDisabled</p>
  528. <ul>
  529. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1932</li></ul></aside></section>
  530. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaExpanded" class="tsd-anchor"></a>
  531. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Expanded</span><a href="#ariaExpanded" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  532. <div class="tsd-signature">aria<wbr/>Expanded<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  533. <p>Inherited from HTMLElement.ariaExpanded</p>
  534. <ul>
  535. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1933</li></ul></aside></section>
  536. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaHasPopup" class="tsd-anchor"></a>
  537. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Has<wbr/>Popup</span><a href="#ariaHasPopup" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  538. <div class="tsd-signature">aria<wbr/>Has<wbr/>Popup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  539. <p>Inherited from HTMLElement.ariaHasPopup</p>
  540. <ul>
  541. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1934</li></ul></aside></section>
  542. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaHidden" class="tsd-anchor"></a>
  543. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Hidden</span><a href="#ariaHidden" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  544. <div class="tsd-signature">aria<wbr/>Hidden<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  545. <p>Inherited from HTMLElement.ariaHidden</p>
  546. <ul>
  547. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1935</li></ul></aside></section>
  548. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaKeyShortcuts" class="tsd-anchor"></a>
  549. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Key<wbr/>Shortcuts</span><a href="#ariaKeyShortcuts" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  550. <div class="tsd-signature">aria<wbr/>Key<wbr/>Shortcuts<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  551. <p>Inherited from HTMLElement.ariaKeyShortcuts</p>
  552. <ul>
  553. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1936</li></ul></aside></section>
  554. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaLabel" class="tsd-anchor"></a>
  555. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Label</span><a href="#ariaLabel" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  556. <div class="tsd-signature">aria<wbr/>Label<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  557. <p>Inherited from HTMLElement.ariaLabel</p>
  558. <ul>
  559. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1937</li></ul></aside></section>
  560. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaLevel" class="tsd-anchor"></a>
  561. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Level</span><a href="#ariaLevel" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  562. <div class="tsd-signature">aria<wbr/>Level<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  563. <p>Inherited from HTMLElement.ariaLevel</p>
  564. <ul>
  565. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1938</li></ul></aside></section>
  566. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaLive" class="tsd-anchor"></a>
  567. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Live</span><a href="#ariaLive" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  568. <div class="tsd-signature">aria<wbr/>Live<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  569. <p>Inherited from HTMLElement.ariaLive</p>
  570. <ul>
  571. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1939</li></ul></aside></section>
  572. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaModal" class="tsd-anchor"></a>
  573. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Modal</span><a href="#ariaModal" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  574. <div class="tsd-signature">aria<wbr/>Modal<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  575. <p>Inherited from HTMLElement.ariaModal</p>
  576. <ul>
  577. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1940</li></ul></aside></section>
  578. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaMultiLine" class="tsd-anchor"></a>
  579. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Multi<wbr/>Line</span><a href="#ariaMultiLine" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  580. <div class="tsd-signature">aria<wbr/>Multi<wbr/>Line<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  581. <p>Inherited from HTMLElement.ariaMultiLine</p>
  582. <ul>
  583. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1941</li></ul></aside></section>
  584. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaMultiSelectable" class="tsd-anchor"></a>
  585. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Multi<wbr/>Selectable</span><a href="#ariaMultiSelectable" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  586. <div class="tsd-signature">aria<wbr/>Multi<wbr/>Selectable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  587. <p>Inherited from HTMLElement.ariaMultiSelectable</p>
  588. <ul>
  589. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1942</li></ul></aside></section>
  590. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaOrientation" class="tsd-anchor"></a>
  591. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Orientation</span><a href="#ariaOrientation" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  592. <div class="tsd-signature">aria<wbr/>Orientation<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  593. <p>Inherited from HTMLElement.ariaOrientation</p>
  594. <ul>
  595. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1943</li></ul></aside></section>
  596. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaPlaceholder" class="tsd-anchor"></a>
  597. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Placeholder</span><a href="#ariaPlaceholder" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  598. <div class="tsd-signature">aria<wbr/>Placeholder<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  599. <p>Inherited from HTMLElement.ariaPlaceholder</p>
  600. <ul>
  601. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1944</li></ul></aside></section>
  602. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaPosInSet" class="tsd-anchor"></a>
  603. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Pos<wbr/>In<wbr/>Set</span><a href="#ariaPosInSet" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  604. <div class="tsd-signature">aria<wbr/>Pos<wbr/>In<wbr/>Set<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  605. <p>Inherited from HTMLElement.ariaPosInSet</p>
  606. <ul>
  607. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1945</li></ul></aside></section>
  608. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaPressed" class="tsd-anchor"></a>
  609. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Pressed</span><a href="#ariaPressed" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  610. <div class="tsd-signature">aria<wbr/>Pressed<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  611. <p>Inherited from HTMLElement.ariaPressed</p>
  612. <ul>
  613. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1946</li></ul></aside></section>
  614. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaReadOnly" class="tsd-anchor"></a>
  615. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Read<wbr/>Only</span><a href="#ariaReadOnly" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  616. <div class="tsd-signature">aria<wbr/>Read<wbr/>Only<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  617. <p>Inherited from HTMLElement.ariaReadOnly</p>
  618. <ul>
  619. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1947</li></ul></aside></section>
  620. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaRequired" class="tsd-anchor"></a>
  621. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Required</span><a href="#ariaRequired" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  622. <div class="tsd-signature">aria<wbr/>Required<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  623. <p>Inherited from HTMLElement.ariaRequired</p>
  624. <ul>
  625. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1948</li></ul></aside></section>
  626. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaRoleDescription" class="tsd-anchor"></a>
  627. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Role<wbr/>Description</span><a href="#ariaRoleDescription" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  628. <div class="tsd-signature">aria<wbr/>Role<wbr/>Description<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  629. <p>Inherited from HTMLElement.ariaRoleDescription</p>
  630. <ul>
  631. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1949</li></ul></aside></section>
  632. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaRowCount" class="tsd-anchor"></a>
  633. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Row<wbr/>Count</span><a href="#ariaRowCount" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  634. <div class="tsd-signature">aria<wbr/>Row<wbr/>Count<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  635. <p>Inherited from HTMLElement.ariaRowCount</p>
  636. <ul>
  637. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1950</li></ul></aside></section>
  638. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaRowIndex" class="tsd-anchor"></a>
  639. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Row<wbr/>Index</span><a href="#ariaRowIndex" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  640. <div class="tsd-signature">aria<wbr/>Row<wbr/>Index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  641. <p>Inherited from HTMLElement.ariaRowIndex</p>
  642. <ul>
  643. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1951</li></ul></aside></section>
  644. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaRowSpan" class="tsd-anchor"></a>
  645. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Row<wbr/>Span</span><a href="#ariaRowSpan" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  646. <div class="tsd-signature">aria<wbr/>Row<wbr/>Span<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  647. <p>Inherited from HTMLElement.ariaRowSpan</p>
  648. <ul>
  649. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1952</li></ul></aside></section>
  650. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaSelected" class="tsd-anchor"></a>
  651. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Selected</span><a href="#ariaSelected" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  652. <div class="tsd-signature">aria<wbr/>Selected<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  653. <p>Inherited from HTMLElement.ariaSelected</p>
  654. <ul>
  655. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1953</li></ul></aside></section>
  656. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaSetSize" class="tsd-anchor"></a>
  657. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Set<wbr/>Size</span><a href="#ariaSetSize" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  658. <div class="tsd-signature">aria<wbr/>Set<wbr/>Size<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  659. <p>Inherited from HTMLElement.ariaSetSize</p>
  660. <ul>
  661. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1954</li></ul></aside></section>
  662. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaSort" class="tsd-anchor"></a>
  663. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Sort</span><a href="#ariaSort" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  664. <div class="tsd-signature">aria<wbr/>Sort<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  665. <p>Inherited from HTMLElement.ariaSort</p>
  666. <ul>
  667. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1955</li></ul></aside></section>
  668. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaValueMax" class="tsd-anchor"></a>
  669. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Value<wbr/>Max</span><a href="#ariaValueMax" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  670. <div class="tsd-signature">aria<wbr/>Value<wbr/>Max<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  671. <p>Inherited from HTMLElement.ariaValueMax</p>
  672. <ul>
  673. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1956</li></ul></aside></section>
  674. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaValueMin" class="tsd-anchor"></a>
  675. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Value<wbr/>Min</span><a href="#ariaValueMin" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  676. <div class="tsd-signature">aria<wbr/>Value<wbr/>Min<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  677. <p>Inherited from HTMLElement.ariaValueMin</p>
  678. <ul>
  679. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1957</li></ul></aside></section>
  680. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaValueNow" class="tsd-anchor"></a>
  681. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Value<wbr/>Now</span><a href="#ariaValueNow" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  682. <div class="tsd-signature">aria<wbr/>Value<wbr/>Now<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  683. <p>Inherited from HTMLElement.ariaValueNow</p>
  684. <ul>
  685. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1958</li></ul></aside></section>
  686. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ariaValueText" class="tsd-anchor"></a>
  687. <h3 class="tsd-anchor-link"><span class="deprecated">aria<wbr/>Value<wbr/>Text</span><a href="#ariaValueText" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  688. <div class="tsd-signature">aria<wbr/>Value<wbr/>Text<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  689. <p>Inherited from HTMLElement.ariaValueText</p>
  690. <ul>
  691. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:1959</li></ul></aside></section>
  692. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="assignedSlot" class="tsd-anchor"></a>
  693. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">assigned<wbr/>Slot</span><a href="#assignedSlot" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  694. <div class="tsd-signature">assigned<wbr/>Slot<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">HTMLSlotElement</span></div><aside class="tsd-sources">
  695. <p>Inherited from HTMLElement.assignedSlot</p>
  696. <ul>
  697. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:13595</li></ul></aside></section>
  698. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="attributes" class="tsd-anchor"></a>
  699. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">attributes</span><a href="#attributes" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  700. <div class="tsd-signature">attributes<span class="tsd-signature-symbol">:</span> <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.NamedNodeMap-1.html" class="tsd-signature-type" data-tsd-kind="Variable">NamedNodeMap</a></div><aside class="tsd-sources">
  701. <p>Inherited from HTMLElement.attributes</p>
  702. <ul>
  703. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4852</li></ul></aside></section>
  704. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="autocapitalize" class="tsd-anchor"></a>
  705. <h3 class="tsd-anchor-link"><span class="deprecated">autocapitalize</span><a href="#autocapitalize" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  706. <div class="tsd-signature">autocapitalize<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  707. <p>Inherited from HTMLElement.autocapitalize</p>
  708. <ul>
  709. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6345</li></ul></aside></section>
  710. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="autofocus" class="tsd-anchor"></a>
  711. <h3 class="tsd-anchor-link"><span class="deprecated">autofocus</span><a href="#autofocus" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  712. <div class="tsd-signature">autofocus<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
  713. <p>Inherited from HTMLElement.autofocus</p>
  714. <ul>
  715. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:7547</li></ul></aside></section>
  716. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="baseURI" class="tsd-anchor"></a>
  717. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">baseURI</span><a href="#baseURI" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  718. <div class="tsd-signature">baseURI<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
  719. <div class="tsd-comment tsd-typography"><p>Returns node&#39;s node document&#39;s document base URL.</p>
  720. </div><aside class="tsd-sources">
  721. <p>Inherited from HTMLElement.baseURI</p>
  722. <ul>
  723. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10042</li></ul></aside></section>
  724. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="childElementCount" class="tsd-anchor"></a>
  725. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">child<wbr/>Element<wbr/>Count</span><a href="#childElementCount" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  726. <div class="tsd-signature">child<wbr/>Element<wbr/>Count<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  727. <p>Inherited from HTMLElement.childElementCount</p>
  728. <ul>
  729. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10407</li></ul></aside></section>
  730. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="childNodes" class="tsd-anchor"></a>
  731. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">child<wbr/>Nodes</span><a href="#childNodes" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  732. <div class="tsd-signature">child<wbr/>Nodes<span class="tsd-signature-symbol">:</span> <a href="RcsbFv3DAssembly._internal_.NodeListOf.html" class="tsd-signature-type" data-tsd-kind="Interface">NodeListOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.ChildNode.html" class="tsd-signature-type" data-tsd-kind="Interface">ChildNode</a><span class="tsd-signature-symbol">&gt;</span></div>
  733. <div class="tsd-comment tsd-typography"><p>Returns the children.</p>
  734. </div><aside class="tsd-sources">
  735. <p>Inherited from HTMLElement.childNodes</p>
  736. <ul>
  737. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10044</li></ul></aside></section>
  738. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="children" class="tsd-anchor"></a>
  739. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">children</span><a href="#children" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  740. <div class="tsd-signature">children<span class="tsd-signature-symbol">:</span> <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLCollection-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLCollection</a></div>
  741. <div class="tsd-comment tsd-typography"><p>Returns the child elements.</p>
  742. </div><aside class="tsd-sources">
  743. <p>Inherited from HTMLElement.children</p>
  744. <ul>
  745. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10409</li></ul></aside></section>
  746. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="classList" class="tsd-anchor"></a>
  747. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">class<wbr/>List</span><a href="#classList" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  748. <div class="tsd-signature">class<wbr/>List<span class="tsd-signature-symbol">:</span> <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.DOMTokenList-1.html" class="tsd-signature-type" data-tsd-kind="Variable">DOMTokenList</a></div>
  749. <div class="tsd-comment tsd-typography"><p>Allows for manipulation of element&#39;s class content attribute as a set of whitespace-separated tokens through a DOMTokenList object.</p>
  750. </div><aside class="tsd-sources">
  751. <p>Inherited from HTMLElement.classList</p>
  752. <ul>
  753. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4854</li></ul></aside></section>
  754. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="className" class="tsd-anchor"></a>
  755. <h3 class="tsd-anchor-link"><span class="deprecated">class<wbr/>Name</span><a href="#className" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  756. <div class="tsd-signature">class<wbr/>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
  757. <div class="tsd-comment tsd-typography"><p>Returns the value of element&#39;s class content attribute. Can be set to change it.</p>
  758. </div><aside class="tsd-sources">
  759. <p>Inherited from HTMLElement.className</p>
  760. <ul>
  761. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4856</li></ul></aside></section>
  762. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="clientHeight" class="tsd-anchor"></a>
  763. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">client<wbr/>Height</span><a href="#clientHeight" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  764. <div class="tsd-signature">client<wbr/>Height<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  765. <p>Inherited from HTMLElement.clientHeight</p>
  766. <ul>
  767. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4857</li></ul></aside></section>
  768. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="clientLeft" class="tsd-anchor"></a>
  769. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">client<wbr/>Left</span><a href="#clientLeft" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  770. <div class="tsd-signature">client<wbr/>Left<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  771. <p>Inherited from HTMLElement.clientLeft</p>
  772. <ul>
  773. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4858</li></ul></aside></section>
  774. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="clientTop" class="tsd-anchor"></a>
  775. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">client<wbr/>Top</span><a href="#clientTop" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  776. <div class="tsd-signature">client<wbr/>Top<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  777. <p>Inherited from HTMLElement.clientTop</p>
  778. <ul>
  779. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4859</li></ul></aside></section>
  780. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="clientWidth" class="tsd-anchor"></a>
  781. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">client<wbr/>Width</span><a href="#clientWidth" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  782. <div class="tsd-signature">client<wbr/>Width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  783. <p>Inherited from HTMLElement.clientWidth</p>
  784. <ul>
  785. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4860</li></ul></aside></section>
  786. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a id="compact" class="tsd-anchor"></a>
  787. <h3 class="tsd-anchor-link"><span class="deprecated">compact</span><a href="#compact" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  788. <div class="tsd-signature">compact<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
  789. <div class="tsd-comment tsd-typography">
  790. <h3>Deprecated</h3></div><aside class="tsd-sources">
  791. <ul>
  792. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6293</li></ul></aside></section>
  793. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="contentEditable" class="tsd-anchor"></a>
  794. <h3 class="tsd-anchor-link"><span class="deprecated">content<wbr/>Editable</span><a href="#contentEditable" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  795. <div class="tsd-signature">content<wbr/>Editable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  796. <p>Inherited from HTMLElement.contentEditable</p>
  797. <ul>
  798. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4971</li></ul></aside></section>
  799. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="dataset" class="tsd-anchor"></a>
  800. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">dataset</span><a href="#dataset" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  801. <div class="tsd-signature">dataset<span class="tsd-signature-symbol">:</span> <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.DOMStringMap-1.html" class="tsd-signature-type" data-tsd-kind="Variable">DOMStringMap</a></div><aside class="tsd-sources">
  802. <p>Inherited from HTMLElement.dataset</p>
  803. <ul>
  804. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:7548</li></ul></aside></section>
  805. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="dir" class="tsd-anchor"></a>
  806. <h3 class="tsd-anchor-link"><span class="deprecated">dir</span><a href="#dir" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  807. <div class="tsd-signature">dir<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  808. <p>Inherited from HTMLElement.dir</p>
  809. <ul>
  810. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6346</li></ul></aside></section>
  811. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="draggable" class="tsd-anchor"></a>
  812. <h3 class="tsd-anchor-link"><span class="deprecated">draggable</span><a href="#draggable" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  813. <div class="tsd-signature">draggable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
  814. <p>Inherited from HTMLElement.draggable</p>
  815. <ul>
  816. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6347</li></ul></aside></section>
  817. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="enterKeyHint" class="tsd-anchor"></a>
  818. <h3 class="tsd-anchor-link"><span class="deprecated">enter<wbr/>Key<wbr/>Hint</span><a href="#enterKeyHint" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  819. <div class="tsd-signature">enter<wbr/>Key<wbr/>Hint<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  820. <p>Inherited from HTMLElement.enterKeyHint</p>
  821. <ul>
  822. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4972</li></ul></aside></section>
  823. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="firstChild" class="tsd-anchor"></a>
  824. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">first<wbr/>Child</span><a href="#firstChild" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  825. <div class="tsd-signature">first<wbr/>Child<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.ChildNode.html" class="tsd-signature-type" data-tsd-kind="Interface">ChildNode</a></div>
  826. <div class="tsd-comment tsd-typography"><p>Returns the first child.</p>
  827. </div><aside class="tsd-sources">
  828. <p>Inherited from HTMLElement.firstChild</p>
  829. <ul>
  830. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10046</li></ul></aside></section>
  831. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="firstElementChild" class="tsd-anchor"></a>
  832. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">first<wbr/>Element<wbr/>Child</span><a href="#firstElementChild" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  833. <div class="tsd-signature">first<wbr/>Element<wbr/>Child<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></div>
  834. <div class="tsd-comment tsd-typography"><p>Returns the first child that is an element, and null otherwise.</p>
  835. </div><aside class="tsd-sources">
  836. <p>Inherited from HTMLElement.firstElementChild</p>
  837. <ul>
  838. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10411</li></ul></aside></section>
  839. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="hidden" class="tsd-anchor"></a>
  840. <h3 class="tsd-anchor-link"><span class="deprecated">hidden</span><a href="#hidden" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  841. <div class="tsd-signature">hidden<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
  842. <p>Inherited from HTMLElement.hidden</p>
  843. <ul>
  844. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6348</li></ul></aside></section>
  845. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="id" class="tsd-anchor"></a>
  846. <h3 class="tsd-anchor-link"><span class="deprecated">id</span><a href="#id" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  847. <div class="tsd-signature">id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
  848. <div class="tsd-comment tsd-typography"><p>Returns the value of element&#39;s id content attribute. Can be set to change it.</p>
  849. </div><aside class="tsd-sources">
  850. <p>Inherited from HTMLElement.id</p>
  851. <ul>
  852. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4862</li></ul></aside></section>
  853. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="innerHTML" class="tsd-anchor"></a>
  854. <h3 class="tsd-anchor-link"><span class="deprecated">innerHTML</span><a href="#innerHTML" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  855. <div class="tsd-signature">innerHTML<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  856. <p>Inherited from HTMLElement.innerHTML</p>
  857. <ul>
  858. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:8903</li></ul></aside></section>
  859. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="innerText" class="tsd-anchor"></a>
  860. <h3 class="tsd-anchor-link"><span class="deprecated">inner<wbr/>Text</span><a href="#innerText" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  861. <div class="tsd-signature">inner<wbr/>Text<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  862. <p>Inherited from HTMLElement.innerText</p>
  863. <ul>
  864. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6349</li></ul></aside></section>
  865. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="inputMode" class="tsd-anchor"></a>
  866. <h3 class="tsd-anchor-link"><span class="deprecated">input<wbr/>Mode</span><a href="#inputMode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  867. <div class="tsd-signature">input<wbr/>Mode<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  868. <p>Inherited from HTMLElement.inputMode</p>
  869. <ul>
  870. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4973</li></ul></aside></section>
  871. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="isConnected" class="tsd-anchor"></a>
  872. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">is<wbr/>Connected</span><a href="#isConnected" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  873. <div class="tsd-signature">is<wbr/>Connected<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
  874. <div class="tsd-comment tsd-typography"><p>Returns true if node is connected and false otherwise.</p>
  875. </div><aside class="tsd-sources">
  876. <p>Inherited from HTMLElement.isConnected</p>
  877. <ul>
  878. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10048</li></ul></aside></section>
  879. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="isContentEditable" class="tsd-anchor"></a>
  880. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">is<wbr/>Content<wbr/>Editable</span><a href="#isContentEditable" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  881. <div class="tsd-signature">is<wbr/>Content<wbr/>Editable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
  882. <p>Inherited from HTMLElement.isContentEditable</p>
  883. <ul>
  884. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4974</li></ul></aside></section>
  885. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="lang" class="tsd-anchor"></a>
  886. <h3 class="tsd-anchor-link"><span class="deprecated">lang</span><a href="#lang" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  887. <div class="tsd-signature">lang<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  888. <p>Inherited from HTMLElement.lang</p>
  889. <ul>
  890. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6350</li></ul></aside></section>
  891. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="lastChild" class="tsd-anchor"></a>
  892. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">last<wbr/>Child</span><a href="#lastChild" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  893. <div class="tsd-signature">last<wbr/>Child<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.ChildNode.html" class="tsd-signature-type" data-tsd-kind="Interface">ChildNode</a></div>
  894. <div class="tsd-comment tsd-typography"><p>Returns the last child.</p>
  895. </div><aside class="tsd-sources">
  896. <p>Inherited from HTMLElement.lastChild</p>
  897. <ul>
  898. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10050</li></ul></aside></section>
  899. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="lastElementChild" class="tsd-anchor"></a>
  900. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">last<wbr/>Element<wbr/>Child</span><a href="#lastElementChild" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  901. <div class="tsd-signature">last<wbr/>Element<wbr/>Child<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></div>
  902. <div class="tsd-comment tsd-typography"><p>Returns the last child that is an element, and null otherwise.</p>
  903. </div><aside class="tsd-sources">
  904. <p>Inherited from HTMLElement.lastElementChild</p>
  905. <ul>
  906. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10413</li></ul></aside></section>
  907. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="localName" class="tsd-anchor"></a>
  908. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">local<wbr/>Name</span><a href="#localName" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  909. <div class="tsd-signature">local<wbr/>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
  910. <div class="tsd-comment tsd-typography"><p>Returns the local name.</p>
  911. </div><aside class="tsd-sources">
  912. <p>Inherited from HTMLElement.localName</p>
  913. <ul>
  914. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4864</li></ul></aside></section>
  915. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="namespaceURI" class="tsd-anchor"></a>
  916. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">namespaceURI</span><a href="#namespaceURI" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  917. <div class="tsd-signature">namespaceURI<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div>
  918. <div class="tsd-comment tsd-typography"><p>Returns the namespace.</p>
  919. </div><aside class="tsd-sources">
  920. <p>Inherited from HTMLElement.namespaceURI</p>
  921. <ul>
  922. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4866</li></ul></aside></section>
  923. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="nextElementSibling" class="tsd-anchor"></a>
  924. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">next<wbr/>Element<wbr/>Sibling</span><a href="#nextElementSibling" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  925. <div class="tsd-signature">next<wbr/>Element<wbr/>Sibling<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></div>
  926. <div class="tsd-comment tsd-typography"><p>Returns the first following sibling that is an element, and null otherwise.</p>
  927. </div><aside class="tsd-sources">
  928. <p>Inherited from HTMLElement.nextElementSibling</p>
  929. <ul>
  930. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10209</li></ul></aside></section>
  931. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="nextSibling" class="tsd-anchor"></a>
  932. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">next<wbr/>Sibling</span><a href="#nextSibling" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  933. <div class="tsd-signature">next<wbr/>Sibling<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.ChildNode.html" class="tsd-signature-type" data-tsd-kind="Interface">ChildNode</a></div>
  934. <div class="tsd-comment tsd-typography"><p>Returns the next sibling.</p>
  935. </div><aside class="tsd-sources">
  936. <p>Inherited from HTMLElement.nextSibling</p>
  937. <ul>
  938. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10052</li></ul></aside></section>
  939. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="nodeName" class="tsd-anchor"></a>
  940. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">node<wbr/>Name</span><a href="#nodeName" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  941. <div class="tsd-signature">node<wbr/>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
  942. <div class="tsd-comment tsd-typography"><p>Returns a string appropriate for the type of node.</p>
  943. </div><aside class="tsd-sources">
  944. <p>Inherited from HTMLElement.nodeName</p>
  945. <ul>
  946. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10054</li></ul></aside></section>
  947. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="nodeType" class="tsd-anchor"></a>
  948. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">node<wbr/>Type</span><a href="#nodeType" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  949. <div class="tsd-signature">node<wbr/>Type<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
  950. <div class="tsd-comment tsd-typography"><p>Returns the type of node.</p>
  951. </div><aside class="tsd-sources">
  952. <p>Inherited from HTMLElement.nodeType</p>
  953. <ul>
  954. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10056</li></ul></aside></section>
  955. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="nodeValue" class="tsd-anchor"></a>
  956. <h3 class="tsd-anchor-link"><span class="deprecated">node<wbr/>Value</span><a href="#nodeValue" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  957. <div class="tsd-signature">node<wbr/>Value<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  958. <p>Inherited from HTMLElement.nodeValue</p>
  959. <ul>
  960. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10057</li></ul></aside></section>
  961. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="nonce" class="tsd-anchor"></a>
  962. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span class="deprecated">nonce</span><a href="#nonce" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  963. <div class="tsd-signature">nonce<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  964. <p>Inherited from HTMLElement.nonce</p>
  965. <ul>
  966. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:7549</li></ul></aside></section>
  967. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="offsetHeight" class="tsd-anchor"></a>
  968. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">offset<wbr/>Height</span><a href="#offsetHeight" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  969. <div class="tsd-signature">offset<wbr/>Height<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  970. <p>Inherited from HTMLElement.offsetHeight</p>
  971. <ul>
  972. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6351</li></ul></aside></section>
  973. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="offsetLeft" class="tsd-anchor"></a>
  974. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">offset<wbr/>Left</span><a href="#offsetLeft" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  975. <div class="tsd-signature">offset<wbr/>Left<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  976. <p>Inherited from HTMLElement.offsetLeft</p>
  977. <ul>
  978. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6352</li></ul></aside></section>
  979. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="offsetParent" class="tsd-anchor"></a>
  980. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">offset<wbr/>Parent</span><a href="#offsetParent" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  981. <div class="tsd-signature">offset<wbr/>Parent<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></div><aside class="tsd-sources">
  982. <p>Inherited from HTMLElement.offsetParent</p>
  983. <ul>
  984. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6353</li></ul></aside></section>
  985. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="offsetTop" class="tsd-anchor"></a>
  986. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">offset<wbr/>Top</span><a href="#offsetTop" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  987. <div class="tsd-signature">offset<wbr/>Top<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  988. <p>Inherited from HTMLElement.offsetTop</p>
  989. <ul>
  990. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6354</li></ul></aside></section>
  991. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="offsetWidth" class="tsd-anchor"></a>
  992. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">offset<wbr/>Width</span><a href="#offsetWidth" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  993. <div class="tsd-signature">offset<wbr/>Width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  994. <p>Inherited from HTMLElement.offsetWidth</p>
  995. <ul>
  996. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6355</li></ul></aside></section>
  997. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onabort" class="tsd-anchor"></a>
  998. <h3 class="tsd-anchor-link"><span class="deprecated">onabort</span><a href="#onabort" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  999. <div class="tsd-signature">onabort<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">UIEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1000. <div class="tsd-comment tsd-typography"><p>Fires when the user aborts the download.</p>
  1001. <h3>Param</h3><p>The event.</p>
  1002. </div><aside class="tsd-sources">
  1003. <p>Inherited from HTMLElement.onabort</p>
  1004. <ul>
  1005. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5647</li></ul></aside></section>
  1006. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onanimationcancel" class="tsd-anchor"></a>
  1007. <h3 class="tsd-anchor-link"><span class="deprecated">onanimationcancel</span><a href="#onanimationcancel" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1008. <div class="tsd-signature">onanimationcancel<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AnimationEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1009. <p>Inherited from HTMLElement.onanimationcancel</p>
  1010. <ul>
  1011. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5648</li></ul></aside></section>
  1012. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onanimationend" class="tsd-anchor"></a>
  1013. <h3 class="tsd-anchor-link"><span class="deprecated">onanimationend</span><a href="#onanimationend" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1014. <div class="tsd-signature">onanimationend<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AnimationEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1015. <p>Inherited from HTMLElement.onanimationend</p>
  1016. <ul>
  1017. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5649</li></ul></aside></section>
  1018. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onanimationiteration" class="tsd-anchor"></a>
  1019. <h3 class="tsd-anchor-link"><span class="deprecated">onanimationiteration</span><a href="#onanimationiteration" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1020. <div class="tsd-signature">onanimationiteration<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AnimationEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1021. <p>Inherited from HTMLElement.onanimationiteration</p>
  1022. <ul>
  1023. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5650</li></ul></aside></section>
  1024. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onanimationstart" class="tsd-anchor"></a>
  1025. <h3 class="tsd-anchor-link"><span class="deprecated">onanimationstart</span><a href="#onanimationstart" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1026. <div class="tsd-signature">onanimationstart<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">AnimationEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1027. <p>Inherited from HTMLElement.onanimationstart</p>
  1028. <ul>
  1029. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5651</li></ul></aside></section>
  1030. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onauxclick" class="tsd-anchor"></a>
  1031. <h3 class="tsd-anchor-link"><span class="deprecated">onauxclick</span><a href="#onauxclick" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1032. <div class="tsd-signature">onauxclick<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1033. <p>Inherited from HTMLElement.onauxclick</p>
  1034. <ul>
  1035. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5652</li></ul></aside></section>
  1036. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onblur" class="tsd-anchor"></a>
  1037. <h3 class="tsd-anchor-link"><span class="deprecated">onblur</span><a href="#onblur" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1038. <div class="tsd-signature">onblur<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">FocusEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1039. <div class="tsd-comment tsd-typography"><p>Fires when the object loses the input focus.</p>
  1040. <h3>Param</h3><p>The focus event.</p>
  1041. </div><aside class="tsd-sources">
  1042. <p>Inherited from HTMLElement.onblur</p>
  1043. <ul>
  1044. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5657</li></ul></aside></section>
  1045. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="oncanplay" class="tsd-anchor"></a>
  1046. <h3 class="tsd-anchor-link"><span class="deprecated">oncanplay</span><a href="#oncanplay" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1047. <div class="tsd-signature">oncanplay<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1048. <div class="tsd-comment tsd-typography"><p>Occurs when playback is possible, but would require further buffering.</p>
  1049. <h3>Param</h3><p>The event.</p>
  1050. </div><aside class="tsd-sources">
  1051. <p>Inherited from HTMLElement.oncanplay</p>
  1052. <ul>
  1053. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5662</li></ul></aside></section>
  1054. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="oncanplaythrough" class="tsd-anchor"></a>
  1055. <h3 class="tsd-anchor-link"><span class="deprecated">oncanplaythrough</span><a href="#oncanplaythrough" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1056. <div class="tsd-signature">oncanplaythrough<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1057. <p>Inherited from HTMLElement.oncanplaythrough</p>
  1058. <ul>
  1059. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5663</li></ul></aside></section>
  1060. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onchange" class="tsd-anchor"></a>
  1061. <h3 class="tsd-anchor-link"><span class="deprecated">onchange</span><a href="#onchange" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1062. <div class="tsd-signature">onchange<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1063. <div class="tsd-comment tsd-typography"><p>Fires when the contents of the object or selection have changed.</p>
  1064. <h3>Param</h3><p>The event.</p>
  1065. </div><aside class="tsd-sources">
  1066. <p>Inherited from HTMLElement.onchange</p>
  1067. <ul>
  1068. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5668</li></ul></aside></section>
  1069. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onclick" class="tsd-anchor"></a>
  1070. <h3 class="tsd-anchor-link"><span class="deprecated">onclick</span><a href="#onclick" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1071. <div class="tsd-signature">onclick<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1072. <div class="tsd-comment tsd-typography"><p>Fires when the user clicks the left mouse button on the object</p>
  1073. <h3>Param</h3><p>The mouse event.</p>
  1074. </div><aside class="tsd-sources">
  1075. <p>Inherited from HTMLElement.onclick</p>
  1076. <ul>
  1077. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5673</li></ul></aside></section>
  1078. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onclose" class="tsd-anchor"></a>
  1079. <h3 class="tsd-anchor-link"><span class="deprecated">onclose</span><a href="#onclose" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1080. <div class="tsd-signature">onclose<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1081. <p>Inherited from HTMLElement.onclose</p>
  1082. <ul>
  1083. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5674</li></ul></aside></section>
  1084. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="oncontextmenu" class="tsd-anchor"></a>
  1085. <h3 class="tsd-anchor-link"><span class="deprecated">oncontextmenu</span><a href="#oncontextmenu" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1086. <div class="tsd-signature">oncontextmenu<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1087. <div class="tsd-comment tsd-typography"><p>Fires when the user clicks the right mouse button in the client area, opening the context menu.</p>
  1088. <h3>Param</h3><p>The mouse event.</p>
  1089. </div><aside class="tsd-sources">
  1090. <p>Inherited from HTMLElement.oncontextmenu</p>
  1091. <ul>
  1092. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5679</li></ul></aside></section>
  1093. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="oncopy" class="tsd-anchor"></a>
  1094. <h3 class="tsd-anchor-link"><span class="deprecated">oncopy</span><a href="#oncopy" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1095. <div class="tsd-signature">oncopy<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.DocumentAndElementEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">DocumentAndElementEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ClipboardEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1096. <p>Inherited from HTMLElement.oncopy</p>
  1097. <ul>
  1098. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4708</li></ul></aside></section>
  1099. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="oncuechange" class="tsd-anchor"></a>
  1100. <h3 class="tsd-anchor-link"><span class="deprecated">oncuechange</span><a href="#oncuechange" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1101. <div class="tsd-signature">oncuechange<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1102. <p>Inherited from HTMLElement.oncuechange</p>
  1103. <ul>
  1104. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5680</li></ul></aside></section>
  1105. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="oncut" class="tsd-anchor"></a>
  1106. <h3 class="tsd-anchor-link"><span class="deprecated">oncut</span><a href="#oncut" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1107. <div class="tsd-signature">oncut<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.DocumentAndElementEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">DocumentAndElementEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ClipboardEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1108. <p>Inherited from HTMLElement.oncut</p>
  1109. <ul>
  1110. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4709</li></ul></aside></section>
  1111. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondblclick" class="tsd-anchor"></a>
  1112. <h3 class="tsd-anchor-link"><span class="deprecated">ondblclick</span><a href="#ondblclick" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1113. <div class="tsd-signature">ondblclick<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1114. <div class="tsd-comment tsd-typography"><p>Fires when the user double-clicks the object.</p>
  1115. <h3>Param</h3><p>The mouse event.</p>
  1116. </div><aside class="tsd-sources">
  1117. <p>Inherited from HTMLElement.ondblclick</p>
  1118. <ul>
  1119. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5685</li></ul></aside></section>
  1120. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondrag" class="tsd-anchor"></a>
  1121. <h3 class="tsd-anchor-link"><span class="deprecated">ondrag</span><a href="#ondrag" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1122. <div class="tsd-signature">ondrag<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">DragEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1123. <div class="tsd-comment tsd-typography"><p>Fires on the source object continuously during a drag operation.</p>
  1124. <h3>Param</h3><p>The event.</p>
  1125. </div><aside class="tsd-sources">
  1126. <p>Inherited from HTMLElement.ondrag</p>
  1127. <ul>
  1128. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5690</li></ul></aside></section>
  1129. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondragend" class="tsd-anchor"></a>
  1130. <h3 class="tsd-anchor-link"><span class="deprecated">ondragend</span><a href="#ondragend" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1131. <div class="tsd-signature">ondragend<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">DragEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1132. <div class="tsd-comment tsd-typography"><p>Fires on the source object when the user releases the mouse at the close of a drag operation.</p>
  1133. <h3>Param</h3><p>The event.</p>
  1134. </div><aside class="tsd-sources">
  1135. <p>Inherited from HTMLElement.ondragend</p>
  1136. <ul>
  1137. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5695</li></ul></aside></section>
  1138. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondragenter" class="tsd-anchor"></a>
  1139. <h3 class="tsd-anchor-link"><span class="deprecated">ondragenter</span><a href="#ondragenter" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1140. <div class="tsd-signature">ondragenter<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">DragEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1141. <div class="tsd-comment tsd-typography"><p>Fires on the target element when the user drags the object to a valid drop target.</p>
  1142. <h3>Param</h3><p>The drag event.</p>
  1143. </div><aside class="tsd-sources">
  1144. <p>Inherited from HTMLElement.ondragenter</p>
  1145. <ul>
  1146. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5700</li></ul></aside></section>
  1147. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondragleave" class="tsd-anchor"></a>
  1148. <h3 class="tsd-anchor-link"><span class="deprecated">ondragleave</span><a href="#ondragleave" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1149. <div class="tsd-signature">ondragleave<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">DragEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1150. <div class="tsd-comment tsd-typography"><p>Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.</p>
  1151. <h3>Param</h3><p>The drag event.</p>
  1152. </div><aside class="tsd-sources">
  1153. <p>Inherited from HTMLElement.ondragleave</p>
  1154. <ul>
  1155. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5705</li></ul></aside></section>
  1156. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondragover" class="tsd-anchor"></a>
  1157. <h3 class="tsd-anchor-link"><span class="deprecated">ondragover</span><a href="#ondragover" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1158. <div class="tsd-signature">ondragover<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">DragEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1159. <div class="tsd-comment tsd-typography"><p>Fires on the target element continuously while the user drags the object over a valid drop target.</p>
  1160. <h3>Param</h3><p>The event.</p>
  1161. </div><aside class="tsd-sources">
  1162. <p>Inherited from HTMLElement.ondragover</p>
  1163. <ul>
  1164. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5710</li></ul></aside></section>
  1165. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondragstart" class="tsd-anchor"></a>
  1166. <h3 class="tsd-anchor-link"><span class="deprecated">ondragstart</span><a href="#ondragstart" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1167. <div class="tsd-signature">ondragstart<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">DragEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1168. <div class="tsd-comment tsd-typography"><p>Fires on the source object when the user starts to drag a text selection or selected object.</p>
  1169. <h3>Param</h3><p>The event.</p>
  1170. </div><aside class="tsd-sources">
  1171. <p>Inherited from HTMLElement.ondragstart</p>
  1172. <ul>
  1173. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5715</li></ul></aside></section>
  1174. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondrop" class="tsd-anchor"></a>
  1175. <h3 class="tsd-anchor-link"><span class="deprecated">ondrop</span><a href="#ondrop" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1176. <div class="tsd-signature">ondrop<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">DragEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1177. <p>Inherited from HTMLElement.ondrop</p>
  1178. <ul>
  1179. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5716</li></ul></aside></section>
  1180. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ondurationchange" class="tsd-anchor"></a>
  1181. <h3 class="tsd-anchor-link"><span class="deprecated">ondurationchange</span><a href="#ondurationchange" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1182. <div class="tsd-signature">ondurationchange<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1183. <div class="tsd-comment tsd-typography"><p>Occurs when the duration attribute is updated.</p>
  1184. <h3>Param</h3><p>The event.</p>
  1185. </div><aside class="tsd-sources">
  1186. <p>Inherited from HTMLElement.ondurationchange</p>
  1187. <ul>
  1188. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5721</li></ul></aside></section>
  1189. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onemptied" class="tsd-anchor"></a>
  1190. <h3 class="tsd-anchor-link"><span class="deprecated">onemptied</span><a href="#onemptied" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1191. <div class="tsd-signature">onemptied<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1192. <div class="tsd-comment tsd-typography"><p>Occurs when the media element is reset to its initial state.</p>
  1193. <h3>Param</h3><p>The event.</p>
  1194. </div><aside class="tsd-sources">
  1195. <p>Inherited from HTMLElement.onemptied</p>
  1196. <ul>
  1197. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5726</li></ul></aside></section>
  1198. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onended" class="tsd-anchor"></a>
  1199. <h3 class="tsd-anchor-link"><span class="deprecated">onended</span><a href="#onended" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1200. <div class="tsd-signature">onended<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1201. <div class="tsd-comment tsd-typography"><p>Occurs when the end of playback is reached.</p>
  1202. <h3>Param</h3><p>The event</p>
  1203. </div><aside class="tsd-sources">
  1204. <p>Inherited from HTMLElement.onended</p>
  1205. <ul>
  1206. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5731</li></ul></aside></section>
  1207. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onerror" class="tsd-anchor"></a>
  1208. <h3 class="tsd-anchor-link"><span class="deprecated">onerror</span><a href="#onerror" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1209. <div class="tsd-signature">onerror<span class="tsd-signature-symbol">:</span> <a href="../types/RcsbFv3DAssembly._internal_.OnErrorEventHandler.html" class="tsd-signature-type" data-tsd-kind="Type alias">OnErrorEventHandler</a></div>
  1210. <div class="tsd-comment tsd-typography"><p>Fires when an error occurs during object loading.</p>
  1211. <h3>Param</h3><p>The event.</p>
  1212. </div><aside class="tsd-sources">
  1213. <p>Inherited from HTMLElement.onerror</p>
  1214. <ul>
  1215. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5736</li></ul></aside></section>
  1216. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onfocus" class="tsd-anchor"></a>
  1217. <h3 class="tsd-anchor-link"><span class="deprecated">onfocus</span><a href="#onfocus" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1218. <div class="tsd-signature">onfocus<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">FocusEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1219. <div class="tsd-comment tsd-typography"><p>Fires when the object receives focus.</p>
  1220. <h3>Param</h3><p>The event.</p>
  1221. </div><aside class="tsd-sources">
  1222. <p>Inherited from HTMLElement.onfocus</p>
  1223. <ul>
  1224. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5741</li></ul></aside></section>
  1225. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onformdata" class="tsd-anchor"></a>
  1226. <h3 class="tsd-anchor-link"><span class="deprecated">onformdata</span><a href="#onformdata" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1227. <div class="tsd-signature">onformdata<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.FormDataEvent-1.html" class="tsd-signature-type" data-tsd-kind="Variable">FormDataEvent</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1228. <p>Inherited from HTMLElement.onformdata</p>
  1229. <ul>
  1230. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5742</li></ul></aside></section>
  1231. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onfullscreenchange" class="tsd-anchor"></a>
  1232. <h3 class="tsd-anchor-link"><span class="deprecated">onfullscreenchange</span><a href="#onfullscreenchange" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1233. <div class="tsd-signature">onfullscreenchange<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Element</span>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1234. <p>Inherited from HTMLElement.onfullscreenchange</p>
  1235. <ul>
  1236. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4867</li></ul></aside></section>
  1237. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onfullscreenerror" class="tsd-anchor"></a>
  1238. <h3 class="tsd-anchor-link"><span class="deprecated">onfullscreenerror</span><a href="#onfullscreenerror" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1239. <div class="tsd-signature">onfullscreenerror<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Element</span>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1240. <p>Inherited from HTMLElement.onfullscreenerror</p>
  1241. <ul>
  1242. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4868</li></ul></aside></section>
  1243. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ongotpointercapture" class="tsd-anchor"></a>
  1244. <h3 class="tsd-anchor-link"><span class="deprecated">ongotpointercapture</span><a href="#ongotpointercapture" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1245. <div class="tsd-signature">ongotpointercapture<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1246. <p>Inherited from HTMLElement.ongotpointercapture</p>
  1247. <ul>
  1248. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5743</li></ul></aside></section>
  1249. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="oninput" class="tsd-anchor"></a>
  1250. <h3 class="tsd-anchor-link"><span class="deprecated">oninput</span><a href="#oninput" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1251. <div class="tsd-signature">oninput<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1252. <p>Inherited from HTMLElement.oninput</p>
  1253. <ul>
  1254. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5744</li></ul></aside></section>
  1255. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="oninvalid" class="tsd-anchor"></a>
  1256. <h3 class="tsd-anchor-link"><span class="deprecated">oninvalid</span><a href="#oninvalid" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1257. <div class="tsd-signature">oninvalid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1258. <p>Inherited from HTMLElement.oninvalid</p>
  1259. <ul>
  1260. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5745</li></ul></aside></section>
  1261. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onkeydown" class="tsd-anchor"></a>
  1262. <h3 class="tsd-anchor-link"><span class="deprecated">onkeydown</span><a href="#onkeydown" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1263. <div class="tsd-signature">onkeydown<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">KeyboardEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1264. <div class="tsd-comment tsd-typography"><p>Fires when the user presses a key.</p>
  1265. <h3>Param</h3><p>The keyboard event</p>
  1266. </div><aside class="tsd-sources">
  1267. <p>Inherited from HTMLElement.onkeydown</p>
  1268. <ul>
  1269. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5750</li></ul></aside></section>
  1270. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onkeypress" class="tsd-anchor"></a>
  1271. <h3 class="tsd-anchor-link"><span class="deprecated">onkeypress</span><a href="#onkeypress" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1272. <div class="tsd-signature">onkeypress<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">KeyboardEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1273. <div class="tsd-comment tsd-typography"><p>Fires when the user presses an alphanumeric key.</p>
  1274. <h3>Param</h3><p>The event.</p>
  1275. <h3>Deprecated</h3></div><aside class="tsd-sources">
  1276. <p>Inherited from HTMLElement.onkeypress</p>
  1277. <ul>
  1278. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5756</li></ul></aside></section>
  1279. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onkeyup" class="tsd-anchor"></a>
  1280. <h3 class="tsd-anchor-link"><span class="deprecated">onkeyup</span><a href="#onkeyup" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1281. <div class="tsd-signature">onkeyup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">KeyboardEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1282. <div class="tsd-comment tsd-typography"><p>Fires when the user releases a key.</p>
  1283. <h3>Param</h3><p>The keyboard event</p>
  1284. </div><aside class="tsd-sources">
  1285. <p>Inherited from HTMLElement.onkeyup</p>
  1286. <ul>
  1287. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5761</li></ul></aside></section>
  1288. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onload" class="tsd-anchor"></a>
  1289. <h3 class="tsd-anchor-link"><span class="deprecated">onload</span><a href="#onload" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1290. <div class="tsd-signature">onload<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1291. <div class="tsd-comment tsd-typography"><p>Fires immediately after the browser loads the object.</p>
  1292. <h3>Param</h3><p>The event.</p>
  1293. </div><aside class="tsd-sources">
  1294. <p>Inherited from HTMLElement.onload</p>
  1295. <ul>
  1296. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5766</li></ul></aside></section>
  1297. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onloadeddata" class="tsd-anchor"></a>
  1298. <h3 class="tsd-anchor-link"><span class="deprecated">onloadeddata</span><a href="#onloadeddata" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1299. <div class="tsd-signature">onloadeddata<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1300. <div class="tsd-comment tsd-typography"><p>Occurs when media data is loaded at the current playback position.</p>
  1301. <h3>Param</h3><p>The event.</p>
  1302. </div><aside class="tsd-sources">
  1303. <p>Inherited from HTMLElement.onloadeddata</p>
  1304. <ul>
  1305. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5771</li></ul></aside></section>
  1306. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onloadedmetadata" class="tsd-anchor"></a>
  1307. <h3 class="tsd-anchor-link"><span class="deprecated">onloadedmetadata</span><a href="#onloadedmetadata" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1308. <div class="tsd-signature">onloadedmetadata<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1309. <div class="tsd-comment tsd-typography"><p>Occurs when the duration and dimensions of the media have been determined.</p>
  1310. <h3>Param</h3><p>The event.</p>
  1311. </div><aside class="tsd-sources">
  1312. <p>Inherited from HTMLElement.onloadedmetadata</p>
  1313. <ul>
  1314. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5776</li></ul></aside></section>
  1315. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onloadstart" class="tsd-anchor"></a>
  1316. <h3 class="tsd-anchor-link"><span class="deprecated">onloadstart</span><a href="#onloadstart" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1317. <div class="tsd-signature">onloadstart<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1318. <div class="tsd-comment tsd-typography"><p>Occurs when Internet Explorer begins looking for media data.</p>
  1319. <h3>Param</h3><p>The event.</p>
  1320. </div><aside class="tsd-sources">
  1321. <p>Inherited from HTMLElement.onloadstart</p>
  1322. <ul>
  1323. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5781</li></ul></aside></section>
  1324. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onlostpointercapture" class="tsd-anchor"></a>
  1325. <h3 class="tsd-anchor-link"><span class="deprecated">onlostpointercapture</span><a href="#onlostpointercapture" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1326. <div class="tsd-signature">onlostpointercapture<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1327. <p>Inherited from HTMLElement.onlostpointercapture</p>
  1328. <ul>
  1329. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5782</li></ul></aside></section>
  1330. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onmousedown" class="tsd-anchor"></a>
  1331. <h3 class="tsd-anchor-link"><span class="deprecated">onmousedown</span><a href="#onmousedown" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1332. <div class="tsd-signature">onmousedown<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1333. <div class="tsd-comment tsd-typography"><p>Fires when the user clicks the object with either mouse button.</p>
  1334. <h3>Param</h3><p>The mouse event.</p>
  1335. </div><aside class="tsd-sources">
  1336. <p>Inherited from HTMLElement.onmousedown</p>
  1337. <ul>
  1338. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5787</li></ul></aside></section>
  1339. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onmouseenter" class="tsd-anchor"></a>
  1340. <h3 class="tsd-anchor-link"><span class="deprecated">onmouseenter</span><a href="#onmouseenter" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1341. <div class="tsd-signature">onmouseenter<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1342. <p>Inherited from HTMLElement.onmouseenter</p>
  1343. <ul>
  1344. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5788</li></ul></aside></section>
  1345. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onmouseleave" class="tsd-anchor"></a>
  1346. <h3 class="tsd-anchor-link"><span class="deprecated">onmouseleave</span><a href="#onmouseleave" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1347. <div class="tsd-signature">onmouseleave<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1348. <p>Inherited from HTMLElement.onmouseleave</p>
  1349. <ul>
  1350. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5789</li></ul></aside></section>
  1351. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onmousemove" class="tsd-anchor"></a>
  1352. <h3 class="tsd-anchor-link"><span class="deprecated">onmousemove</span><a href="#onmousemove" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1353. <div class="tsd-signature">onmousemove<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1354. <div class="tsd-comment tsd-typography"><p>Fires when the user moves the mouse over the object.</p>
  1355. <h3>Param</h3><p>The mouse event.</p>
  1356. </div><aside class="tsd-sources">
  1357. <p>Inherited from HTMLElement.onmousemove</p>
  1358. <ul>
  1359. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5794</li></ul></aside></section>
  1360. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onmouseout" class="tsd-anchor"></a>
  1361. <h3 class="tsd-anchor-link"><span class="deprecated">onmouseout</span><a href="#onmouseout" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1362. <div class="tsd-signature">onmouseout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1363. <div class="tsd-comment tsd-typography"><p>Fires when the user moves the mouse pointer outside the boundaries of the object.</p>
  1364. <h3>Param</h3><p>The mouse event.</p>
  1365. </div><aside class="tsd-sources">
  1366. <p>Inherited from HTMLElement.onmouseout</p>
  1367. <ul>
  1368. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5799</li></ul></aside></section>
  1369. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onmouseover" class="tsd-anchor"></a>
  1370. <h3 class="tsd-anchor-link"><span class="deprecated">onmouseover</span><a href="#onmouseover" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1371. <div class="tsd-signature">onmouseover<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1372. <div class="tsd-comment tsd-typography"><p>Fires when the user moves the mouse pointer into the object.</p>
  1373. <h3>Param</h3><p>The mouse event.</p>
  1374. </div><aside class="tsd-sources">
  1375. <p>Inherited from HTMLElement.onmouseover</p>
  1376. <ul>
  1377. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5804</li></ul></aside></section>
  1378. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onmouseup" class="tsd-anchor"></a>
  1379. <h3 class="tsd-anchor-link"><span class="deprecated">onmouseup</span><a href="#onmouseup" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1380. <div class="tsd-signature">onmouseup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">MouseEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1381. <div class="tsd-comment tsd-typography"><p>Fires when the user releases a mouse button while the mouse is over the object.</p>
  1382. <h3>Param</h3><p>The mouse event.</p>
  1383. </div><aside class="tsd-sources">
  1384. <p>Inherited from HTMLElement.onmouseup</p>
  1385. <ul>
  1386. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5809</li></ul></aside></section>
  1387. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpaste" class="tsd-anchor"></a>
  1388. <h3 class="tsd-anchor-link"><span class="deprecated">onpaste</span><a href="#onpaste" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1389. <div class="tsd-signature">onpaste<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.DocumentAndElementEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">DocumentAndElementEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ClipboardEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1390. <p>Inherited from HTMLElement.onpaste</p>
  1391. <ul>
  1392. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4710</li></ul></aside></section>
  1393. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpause" class="tsd-anchor"></a>
  1394. <h3 class="tsd-anchor-link"><span class="deprecated">onpause</span><a href="#onpause" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1395. <div class="tsd-signature">onpause<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1396. <div class="tsd-comment tsd-typography"><p>Occurs when playback is paused.</p>
  1397. <h3>Param</h3><p>The event.</p>
  1398. </div><aside class="tsd-sources">
  1399. <p>Inherited from HTMLElement.onpause</p>
  1400. <ul>
  1401. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5814</li></ul></aside></section>
  1402. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onplay" class="tsd-anchor"></a>
  1403. <h3 class="tsd-anchor-link"><span class="deprecated">onplay</span><a href="#onplay" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1404. <div class="tsd-signature">onplay<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1405. <div class="tsd-comment tsd-typography"><p>Occurs when the play method is requested.</p>
  1406. <h3>Param</h3><p>The event.</p>
  1407. </div><aside class="tsd-sources">
  1408. <p>Inherited from HTMLElement.onplay</p>
  1409. <ul>
  1410. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5819</li></ul></aside></section>
  1411. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onplaying" class="tsd-anchor"></a>
  1412. <h3 class="tsd-anchor-link"><span class="deprecated">onplaying</span><a href="#onplaying" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1413. <div class="tsd-signature">onplaying<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1414. <div class="tsd-comment tsd-typography"><p>Occurs when the audio or video has started playing.</p>
  1415. <h3>Param</h3><p>The event.</p>
  1416. </div><aside class="tsd-sources">
  1417. <p>Inherited from HTMLElement.onplaying</p>
  1418. <ul>
  1419. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5824</li></ul></aside></section>
  1420. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpointercancel" class="tsd-anchor"></a>
  1421. <h3 class="tsd-anchor-link"><span class="deprecated">onpointercancel</span><a href="#onpointercancel" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1422. <div class="tsd-signature">onpointercancel<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1423. <p>Inherited from HTMLElement.onpointercancel</p>
  1424. <ul>
  1425. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5825</li></ul></aside></section>
  1426. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpointerdown" class="tsd-anchor"></a>
  1427. <h3 class="tsd-anchor-link"><span class="deprecated">onpointerdown</span><a href="#onpointerdown" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1428. <div class="tsd-signature">onpointerdown<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1429. <p>Inherited from HTMLElement.onpointerdown</p>
  1430. <ul>
  1431. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5826</li></ul></aside></section>
  1432. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpointerenter" class="tsd-anchor"></a>
  1433. <h3 class="tsd-anchor-link"><span class="deprecated">onpointerenter</span><a href="#onpointerenter" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1434. <div class="tsd-signature">onpointerenter<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1435. <p>Inherited from HTMLElement.onpointerenter</p>
  1436. <ul>
  1437. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5827</li></ul></aside></section>
  1438. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpointerleave" class="tsd-anchor"></a>
  1439. <h3 class="tsd-anchor-link"><span class="deprecated">onpointerleave</span><a href="#onpointerleave" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1440. <div class="tsd-signature">onpointerleave<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1441. <p>Inherited from HTMLElement.onpointerleave</p>
  1442. <ul>
  1443. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5828</li></ul></aside></section>
  1444. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpointermove" class="tsd-anchor"></a>
  1445. <h3 class="tsd-anchor-link"><span class="deprecated">onpointermove</span><a href="#onpointermove" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1446. <div class="tsd-signature">onpointermove<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1447. <p>Inherited from HTMLElement.onpointermove</p>
  1448. <ul>
  1449. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5829</li></ul></aside></section>
  1450. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpointerout" class="tsd-anchor"></a>
  1451. <h3 class="tsd-anchor-link"><span class="deprecated">onpointerout</span><a href="#onpointerout" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1452. <div class="tsd-signature">onpointerout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1453. <p>Inherited from HTMLElement.onpointerout</p>
  1454. <ul>
  1455. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5830</li></ul></aside></section>
  1456. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpointerover" class="tsd-anchor"></a>
  1457. <h3 class="tsd-anchor-link"><span class="deprecated">onpointerover</span><a href="#onpointerover" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1458. <div class="tsd-signature">onpointerover<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1459. <p>Inherited from HTMLElement.onpointerover</p>
  1460. <ul>
  1461. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5831</li></ul></aside></section>
  1462. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onpointerup" class="tsd-anchor"></a>
  1463. <h3 class="tsd-anchor-link"><span class="deprecated">onpointerup</span><a href="#onpointerup" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1464. <div class="tsd-signature">onpointerup<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">PointerEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1465. <p>Inherited from HTMLElement.onpointerup</p>
  1466. <ul>
  1467. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5832</li></ul></aside></section>
  1468. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onprogress" class="tsd-anchor"></a>
  1469. <h3 class="tsd-anchor-link"><span class="deprecated">onprogress</span><a href="#onprogress" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1470. <div class="tsd-signature">onprogress<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.ProgressEvent-2.html" class="tsd-signature-type" data-tsd-kind="Variable">ProgressEvent</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">EventTarget</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1471. <div class="tsd-comment tsd-typography"><p>Occurs to indicate progress while downloading media data.</p>
  1472. <h3>Param</h3><p>The event.</p>
  1473. </div><aside class="tsd-sources">
  1474. <p>Inherited from HTMLElement.onprogress</p>
  1475. <ul>
  1476. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5837</li></ul></aside></section>
  1477. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onratechange" class="tsd-anchor"></a>
  1478. <h3 class="tsd-anchor-link"><span class="deprecated">onratechange</span><a href="#onratechange" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1479. <div class="tsd-signature">onratechange<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1480. <div class="tsd-comment tsd-typography"><p>Occurs when the playback rate is increased or decreased.</p>
  1481. <h3>Param</h3><p>The event.</p>
  1482. </div><aside class="tsd-sources">
  1483. <p>Inherited from HTMLElement.onratechange</p>
  1484. <ul>
  1485. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5842</li></ul></aside></section>
  1486. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onreset" class="tsd-anchor"></a>
  1487. <h3 class="tsd-anchor-link"><span class="deprecated">onreset</span><a href="#onreset" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1488. <div class="tsd-signature">onreset<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1489. <div class="tsd-comment tsd-typography"><p>Fires when the user resets a form.</p>
  1490. <h3>Param</h3><p>The event.</p>
  1491. </div><aside class="tsd-sources">
  1492. <p>Inherited from HTMLElement.onreset</p>
  1493. <ul>
  1494. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5847</li></ul></aside></section>
  1495. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onresize" class="tsd-anchor"></a>
  1496. <h3 class="tsd-anchor-link"><span class="deprecated">onresize</span><a href="#onresize" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1497. <div class="tsd-signature">onresize<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">UIEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1498. <p>Inherited from HTMLElement.onresize</p>
  1499. <ul>
  1500. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5848</li></ul></aside></section>
  1501. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onscroll" class="tsd-anchor"></a>
  1502. <h3 class="tsd-anchor-link"><span class="deprecated">onscroll</span><a href="#onscroll" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1503. <div class="tsd-signature">onscroll<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1504. <div class="tsd-comment tsd-typography"><p>Fires when the user repositions the scroll box in the scroll bar on the object.</p>
  1505. <h3>Param</h3><p>The event.</p>
  1506. </div><aside class="tsd-sources">
  1507. <p>Inherited from HTMLElement.onscroll</p>
  1508. <ul>
  1509. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5853</li></ul></aside></section>
  1510. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onsecuritypolicyviolation" class="tsd-anchor"></a>
  1511. <h3 class="tsd-anchor-link"><span class="deprecated">onsecuritypolicyviolation</span><a href="#onsecuritypolicyviolation" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1512. <div class="tsd-signature">onsecuritypolicyviolation<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.SecurityPolicyViolationEvent-1.html" class="tsd-signature-type" data-tsd-kind="Variable">SecurityPolicyViolationEvent</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1513. <p>Inherited from HTMLElement.onsecuritypolicyviolation</p>
  1514. <ul>
  1515. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5854</li></ul></aside></section>
  1516. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onseeked" class="tsd-anchor"></a>
  1517. <h3 class="tsd-anchor-link"><span class="deprecated">onseeked</span><a href="#onseeked" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1518. <div class="tsd-signature">onseeked<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1519. <div class="tsd-comment tsd-typography"><p>Occurs when the seek operation ends.</p>
  1520. <h3>Param</h3><p>The event.</p>
  1521. </div><aside class="tsd-sources">
  1522. <p>Inherited from HTMLElement.onseeked</p>
  1523. <ul>
  1524. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5859</li></ul></aside></section>
  1525. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onseeking" class="tsd-anchor"></a>
  1526. <h3 class="tsd-anchor-link"><span class="deprecated">onseeking</span><a href="#onseeking" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1527. <div class="tsd-signature">onseeking<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1528. <div class="tsd-comment tsd-typography"><p>Occurs when the current playback position is moved.</p>
  1529. <h3>Param</h3><p>The event.</p>
  1530. </div><aside class="tsd-sources">
  1531. <p>Inherited from HTMLElement.onseeking</p>
  1532. <ul>
  1533. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5864</li></ul></aside></section>
  1534. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onselect" class="tsd-anchor"></a>
  1535. <h3 class="tsd-anchor-link"><span class="deprecated">onselect</span><a href="#onselect" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1536. <div class="tsd-signature">onselect<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1537. <div class="tsd-comment tsd-typography"><p>Fires when the current selection changes.</p>
  1538. <h3>Param</h3><p>The event.</p>
  1539. </div><aside class="tsd-sources">
  1540. <p>Inherited from HTMLElement.onselect</p>
  1541. <ul>
  1542. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5869</li></ul></aside></section>
  1543. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onselectionchange" class="tsd-anchor"></a>
  1544. <h3 class="tsd-anchor-link"><span class="deprecated">onselectionchange</span><a href="#onselectionchange" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1545. <div class="tsd-signature">onselectionchange<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1546. <p>Inherited from HTMLElement.onselectionchange</p>
  1547. <ul>
  1548. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5870</li></ul></aside></section>
  1549. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onselectstart" class="tsd-anchor"></a>
  1550. <h3 class="tsd-anchor-link"><span class="deprecated">onselectstart</span><a href="#onselectstart" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1551. <div class="tsd-signature">onselectstart<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1552. <p>Inherited from HTMLElement.onselectstart</p>
  1553. <ul>
  1554. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5871</li></ul></aside></section>
  1555. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onslotchange" class="tsd-anchor"></a>
  1556. <h3 class="tsd-anchor-link"><span class="deprecated">onslotchange</span><a href="#onslotchange" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1557. <div class="tsd-signature">onslotchange<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1558. <p>Inherited from HTMLElement.onslotchange</p>
  1559. <ul>
  1560. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5872</li></ul></aside></section>
  1561. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onstalled" class="tsd-anchor"></a>
  1562. <h3 class="tsd-anchor-link"><span class="deprecated">onstalled</span><a href="#onstalled" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1563. <div class="tsd-signature">onstalled<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1564. <div class="tsd-comment tsd-typography"><p>Occurs when the download has stopped.</p>
  1565. <h3>Param</h3><p>The event.</p>
  1566. </div><aside class="tsd-sources">
  1567. <p>Inherited from HTMLElement.onstalled</p>
  1568. <ul>
  1569. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5877</li></ul></aside></section>
  1570. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onsubmit" class="tsd-anchor"></a>
  1571. <h3 class="tsd-anchor-link"><span class="deprecated">onsubmit</span><a href="#onsubmit" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1572. <div class="tsd-signature">onsubmit<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.SubmitEvent-1.html" class="tsd-signature-type" data-tsd-kind="Variable">SubmitEvent</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1573. <p>Inherited from HTMLElement.onsubmit</p>
  1574. <ul>
  1575. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5878</li></ul></aside></section>
  1576. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onsuspend" class="tsd-anchor"></a>
  1577. <h3 class="tsd-anchor-link"><span class="deprecated">onsuspend</span><a href="#onsuspend" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1578. <div class="tsd-signature">onsuspend<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1579. <div class="tsd-comment tsd-typography"><p>Occurs if the load operation has been intentionally halted.</p>
  1580. <h3>Param</h3><p>The event.</p>
  1581. </div><aside class="tsd-sources">
  1582. <p>Inherited from HTMLElement.onsuspend</p>
  1583. <ul>
  1584. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5883</li></ul></aside></section>
  1585. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontimeupdate" class="tsd-anchor"></a>
  1586. <h3 class="tsd-anchor-link"><span class="deprecated">ontimeupdate</span><a href="#ontimeupdate" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1587. <div class="tsd-signature">ontimeupdate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1588. <div class="tsd-comment tsd-typography"><p>Occurs to indicate the current playback position.</p>
  1589. <h3>Param</h3><p>The event.</p>
  1590. </div><aside class="tsd-sources">
  1591. <p>Inherited from HTMLElement.ontimeupdate</p>
  1592. <ul>
  1593. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5888</li></ul></aside></section>
  1594. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontoggle" class="tsd-anchor"></a>
  1595. <h3 class="tsd-anchor-link"><span class="deprecated">ontoggle</span><a href="#ontoggle" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1596. <div class="tsd-signature">ontoggle<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1597. <p>Inherited from HTMLElement.ontoggle</p>
  1598. <ul>
  1599. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5889</li></ul></aside></section>
  1600. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontouchcancel" class="tsd-anchor"></a>
  1601. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span class="deprecated">ontouchcancel</span><a href="#ontouchcancel" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1602. <div class="tsd-signature">ontouchcancel<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TouchEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1603. <p>Inherited from HTMLElement.ontouchcancel</p>
  1604. <ul>
  1605. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5890</li></ul></aside></section>
  1606. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontouchend" class="tsd-anchor"></a>
  1607. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span class="deprecated">ontouchend</span><a href="#ontouchend" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1608. <div class="tsd-signature">ontouchend<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TouchEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1609. <p>Inherited from HTMLElement.ontouchend</p>
  1610. <ul>
  1611. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5891</li></ul></aside></section>
  1612. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontouchmove" class="tsd-anchor"></a>
  1613. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span class="deprecated">ontouchmove</span><a href="#ontouchmove" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1614. <div class="tsd-signature">ontouchmove<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TouchEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1615. <p>Inherited from HTMLElement.ontouchmove</p>
  1616. <ul>
  1617. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5892</li></ul></aside></section>
  1618. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontouchstart" class="tsd-anchor"></a>
  1619. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span class="deprecated">ontouchstart</span><a href="#ontouchstart" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1620. <div class="tsd-signature">ontouchstart<span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TouchEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1621. <p>Inherited from HTMLElement.ontouchstart</p>
  1622. <ul>
  1623. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5893</li></ul></aside></section>
  1624. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontransitioncancel" class="tsd-anchor"></a>
  1625. <h3 class="tsd-anchor-link"><span class="deprecated">ontransitioncancel</span><a href="#ontransitioncancel" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1626. <div class="tsd-signature">ontransitioncancel<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TransitionEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1627. <p>Inherited from HTMLElement.ontransitioncancel</p>
  1628. <ul>
  1629. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5894</li></ul></aside></section>
  1630. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontransitionend" class="tsd-anchor"></a>
  1631. <h3 class="tsd-anchor-link"><span class="deprecated">ontransitionend</span><a href="#ontransitionend" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1632. <div class="tsd-signature">ontransitionend<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TransitionEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1633. <p>Inherited from HTMLElement.ontransitionend</p>
  1634. <ul>
  1635. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5895</li></ul></aside></section>
  1636. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontransitionrun" class="tsd-anchor"></a>
  1637. <h3 class="tsd-anchor-link"><span class="deprecated">ontransitionrun</span><a href="#ontransitionrun" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1638. <div class="tsd-signature">ontransitionrun<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TransitionEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1639. <p>Inherited from HTMLElement.ontransitionrun</p>
  1640. <ul>
  1641. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5896</li></ul></aside></section>
  1642. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ontransitionstart" class="tsd-anchor"></a>
  1643. <h3 class="tsd-anchor-link"><span class="deprecated">ontransitionstart</span><a href="#ontransitionstart" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1644. <div class="tsd-signature">ontransitionstart<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TransitionEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1645. <p>Inherited from HTMLElement.ontransitionstart</p>
  1646. <ul>
  1647. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5897</li></ul></aside></section>
  1648. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onvolumechange" class="tsd-anchor"></a>
  1649. <h3 class="tsd-anchor-link"><span class="deprecated">onvolumechange</span><a href="#onvolumechange" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1650. <div class="tsd-signature">onvolumechange<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1651. <div class="tsd-comment tsd-typography"><p>Occurs when the volume is changed, or playback is muted or unmuted.</p>
  1652. <h3>Param</h3><p>The event.</p>
  1653. </div><aside class="tsd-sources">
  1654. <p>Inherited from HTMLElement.onvolumechange</p>
  1655. <ul>
  1656. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5902</li></ul></aside></section>
  1657. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onwaiting" class="tsd-anchor"></a>
  1658. <h3 class="tsd-anchor-link"><span class="deprecated">onwaiting</span><a href="#onwaiting" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1659. <div class="tsd-signature">onwaiting<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1660. <div class="tsd-comment tsd-typography"><p>Occurs when playback stops because the next frame of a video resource is not available.</p>
  1661. <h3>Param</h3><p>The event.</p>
  1662. </div><aside class="tsd-sources">
  1663. <p>Inherited from HTMLElement.onwaiting</p>
  1664. <ul>
  1665. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5907</li></ul></aside></section>
  1666. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onwebkitanimationend" class="tsd-anchor"></a>
  1667. <h3 class="tsd-anchor-link"><span class="deprecated">onwebkitanimationend</span><a href="#onwebkitanimationend" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1668. <div class="tsd-signature">onwebkitanimationend<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1669. <div class="tsd-comment tsd-typography">
  1670. <h3>Deprecated</h3><p>This is a legacy alias of <code>onanimationend</code>.</p>
  1671. </div><aside class="tsd-sources">
  1672. <p>Inherited from HTMLElement.onwebkitanimationend</p>
  1673. <ul>
  1674. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5909</li></ul></aside></section>
  1675. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onwebkitanimationiteration" class="tsd-anchor"></a>
  1676. <h3 class="tsd-anchor-link"><span class="deprecated">onwebkitanimationiteration</span><a href="#onwebkitanimationiteration" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1677. <div class="tsd-signature">onwebkitanimationiteration<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1678. <div class="tsd-comment tsd-typography">
  1679. <h3>Deprecated</h3><p>This is a legacy alias of <code>onanimationiteration</code>.</p>
  1680. </div><aside class="tsd-sources">
  1681. <p>Inherited from HTMLElement.onwebkitanimationiteration</p>
  1682. <ul>
  1683. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5911</li></ul></aside></section>
  1684. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onwebkitanimationstart" class="tsd-anchor"></a>
  1685. <h3 class="tsd-anchor-link"><span class="deprecated">onwebkitanimationstart</span><a href="#onwebkitanimationstart" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1686. <div class="tsd-signature">onwebkitanimationstart<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1687. <div class="tsd-comment tsd-typography">
  1688. <h3>Deprecated</h3><p>This is a legacy alias of <code>onanimationstart</code>.</p>
  1689. </div><aside class="tsd-sources">
  1690. <p>Inherited from HTMLElement.onwebkitanimationstart</p>
  1691. <ul>
  1692. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5913</li></ul></aside></section>
  1693. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onwebkittransitionend" class="tsd-anchor"></a>
  1694. <h3 class="tsd-anchor-link"><span class="deprecated">onwebkittransitionend</span><a href="#onwebkittransitionend" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1695. <div class="tsd-signature">onwebkittransitionend<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div>
  1696. <div class="tsd-comment tsd-typography">
  1697. <h3>Deprecated</h3><p>This is a legacy alias of <code>ontransitionend</code>.</p>
  1698. </div><aside class="tsd-sources">
  1699. <p>Inherited from HTMLElement.onwebkittransitionend</p>
  1700. <ul>
  1701. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5915</li></ul></aside></section>
  1702. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="onwheel" class="tsd-anchor"></a>
  1703. <h3 class="tsd-anchor-link"><span class="deprecated">onwheel</span><a href="#onwheel" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1704. <div class="tsd-signature">onwheel<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.GlobalEventHandlers.html" class="tsd-signature-type" data-tsd-kind="Interface">GlobalEventHandlers</a>, ev<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">WheelEvent</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><aside class="tsd-sources">
  1705. <p>Inherited from HTMLElement.onwheel</p>
  1706. <ul>
  1707. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5916</li></ul></aside></section>
  1708. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="outerHTML" class="tsd-anchor"></a>
  1709. <h3 class="tsd-anchor-link"><span class="deprecated">outerHTML</span><a href="#outerHTML" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1710. <div class="tsd-signature">outerHTML<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  1711. <p>Inherited from HTMLElement.outerHTML</p>
  1712. <ul>
  1713. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4869</li></ul></aside></section>
  1714. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="outerText" class="tsd-anchor"></a>
  1715. <h3 class="tsd-anchor-link"><span class="deprecated">outer<wbr/>Text</span><a href="#outerText" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1716. <div class="tsd-signature">outer<wbr/>Text<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  1717. <p>Inherited from HTMLElement.outerText</p>
  1718. <ul>
  1719. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6356</li></ul></aside></section>
  1720. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="ownerDocument" class="tsd-anchor"></a>
  1721. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">owner<wbr/>Document</span><a href="#ownerDocument" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1722. <div class="tsd-signature">owner<wbr/>Document<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Document</span></div><aside class="tsd-sources">
  1723. <p>Inherited from HTMLElement.ownerDocument</p>
  1724. <ul>
  1725. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4870</li></ul></aside></section>
  1726. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="parentElement" class="tsd-anchor"></a>
  1727. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">parent<wbr/>Element</span><a href="#parentElement" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1728. <div class="tsd-signature">parent<wbr/>Element<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">HTMLElement</span></div>
  1729. <div class="tsd-comment tsd-typography"><p>Returns the parent element.</p>
  1730. </div><aside class="tsd-sources">
  1731. <p>Inherited from HTMLElement.parentElement</p>
  1732. <ul>
  1733. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10061</li></ul></aside></section>
  1734. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="parentNode" class="tsd-anchor"></a>
  1735. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">parent<wbr/>Node</span><a href="#parentNode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1736. <div class="tsd-signature">parent<wbr/>Node<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.ParentNode.html" class="tsd-signature-type" data-tsd-kind="Interface">ParentNode</a></div>
  1737. <div class="tsd-comment tsd-typography"><p>Returns the parent.</p>
  1738. </div><aside class="tsd-sources">
  1739. <p>Inherited from HTMLElement.parentNode</p>
  1740. <ul>
  1741. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10063</li></ul></aside></section>
  1742. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="part" class="tsd-anchor"></a>
  1743. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">part</span><a href="#part" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1744. <div class="tsd-signature">part<span class="tsd-signature-symbol">:</span> <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.DOMTokenList-1.html" class="tsd-signature-type" data-tsd-kind="Variable">DOMTokenList</a></div><aside class="tsd-sources">
  1745. <p>Inherited from HTMLElement.part</p>
  1746. <ul>
  1747. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4871</li></ul></aside></section>
  1748. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="prefix" class="tsd-anchor"></a>
  1749. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">prefix</span><a href="#prefix" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1750. <div class="tsd-signature">prefix<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div>
  1751. <div class="tsd-comment tsd-typography"><p>Returns the namespace prefix.</p>
  1752. </div><aside class="tsd-sources">
  1753. <p>Inherited from HTMLElement.prefix</p>
  1754. <ul>
  1755. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4873</li></ul></aside></section>
  1756. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="previousElementSibling" class="tsd-anchor"></a>
  1757. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">previous<wbr/>Element<wbr/>Sibling</span><a href="#previousElementSibling" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1758. <div class="tsd-signature">previous<wbr/>Element<wbr/>Sibling<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></div>
  1759. <div class="tsd-comment tsd-typography"><p>Returns the first preceding sibling that is an element, and null otherwise.</p>
  1760. </div><aside class="tsd-sources">
  1761. <p>Inherited from HTMLElement.previousElementSibling</p>
  1762. <ul>
  1763. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10211</li></ul></aside></section>
  1764. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="previousSibling" class="tsd-anchor"></a>
  1765. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">previous<wbr/>Sibling</span><a href="#previousSibling" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1766. <div class="tsd-signature">previous<wbr/>Sibling<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.ChildNode.html" class="tsd-signature-type" data-tsd-kind="Interface">ChildNode</a></div>
  1767. <div class="tsd-comment tsd-typography"><p>Returns the previous sibling.</p>
  1768. </div><aside class="tsd-sources">
  1769. <p>Inherited from HTMLElement.previousSibling</p>
  1770. <ul>
  1771. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10065</li></ul></aside></section>
  1772. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="scrollHeight" class="tsd-anchor"></a>
  1773. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">scroll<wbr/>Height</span><a href="#scrollHeight" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1774. <div class="tsd-signature">scroll<wbr/>Height<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  1775. <p>Inherited from HTMLElement.scrollHeight</p>
  1776. <ul>
  1777. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4874</li></ul></aside></section>
  1778. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="scrollLeft" class="tsd-anchor"></a>
  1779. <h3 class="tsd-anchor-link"><span class="deprecated">scroll<wbr/>Left</span><a href="#scrollLeft" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1780. <div class="tsd-signature">scroll<wbr/>Left<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  1781. <p>Inherited from HTMLElement.scrollLeft</p>
  1782. <ul>
  1783. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4875</li></ul></aside></section>
  1784. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="scrollTop" class="tsd-anchor"></a>
  1785. <h3 class="tsd-anchor-link"><span class="deprecated">scroll<wbr/>Top</span><a href="#scrollTop" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1786. <div class="tsd-signature">scroll<wbr/>Top<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  1787. <p>Inherited from HTMLElement.scrollTop</p>
  1788. <ul>
  1789. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4876</li></ul></aside></section>
  1790. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="scrollWidth" class="tsd-anchor"></a>
  1791. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">scroll<wbr/>Width</span><a href="#scrollWidth" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1792. <div class="tsd-signature">scroll<wbr/>Width<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  1793. <p>Inherited from HTMLElement.scrollWidth</p>
  1794. <ul>
  1795. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4877</li></ul></aside></section>
  1796. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="shadowRoot" class="tsd-anchor"></a>
  1797. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">shadow<wbr/>Root</span><a href="#shadowRoot" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1798. <div class="tsd-signature">shadow<wbr/>Root<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.ShadowRoot-1.html" class="tsd-signature-type" data-tsd-kind="Variable">ShadowRoot</a></div>
  1799. <div class="tsd-comment tsd-typography"><p>Returns element&#39;s shadow root, if any, and if shadow root&#39;s mode is &quot;open&quot;, and null otherwise.</p>
  1800. </div><aside class="tsd-sources">
  1801. <p>Inherited from HTMLElement.shadowRoot</p>
  1802. <ul>
  1803. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4879</li></ul></aside></section>
  1804. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="slot" class="tsd-anchor"></a>
  1805. <h3 class="tsd-anchor-link"><span class="deprecated">slot</span><a href="#slot" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1806. <div class="tsd-signature">slot<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
  1807. <div class="tsd-comment tsd-typography"><p>Returns the value of element&#39;s slot content attribute. Can be set to change it.</p>
  1808. </div><aside class="tsd-sources">
  1809. <p>Inherited from HTMLElement.slot</p>
  1810. <ul>
  1811. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4881</li></ul></aside></section>
  1812. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="spellcheck" class="tsd-anchor"></a>
  1813. <h3 class="tsd-anchor-link"><span class="deprecated">spellcheck</span><a href="#spellcheck" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1814. <div class="tsd-signature">spellcheck<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
  1815. <p>Inherited from HTMLElement.spellcheck</p>
  1816. <ul>
  1817. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6357</li></ul></aside></section>
  1818. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="style" class="tsd-anchor"></a>
  1819. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">style</span><a href="#style" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1820. <div class="tsd-signature">style<span class="tsd-signature-symbol">:</span> <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.CSSStyleDeclaration-1.html" class="tsd-signature-type" data-tsd-kind="Variable">CSSStyleDeclaration</a></div><aside class="tsd-sources">
  1821. <p>Inherited from HTMLElement.style</p>
  1822. <ul>
  1823. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4967</li></ul></aside></section>
  1824. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="tabIndex" class="tsd-anchor"></a>
  1825. <h3 class="tsd-anchor-link"><span class="deprecated">tab<wbr/>Index</span><a href="#tabIndex" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1826. <div class="tsd-signature">tab<wbr/>Index<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div><aside class="tsd-sources">
  1827. <p>Inherited from HTMLElement.tabIndex</p>
  1828. <ul>
  1829. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:7550</li></ul></aside></section>
  1830. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="tagName" class="tsd-anchor"></a>
  1831. <h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span class="deprecated">tag<wbr/>Name</span><a href="#tagName" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1832. <div class="tsd-signature">tag<wbr/>Name<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
  1833. <div class="tsd-comment tsd-typography"><p>Returns the HTML-uppercased qualified name.</p>
  1834. </div><aside class="tsd-sources">
  1835. <p>Inherited from HTMLElement.tagName</p>
  1836. <ul>
  1837. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4883</li></ul></aside></section>
  1838. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="textContent" class="tsd-anchor"></a>
  1839. <h3 class="tsd-anchor-link"><span class="deprecated">text<wbr/>Content</span><a href="#textContent" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1840. <div class="tsd-signature">text<wbr/>Content<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  1841. <p>Inherited from HTMLElement.textContent</p>
  1842. <ul>
  1843. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10066</li></ul></aside></section>
  1844. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="title" class="tsd-anchor"></a>
  1845. <h3 class="tsd-anchor-link"><span class="deprecated">title</span><a href="#title" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1846. <div class="tsd-signature">title<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources">
  1847. <p>Inherited from HTMLElement.title</p>
  1848. <ul>
  1849. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6358</li></ul></aside></section>
  1850. <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="translate" class="tsd-anchor"></a>
  1851. <h3 class="tsd-anchor-link"><span class="deprecated">translate</span><a href="#translate" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1852. <div class="tsd-signature">translate<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources">
  1853. <p>Inherited from HTMLElement.translate</p>
  1854. <ul>
  1855. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6359</li></ul></aside></section></section>
  1856. <section class="tsd-panel-group tsd-member-group">
  1857. <h2>Methods</h2>
  1858. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="addEventListener" class="tsd-anchor"></a>
  1859. <h3 class="tsd-anchor-link"><span class="deprecated">add<wbr/>Event<wbr/>Listener</span><a href="#addEventListener" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1860. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  1861. <li class="tsd-signature tsd-anchor-link" id="addEventListener.addEventListener-1">add<wbr/>Event<wbr/>Listener<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLDirectoryElement-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLDirectoryElement</a>, ev<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.AddEventListenerOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">AddEventListenerOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#addEventListener.addEventListener-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1862. <li class="tsd-description">
  1863. <div class="tsd-type-parameters">
  1864. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1865. <ul class="tsd-type-parameters">
  1866. <li>
  1867. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a></h4></li></ul></div>
  1868. <div class="tsd-parameters">
  1869. <h4 class="tsd-parameters-title">Parameters</h4>
  1870. <ul class="tsd-parameter-list">
  1871. <li>
  1872. <h5>type: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li>
  1873. <li>
  1874. <h5>listener: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLDirectoryElement-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLDirectoryElement</a>, ev<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></h5>
  1875. <ul class="tsd-parameters">
  1876. <li class="tsd-parameter-signature">
  1877. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  1878. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLDirectoryElement-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLDirectoryElement</a>, ev<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
  1879. <li class="tsd-description">
  1880. <div class="tsd-parameters">
  1881. <h4 class="tsd-parameters-title">Parameters</h4>
  1882. <ul class="tsd-parameter-list">
  1883. <li>
  1884. <h5>this: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLDirectoryElement-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLDirectoryElement</a></h5></li>
  1885. <li>
  1886. <h5>ev: <a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span></h5></li></ul></div>
  1887. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4></li></ul></li></ul></li>
  1888. <li>
  1889. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.AddEventListenerOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">AddEventListenerOptions</a></h5></li></ul></div>
  1890. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  1891. <p>Overrides HTMLElement.addEventListener</p>
  1892. <ul>
  1893. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6294</li></ul></aside></li>
  1894. <li class="tsd-signature tsd-anchor-link" id="addEventListener.addEventListener-2">add<wbr/>Event<wbr/>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><a href="../types/RcsbFv3DAssembly._internal_.EventListenerOrEventListenerObject.html" class="tsd-signature-type" data-tsd-kind="Type alias">EventListenerOrEventListenerObject</a>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.AddEventListenerOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">AddEventListenerOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#addEventListener.addEventListener-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1895. <li class="tsd-description">
  1896. <div class="tsd-parameters">
  1897. <h4 class="tsd-parameters-title">Parameters</h4>
  1898. <ul class="tsd-parameter-list">
  1899. <li>
  1900. <h5>type: <span class="tsd-signature-type">string</span></h5></li>
  1901. <li>
  1902. <h5>listener: <a href="../types/RcsbFv3DAssembly._internal_.EventListenerOrEventListenerObject.html" class="tsd-signature-type" data-tsd-kind="Type alias">EventListenerOrEventListenerObject</a></h5></li>
  1903. <li>
  1904. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.AddEventListenerOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">AddEventListenerOptions</a></h5></li></ul></div>
  1905. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  1906. <p>Overrides HTMLElement.addEventListener</p>
  1907. <ul>
  1908. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6295</li></ul></aside></li></ul></section>
  1909. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="after" class="tsd-anchor"></a>
  1910. <h3 class="tsd-anchor-link"><span class="deprecated">after</span><a href="#after" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1911. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1912. <li class="tsd-signature tsd-anchor-link" id="after.after-1">after<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>nodes<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#after.after-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1913. <li class="tsd-description">
  1914. <div class="tsd-comment tsd-typography"><p>Inserts nodes just after node, while replacing strings in nodes with equivalent Text nodes.</p>
  1915. <p>Throws a &quot;HierarchyRequestError&quot; DOMException if the constraints of the node tree are violated.</p>
  1916. </div>
  1917. <div class="tsd-parameters">
  1918. <h4 class="tsd-parameters-title">Parameters</h4>
  1919. <ul class="tsd-parameter-list">
  1920. <li>
  1921. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>nodes: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  1922. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  1923. <p>Inherited from HTMLElement.after</p>
  1924. <ul>
  1925. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:3574</li></ul></aside></li></ul></section>
  1926. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="animate" class="tsd-anchor"></a>
  1927. <h3 class="tsd-anchor-link"><span class="deprecated">animate</span><a href="#animate" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1928. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1929. <li class="tsd-signature tsd-anchor-link" id="animate.animate-1">animate<span class="tsd-signature-symbol">(</span>keyframes<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.PropertyIndexedKeyframes.html" class="tsd-signature-type" data-tsd-kind="Interface">PropertyIndexedKeyframes</a><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.Keyframe.html" class="tsd-signature-type" data-tsd-kind="Interface">Keyframe</a><span class="tsd-signature-symbol">[]</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.KeyframeAnimationOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">KeyframeAnimationOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Animation-2.html" class="tsd-signature-type" data-tsd-kind="Variable">Animation</a><a href="#animate.animate-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1930. <li class="tsd-description">
  1931. <div class="tsd-parameters">
  1932. <h4 class="tsd-parameters-title">Parameters</h4>
  1933. <ul class="tsd-parameter-list">
  1934. <li>
  1935. <h5>keyframes: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.PropertyIndexedKeyframes.html" class="tsd-signature-type" data-tsd-kind="Interface">PropertyIndexedKeyframes</a><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.Keyframe.html" class="tsd-signature-type" data-tsd-kind="Interface">Keyframe</a><span class="tsd-signature-symbol">[]</span></h5></li>
  1936. <li>
  1937. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <span class="tsd-signature-type">number</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.KeyframeAnimationOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">KeyframeAnimationOptions</a></h5></li></ul></div>
  1938. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Animation-2.html" class="tsd-signature-type" data-tsd-kind="Variable">Animation</a></h4><aside class="tsd-sources">
  1939. <p>Inherited from HTMLElement.animate</p>
  1940. <ul>
  1941. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:2047</li></ul></aside></li></ul></section>
  1942. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="append" class="tsd-anchor"></a>
  1943. <h3 class="tsd-anchor-link"><span class="deprecated">append</span><a href="#append" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1944. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1945. <li class="tsd-signature tsd-anchor-link" id="append.append-1">append<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>nodes<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#append.append-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1946. <li class="tsd-description">
  1947. <div class="tsd-comment tsd-typography"><p>Inserts nodes after the last child of node, while replacing strings in nodes with equivalent Text nodes.</p>
  1948. <p>Throws a &quot;HierarchyRequestError&quot; DOMException if the constraints of the node tree are violated.</p>
  1949. </div>
  1950. <div class="tsd-parameters">
  1951. <h4 class="tsd-parameters-title">Parameters</h4>
  1952. <ul class="tsd-parameter-list">
  1953. <li>
  1954. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>nodes: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  1955. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  1956. <p>Inherited from HTMLElement.append</p>
  1957. <ul>
  1958. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10419</li></ul></aside></li></ul></section>
  1959. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="appendChild" class="tsd-anchor"></a>
  1960. <h3 class="tsd-anchor-link"><span class="deprecated">append<wbr/>Child</span><a href="#appendChild" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1961. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1962. <li class="tsd-signature tsd-anchor-link" id="appendChild.appendChild-1">append<wbr/>Child<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>node<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#appendChild.appendChild-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1963. <li class="tsd-description">
  1964. <div class="tsd-type-parameters">
  1965. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  1966. <ul class="tsd-type-parameters">
  1967. <li>
  1968. <h4>T<span class="tsd-signature-symbol"> extends </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h4></li></ul></div>
  1969. <div class="tsd-parameters">
  1970. <h4 class="tsd-parameters-title">Parameters</h4>
  1971. <ul class="tsd-parameter-list">
  1972. <li>
  1973. <h5>node: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  1974. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  1975. <p>Inherited from HTMLElement.appendChild</p>
  1976. <ul>
  1977. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10067</li></ul></aside></li></ul></section>
  1978. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="attachInternals" class="tsd-anchor"></a>
  1979. <h3 class="tsd-anchor-link"><span class="deprecated">attach<wbr/>Internals</span><a href="#attachInternals" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1980. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1981. <li class="tsd-signature tsd-anchor-link" id="attachInternals.attachInternals-1">attach<wbr/>Internals<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.ElementInternals-1.html" class="tsd-signature-type" data-tsd-kind="Variable">ElementInternals</a><a href="#attachInternals.attachInternals-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1982. <li class="tsd-description">
  1983. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.ElementInternals-1.html" class="tsd-signature-type" data-tsd-kind="Variable">ElementInternals</a></h4><aside class="tsd-sources">
  1984. <p>Inherited from HTMLElement.attachInternals</p>
  1985. <ul>
  1986. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6360</li></ul></aside></li></ul></section>
  1987. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="attachShadow" class="tsd-anchor"></a>
  1988. <h3 class="tsd-anchor-link"><span class="deprecated">attach<wbr/>Shadow</span><a href="#attachShadow" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  1989. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  1990. <li class="tsd-signature tsd-anchor-link" id="attachShadow.attachShadow-1">attach<wbr/>Shadow<span class="tsd-signature-symbol">(</span>init<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.ShadowRootInit.html" class="tsd-signature-type" data-tsd-kind="Interface">ShadowRootInit</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.ShadowRoot-1.html" class="tsd-signature-type" data-tsd-kind="Variable">ShadowRoot</a><a href="#attachShadow.attachShadow-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  1991. <li class="tsd-description">
  1992. <div class="tsd-comment tsd-typography"><p>Creates a shadow root for element and returns it.</p>
  1993. </div>
  1994. <div class="tsd-parameters">
  1995. <h4 class="tsd-parameters-title">Parameters</h4>
  1996. <ul class="tsd-parameter-list">
  1997. <li>
  1998. <h5>init: <a href="RcsbFv3DAssembly._internal_.ShadowRootInit.html" class="tsd-signature-type" data-tsd-kind="Interface">ShadowRootInit</a></h5></li></ul></div>
  1999. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.ShadowRoot-1.html" class="tsd-signature-type" data-tsd-kind="Variable">ShadowRoot</a></h4><aside class="tsd-sources">
  2000. <p>Inherited from HTMLElement.attachShadow</p>
  2001. <ul>
  2002. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4885</li></ul></aside></li></ul></section>
  2003. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="before" class="tsd-anchor"></a>
  2004. <h3 class="tsd-anchor-link"><span class="deprecated">before</span><a href="#before" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2005. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2006. <li class="tsd-signature tsd-anchor-link" id="before.before-1">before<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>nodes<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#before.before-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2007. <li class="tsd-description">
  2008. <div class="tsd-comment tsd-typography"><p>Inserts nodes just before node, while replacing strings in nodes with equivalent Text nodes.</p>
  2009. <p>Throws a &quot;HierarchyRequestError&quot; DOMException if the constraints of the node tree are violated.</p>
  2010. </div>
  2011. <div class="tsd-parameters">
  2012. <h4 class="tsd-parameters-title">Parameters</h4>
  2013. <ul class="tsd-parameter-list">
  2014. <li>
  2015. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>nodes: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2016. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2017. <p>Inherited from HTMLElement.before</p>
  2018. <ul>
  2019. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:3580</li></ul></aside></li></ul></section>
  2020. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="blur" class="tsd-anchor"></a>
  2021. <h3 class="tsd-anchor-link"><span class="deprecated">blur</span><a href="#blur" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2022. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2023. <li class="tsd-signature tsd-anchor-link" id="blur.blur-1">blur<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#blur.blur-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2024. <li class="tsd-description">
  2025. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2026. <p>Inherited from HTMLElement.blur</p>
  2027. <ul>
  2028. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:7551</li></ul></aside></li></ul></section>
  2029. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="click" class="tsd-anchor"></a>
  2030. <h3 class="tsd-anchor-link"><span class="deprecated">click</span><a href="#click" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2031. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2032. <li class="tsd-signature tsd-anchor-link" id="click.click-1">click<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#click.click-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2033. <li class="tsd-description">
  2034. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2035. <p>Inherited from HTMLElement.click</p>
  2036. <ul>
  2037. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6361</li></ul></aside></li></ul></section>
  2038. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="cloneNode" class="tsd-anchor"></a>
  2039. <h3 class="tsd-anchor-link"><span class="deprecated">clone<wbr/>Node</span><a href="#cloneNode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2040. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2041. <li class="tsd-signature tsd-anchor-link" id="cloneNode.cloneNode-1">clone<wbr/>Node<span class="tsd-signature-symbol">(</span>deep<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><a href="#cloneNode.cloneNode-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2042. <li class="tsd-description">
  2043. <div class="tsd-comment tsd-typography"><p>Returns a copy of node. If deep is true, the copy also includes the node&#39;s descendants.</p>
  2044. </div>
  2045. <div class="tsd-parameters">
  2046. <h4 class="tsd-parameters-title">Parameters</h4>
  2047. <ul class="tsd-parameter-list">
  2048. <li>
  2049. <h5><code class="tsd-tag ts-flagOptional">Optional</code> deep: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
  2050. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h4><aside class="tsd-sources">
  2051. <p>Inherited from HTMLElement.cloneNode</p>
  2052. <ul>
  2053. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10069</li></ul></aside></li></ul></section>
  2054. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="closest" class="tsd-anchor"></a>
  2055. <h3 class="tsd-anchor-link"><span class="deprecated">closest</span><a href="#closest" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2056. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2057. <li class="tsd-signature tsd-anchor-link" id="closest.closest-1">closest<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selector<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><a href="#closest.closest-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2058. <li class="tsd-description">
  2059. <div class="tsd-comment tsd-typography"><p>Returns the first (starting at element) inclusive ancestor that matches selectors, and null otherwise.</p>
  2060. </div>
  2061. <div class="tsd-type-parameters">
  2062. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2063. <ul class="tsd-type-parameters">
  2064. <li>
  2065. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a></h4></li></ul></div>
  2066. <div class="tsd-parameters">
  2067. <h4 class="tsd-parameters-title">Parameters</h4>
  2068. <ul class="tsd-parameter-list">
  2069. <li>
  2070. <h5>selector: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li></ul></div>
  2071. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span></h4><aside class="tsd-sources">
  2072. <p>Inherited from HTMLElement.closest</p>
  2073. <ul>
  2074. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4887</li></ul></aside></li>
  2075. <li class="tsd-signature tsd-anchor-link" id="closest.closest-2">closest<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selector<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><a href="#closest.closest-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2076. <li class="tsd-description">
  2077. <div class="tsd-type-parameters">
  2078. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2079. <ul class="tsd-type-parameters">
  2080. <li>
  2081. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a></h4></li></ul></div>
  2082. <div class="tsd-parameters">
  2083. <h4 class="tsd-parameters-title">Parameters</h4>
  2084. <ul class="tsd-parameter-list">
  2085. <li>
  2086. <h5>selector: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li></ul></div>
  2087. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span></h4><aside class="tsd-sources">
  2088. <p>Inherited from HTMLElement.closest</p>
  2089. <ul>
  2090. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4888</li></ul></aside></li>
  2091. <li class="tsd-signature tsd-anchor-link" id="closest.closest-3">closest<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span><a href="#closest.closest-3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2092. <li class="tsd-description">
  2093. <div class="tsd-type-parameters">
  2094. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2095. <ul class="tsd-type-parameters">
  2096. <li>
  2097. <h4>E<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-type">Element</span> = <span class="tsd-signature-type">Element</span></h4></li></ul></div>
  2098. <div class="tsd-parameters">
  2099. <h4 class="tsd-parameters-title">Parameters</h4>
  2100. <ul class="tsd-parameter-list">
  2101. <li>
  2102. <h5>selectors: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2103. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span></h4><aside class="tsd-sources">
  2104. <p>Inherited from HTMLElement.closest</p>
  2105. <ul>
  2106. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4889</li></ul></aside></li></ul></section>
  2107. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="compareDocumentPosition" class="tsd-anchor"></a>
  2108. <h3 class="tsd-anchor-link"><span class="deprecated">compare<wbr/>Document<wbr/>Position</span><a href="#compareDocumentPosition" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2109. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2110. <li class="tsd-signature tsd-anchor-link" id="compareDocumentPosition.compareDocumentPosition-1">compare<wbr/>Document<wbr/>Position<span class="tsd-signature-symbol">(</span>other<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><a href="#compareDocumentPosition.compareDocumentPosition-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2111. <li class="tsd-description">
  2112. <div class="tsd-comment tsd-typography"><p>Returns a bitmask indicating the position of other relative to node.</p>
  2113. </div>
  2114. <div class="tsd-parameters">
  2115. <h4 class="tsd-parameters-title">Parameters</h4>
  2116. <ul class="tsd-parameter-list">
  2117. <li>
  2118. <h5>other: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h5></li></ul></div>
  2119. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
  2120. <p>Inherited from HTMLElement.compareDocumentPosition</p>
  2121. <ul>
  2122. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10071</li></ul></aside></li></ul></section>
  2123. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="contains" class="tsd-anchor"></a>
  2124. <h3 class="tsd-anchor-link"><span class="deprecated">contains</span><a href="#contains" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2125. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2126. <li class="tsd-signature tsd-anchor-link" id="contains.contains-1">contains<span class="tsd-signature-symbol">(</span>other<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#contains.contains-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2127. <li class="tsd-description">
  2128. <div class="tsd-comment tsd-typography"><p>Returns true if other is an inclusive descendant of node, and false otherwise.</p>
  2129. </div>
  2130. <div class="tsd-parameters">
  2131. <h4 class="tsd-parameters-title">Parameters</h4>
  2132. <ul class="tsd-parameter-list">
  2133. <li>
  2134. <h5>other: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h5></li></ul></div>
  2135. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2136. <p>Inherited from HTMLElement.contains</p>
  2137. <ul>
  2138. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10073</li></ul></aside></li></ul></section>
  2139. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="dispatchEvent" class="tsd-anchor"></a>
  2140. <h3 class="tsd-anchor-link"><span class="deprecated">dispatch<wbr/>Event</span><a href="#dispatchEvent" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2141. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2142. <li class="tsd-signature tsd-anchor-link" id="dispatchEvent.dispatchEvent-1">dispatch<wbr/>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#dispatchEvent.dispatchEvent-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2143. <li class="tsd-description">
  2144. <div class="tsd-comment tsd-typography"><p>Dispatches a synthetic event event to target and returns true if either event&#39;s cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.</p>
  2145. </div>
  2146. <div class="tsd-parameters">
  2147. <h4 class="tsd-parameters-title">Parameters</h4>
  2148. <ul class="tsd-parameter-list">
  2149. <li>
  2150. <h5>event: <span class="tsd-signature-type">Event</span></h5></li></ul></div>
  2151. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2152. <p>Inherited from HTMLElement.dispatchEvent</p>
  2153. <ul>
  2154. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:5138</li></ul></aside></li></ul></section>
  2155. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="focus" class="tsd-anchor"></a>
  2156. <h3 class="tsd-anchor-link"><span class="deprecated">focus</span><a href="#focus" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2157. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2158. <li class="tsd-signature tsd-anchor-link" id="focus.focus-1">focus<span class="tsd-signature-symbol">(</span>options<span class="tsd-signature-symbol">?: </span><a href="RcsbFv3DAssembly._internal_.FocusOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">FocusOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#focus.focus-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2159. <li class="tsd-description">
  2160. <div class="tsd-parameters">
  2161. <h4 class="tsd-parameters-title">Parameters</h4>
  2162. <ul class="tsd-parameter-list">
  2163. <li>
  2164. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <a href="RcsbFv3DAssembly._internal_.FocusOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">FocusOptions</a></h5></li></ul></div>
  2165. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2166. <p>Inherited from HTMLElement.focus</p>
  2167. <ul>
  2168. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:7552</li></ul></aside></li></ul></section>
  2169. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getAnimations" class="tsd-anchor"></a>
  2170. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Animations</span><a href="#getAnimations" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2171. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2172. <li class="tsd-signature tsd-anchor-link" id="getAnimations.getAnimations-1">get<wbr/>Animations<span class="tsd-signature-symbol">(</span>options<span class="tsd-signature-symbol">?: </span><a href="RcsbFv3DAssembly._internal_.GetAnimationsOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">GetAnimationsOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Animation-2.html" class="tsd-signature-type" data-tsd-kind="Variable">Animation</a><span class="tsd-signature-symbol">[]</span><a href="#getAnimations.getAnimations-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2173. <li class="tsd-description">
  2174. <div class="tsd-parameters">
  2175. <h4 class="tsd-parameters-title">Parameters</h4>
  2176. <ul class="tsd-parameter-list">
  2177. <li>
  2178. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <a href="RcsbFv3DAssembly._internal_.GetAnimationsOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">GetAnimationsOptions</a></h5></li></ul></div>
  2179. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Animation-2.html" class="tsd-signature-type" data-tsd-kind="Variable">Animation</a><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
  2180. <p>Inherited from HTMLElement.getAnimations</p>
  2181. <ul>
  2182. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:2048</li></ul></aside></li></ul></section>
  2183. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getAttribute" class="tsd-anchor"></a>
  2184. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Attribute</span><a href="#getAttribute" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2185. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2186. <li class="tsd-signature tsd-anchor-link" id="getAttribute.getAttribute-1">get<wbr/>Attribute<span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><a href="#getAttribute.getAttribute-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2187. <li class="tsd-description">
  2188. <div class="tsd-comment tsd-typography"><p>Returns element&#39;s first attribute whose qualified name is qualifiedName, and null if there is no such attribute otherwise.</p>
  2189. </div>
  2190. <div class="tsd-parameters">
  2191. <h4 class="tsd-parameters-title">Parameters</h4>
  2192. <ul class="tsd-parameter-list">
  2193. <li>
  2194. <h5>qualifiedName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2195. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
  2196. <p>Inherited from HTMLElement.getAttribute</p>
  2197. <ul>
  2198. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4891</li></ul></aside></li></ul></section>
  2199. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getAttributeNS" class="tsd-anchor"></a>
  2200. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>AttributeNS</span><a href="#getAttributeNS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2201. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2202. <li class="tsd-signature tsd-anchor-link" id="getAttributeNS.getAttributeNS-1">get<wbr/>AttributeNS<span class="tsd-signature-symbol">(</span>namespace<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span>, localName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><a href="#getAttributeNS.getAttributeNS-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2203. <li class="tsd-description">
  2204. <div class="tsd-comment tsd-typography"><p>Returns element&#39;s attribute whose namespace is namespace and local name is localName, and null if there is no such attribute otherwise.</p>
  2205. </div>
  2206. <div class="tsd-parameters">
  2207. <h4 class="tsd-parameters-title">Parameters</h4>
  2208. <ul class="tsd-parameter-list">
  2209. <li>
  2210. <h5>namespace: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li>
  2211. <li>
  2212. <h5>localName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2213. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
  2214. <p>Inherited from HTMLElement.getAttributeNS</p>
  2215. <ul>
  2216. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4893</li></ul></aside></li></ul></section>
  2217. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getAttributeNames" class="tsd-anchor"></a>
  2218. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Attribute<wbr/>Names</span><a href="#getAttributeNames" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2219. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2220. <li class="tsd-signature tsd-anchor-link" id="getAttributeNames.getAttributeNames-1">get<wbr/>Attribute<wbr/>Names<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><a href="#getAttributeNames.getAttributeNames-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2221. <li class="tsd-description">
  2222. <div class="tsd-comment tsd-typography"><p>Returns the qualified names of all element&#39;s attributes. Can contain duplicates.</p>
  2223. </div>
  2224. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h4><aside class="tsd-sources">
  2225. <p>Inherited from HTMLElement.getAttributeNames</p>
  2226. <ul>
  2227. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4895</li></ul></aside></li></ul></section>
  2228. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getAttributeNode" class="tsd-anchor"></a>
  2229. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Attribute<wbr/>Node</span><a href="#getAttributeNode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2230. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2231. <li class="tsd-signature tsd-anchor-link" id="getAttributeNode.getAttributeNode-1">get<wbr/>Attribute<wbr/>Node<span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a><a href="#getAttributeNode.getAttributeNode-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2232. <li class="tsd-description">
  2233. <div class="tsd-parameters">
  2234. <h4 class="tsd-parameters-title">Parameters</h4>
  2235. <ul class="tsd-parameter-list">
  2236. <li>
  2237. <h5>qualifiedName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2238. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a></h4><aside class="tsd-sources">
  2239. <p>Inherited from HTMLElement.getAttributeNode</p>
  2240. <ul>
  2241. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4896</li></ul></aside></li></ul></section>
  2242. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getAttributeNodeNS" class="tsd-anchor"></a>
  2243. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Attribute<wbr/>NodeNS</span><a href="#getAttributeNodeNS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2244. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2245. <li class="tsd-signature tsd-anchor-link" id="getAttributeNodeNS.getAttributeNodeNS-1">get<wbr/>Attribute<wbr/>NodeNS<span class="tsd-signature-symbol">(</span>namespace<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span>, localName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a><a href="#getAttributeNodeNS.getAttributeNodeNS-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2246. <li class="tsd-description">
  2247. <div class="tsd-parameters">
  2248. <h4 class="tsd-parameters-title">Parameters</h4>
  2249. <ul class="tsd-parameter-list">
  2250. <li>
  2251. <h5>namespace: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li>
  2252. <li>
  2253. <h5>localName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2254. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a></h4><aside class="tsd-sources">
  2255. <p>Inherited from HTMLElement.getAttributeNodeNS</p>
  2256. <ul>
  2257. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4897</li></ul></aside></li></ul></section>
  2258. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getBoundingClientRect" class="tsd-anchor"></a>
  2259. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Bounding<wbr/>Client<wbr/>Rect</span><a href="#getBoundingClientRect" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2260. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2261. <li class="tsd-signature tsd-anchor-link" id="getBoundingClientRect.getBoundingClientRect-1">get<wbr/>Bounding<wbr/>Client<wbr/>Rect<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.DOMRect-1.html" class="tsd-signature-type" data-tsd-kind="Variable">DOMRect</a><a href="#getBoundingClientRect.getBoundingClientRect-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2262. <li class="tsd-description">
  2263. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.DOMRect-1.html" class="tsd-signature-type" data-tsd-kind="Variable">DOMRect</a></h4><aside class="tsd-sources">
  2264. <p>Inherited from HTMLElement.getBoundingClientRect</p>
  2265. <ul>
  2266. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4898</li></ul></aside></li></ul></section>
  2267. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getClientRects" class="tsd-anchor"></a>
  2268. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Client<wbr/>Rects</span><a href="#getClientRects" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2269. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2270. <li class="tsd-signature tsd-anchor-link" id="getClientRects.getClientRects-1">get<wbr/>Client<wbr/>Rects<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.DOMRectList-1.html" class="tsd-signature-type" data-tsd-kind="Variable">DOMRectList</a><a href="#getClientRects.getClientRects-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2271. <li class="tsd-description">
  2272. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.DOMRectList-1.html" class="tsd-signature-type" data-tsd-kind="Variable">DOMRectList</a></h4><aside class="tsd-sources">
  2273. <p>Inherited from HTMLElement.getClientRects</p>
  2274. <ul>
  2275. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4899</li></ul></aside></li></ul></section>
  2276. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getElementsByClassName" class="tsd-anchor"></a>
  2277. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Elements<wbr/>By<wbr/>Class<wbr/>Name</span><a href="#getElementsByClassName" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2278. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2279. <li class="tsd-signature tsd-anchor-link" id="getElementsByClassName.getElementsByClassName-1">get<wbr/>Elements<wbr/>By<wbr/>Class<wbr/>Name<span class="tsd-signature-symbol">(</span>classNames<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">&gt;</span><a href="#getElementsByClassName.getElementsByClassName-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2280. <li class="tsd-description">
  2281. <div class="tsd-comment tsd-typography"><p>Returns a HTMLCollection of the elements in the object on which the method was invoked (a document or an element) that have all the classes given by classNames. The classNames argument is interpreted as a space-separated list of classes.</p>
  2282. </div>
  2283. <div class="tsd-parameters">
  2284. <h4 class="tsd-parameters-title">Parameters</h4>
  2285. <ul class="tsd-parameter-list">
  2286. <li>
  2287. <h5>classNames: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2288. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2289. <p>Inherited from HTMLElement.getElementsByClassName</p>
  2290. <ul>
  2291. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4901</li></ul></aside></li></ul></section>
  2292. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getElementsByTagName" class="tsd-anchor"></a>
  2293. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>Name</span><a href="#getElementsByTagName" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2294. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2295. <li class="tsd-signature tsd-anchor-link" id="getElementsByTagName.getElementsByTagName-1">get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>Name<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#getElementsByTagName.getElementsByTagName-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2296. <li class="tsd-description">
  2297. <div class="tsd-type-parameters">
  2298. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2299. <ul class="tsd-type-parameters">
  2300. <li>
  2301. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a></h4></li></ul></div>
  2302. <div class="tsd-parameters">
  2303. <h4 class="tsd-parameters-title">Parameters</h4>
  2304. <ul class="tsd-parameter-list">
  2305. <li>
  2306. <h5>qualifiedName: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li></ul></div>
  2307. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2308. <p>Inherited from HTMLElement.getElementsByTagName</p>
  2309. <ul>
  2310. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4902</li></ul></aside></li>
  2311. <li class="tsd-signature tsd-anchor-link" id="getElementsByTagName.getElementsByTagName-2">get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>Name<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#getElementsByTagName.getElementsByTagName-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2312. <li class="tsd-description">
  2313. <div class="tsd-type-parameters">
  2314. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2315. <ul class="tsd-type-parameters">
  2316. <li>
  2317. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a></h4></li></ul></div>
  2318. <div class="tsd-parameters">
  2319. <h4 class="tsd-parameters-title">Parameters</h4>
  2320. <ul class="tsd-parameter-list">
  2321. <li>
  2322. <h5>qualifiedName: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li></ul></div>
  2323. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2324. <p>Inherited from HTMLElement.getElementsByTagName</p>
  2325. <ul>
  2326. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4903</li></ul></aside></li>
  2327. <li class="tsd-signature tsd-anchor-link" id="getElementsByTagName.getElementsByTagName-3">get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>Name<span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">&gt;</span><a href="#getElementsByTagName.getElementsByTagName-3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2328. <li class="tsd-description">
  2329. <div class="tsd-parameters">
  2330. <h4 class="tsd-parameters-title">Parameters</h4>
  2331. <ul class="tsd-parameter-list">
  2332. <li>
  2333. <h5>qualifiedName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2334. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2335. <p>Inherited from HTMLElement.getElementsByTagName</p>
  2336. <ul>
  2337. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4904</li></ul></aside></li></ul></section>
  2338. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getElementsByTagNameNS" class="tsd-anchor"></a>
  2339. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>NameNS</span><a href="#getElementsByTagNameNS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2340. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2341. <li class="tsd-signature tsd-anchor-link" id="getElementsByTagNameNS.getElementsByTagNameNS-1">get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>NameNS<span class="tsd-signature-symbol">(</span>namespaceURI<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">&quot;http://www.w3.org/1999/xhtml&quot;</span>, localName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">HTMLElement</span><span class="tsd-signature-symbol">&gt;</span><a href="#getElementsByTagNameNS.getElementsByTagNameNS-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2342. <li class="tsd-description">
  2343. <div class="tsd-parameters">
  2344. <h4 class="tsd-parameters-title">Parameters</h4>
  2345. <ul class="tsd-parameter-list">
  2346. <li>
  2347. <h5>namespaceURI: <span class="tsd-signature-type">&quot;http://www.w3.org/1999/xhtml&quot;</span></h5></li>
  2348. <li>
  2349. <h5>localName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2350. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">HTMLElement</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2351. <p>Inherited from HTMLElement.getElementsByTagNameNS</p>
  2352. <ul>
  2353. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4905</li></ul></aside></li>
  2354. <li class="tsd-signature tsd-anchor-link" id="getElementsByTagNameNS.getElementsByTagNameNS-2">get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>NameNS<span class="tsd-signature-symbol">(</span>namespaceURI<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">&quot;http://www.w3.org/2000/svg&quot;</span>, localName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">SVGElement</span><span class="tsd-signature-symbol">&gt;</span><a href="#getElementsByTagNameNS.getElementsByTagNameNS-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2355. <li class="tsd-description">
  2356. <div class="tsd-parameters">
  2357. <h4 class="tsd-parameters-title">Parameters</h4>
  2358. <ul class="tsd-parameter-list">
  2359. <li>
  2360. <h5>namespaceURI: <span class="tsd-signature-type">&quot;http://www.w3.org/2000/svg&quot;</span></h5></li>
  2361. <li>
  2362. <h5>localName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2363. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">SVGElement</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2364. <p>Inherited from HTMLElement.getElementsByTagNameNS</p>
  2365. <ul>
  2366. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4906</li></ul></aside></li>
  2367. <li class="tsd-signature tsd-anchor-link" id="getElementsByTagNameNS.getElementsByTagNameNS-3">get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>NameNS<span class="tsd-signature-symbol">(</span>namespace<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span>, localName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">&gt;</span><a href="#getElementsByTagNameNS.getElementsByTagNameNS-3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2368. <li class="tsd-description">
  2369. <div class="tsd-parameters">
  2370. <h4 class="tsd-parameters-title">Parameters</h4>
  2371. <ul class="tsd-parameter-list">
  2372. <li>
  2373. <h5>namespace: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li>
  2374. <li>
  2375. <h5>localName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2376. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.HTMLCollectionOf.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLCollectionOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2377. <p>Inherited from HTMLElement.getElementsByTagNameNS</p>
  2378. <ul>
  2379. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4907</li></ul></aside></li></ul></section>
  2380. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="getRootNode" class="tsd-anchor"></a>
  2381. <h3 class="tsd-anchor-link"><span class="deprecated">get<wbr/>Root<wbr/>Node</span><a href="#getRootNode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2382. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2383. <li class="tsd-signature tsd-anchor-link" id="getRootNode.getRootNode-1">get<wbr/>Root<wbr/>Node<span class="tsd-signature-symbol">(</span>options<span class="tsd-signature-symbol">?: </span><a href="RcsbFv3DAssembly._internal_.GetRootNodeOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">GetRootNodeOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><a href="#getRootNode.getRootNode-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2384. <li class="tsd-description">
  2385. <div class="tsd-comment tsd-typography"><p>Returns node&#39;s root.</p>
  2386. </div>
  2387. <div class="tsd-parameters">
  2388. <h4 class="tsd-parameters-title">Parameters</h4>
  2389. <ul class="tsd-parameter-list">
  2390. <li>
  2391. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <a href="RcsbFv3DAssembly._internal_.GetRootNodeOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">GetRootNodeOptions</a></h5></li></ul></div>
  2392. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h4><aside class="tsd-sources">
  2393. <p>Inherited from HTMLElement.getRootNode</p>
  2394. <ul>
  2395. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10075</li></ul></aside></li></ul></section>
  2396. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="hasAttribute" class="tsd-anchor"></a>
  2397. <h3 class="tsd-anchor-link"><span class="deprecated">has<wbr/>Attribute</span><a href="#hasAttribute" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2398. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2399. <li class="tsd-signature tsd-anchor-link" id="hasAttribute.hasAttribute-1">has<wbr/>Attribute<span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#hasAttribute.hasAttribute-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2400. <li class="tsd-description">
  2401. <div class="tsd-comment tsd-typography"><p>Returns true if element has an attribute whose qualified name is qualifiedName, and false otherwise.</p>
  2402. </div>
  2403. <div class="tsd-parameters">
  2404. <h4 class="tsd-parameters-title">Parameters</h4>
  2405. <ul class="tsd-parameter-list">
  2406. <li>
  2407. <h5>qualifiedName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2408. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2409. <p>Inherited from HTMLElement.hasAttribute</p>
  2410. <ul>
  2411. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4909</li></ul></aside></li></ul></section>
  2412. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="hasAttributeNS" class="tsd-anchor"></a>
  2413. <h3 class="tsd-anchor-link"><span class="deprecated">has<wbr/>AttributeNS</span><a href="#hasAttributeNS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2414. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2415. <li class="tsd-signature tsd-anchor-link" id="hasAttributeNS.hasAttributeNS-1">has<wbr/>AttributeNS<span class="tsd-signature-symbol">(</span>namespace<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span>, localName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#hasAttributeNS.hasAttributeNS-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2416. <li class="tsd-description">
  2417. <div class="tsd-comment tsd-typography"><p>Returns true if element has an attribute whose namespace is namespace and local name is localName.</p>
  2418. </div>
  2419. <div class="tsd-parameters">
  2420. <h4 class="tsd-parameters-title">Parameters</h4>
  2421. <ul class="tsd-parameter-list">
  2422. <li>
  2423. <h5>namespace: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li>
  2424. <li>
  2425. <h5>localName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2426. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2427. <p>Inherited from HTMLElement.hasAttributeNS</p>
  2428. <ul>
  2429. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4911</li></ul></aside></li></ul></section>
  2430. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="hasAttributes" class="tsd-anchor"></a>
  2431. <h3 class="tsd-anchor-link"><span class="deprecated">has<wbr/>Attributes</span><a href="#hasAttributes" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2432. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2433. <li class="tsd-signature tsd-anchor-link" id="hasAttributes.hasAttributes-1">has<wbr/>Attributes<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#hasAttributes.hasAttributes-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2434. <li class="tsd-description">
  2435. <div class="tsd-comment tsd-typography"><p>Returns true if element has attributes, and false otherwise.</p>
  2436. </div>
  2437. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2438. <p>Inherited from HTMLElement.hasAttributes</p>
  2439. <ul>
  2440. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4913</li></ul></aside></li></ul></section>
  2441. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="hasChildNodes" class="tsd-anchor"></a>
  2442. <h3 class="tsd-anchor-link"><span class="deprecated">has<wbr/>Child<wbr/>Nodes</span><a href="#hasChildNodes" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2443. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2444. <li class="tsd-signature tsd-anchor-link" id="hasChildNodes.hasChildNodes-1">has<wbr/>Child<wbr/>Nodes<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#hasChildNodes.hasChildNodes-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2445. <li class="tsd-description">
  2446. <div class="tsd-comment tsd-typography"><p>Returns whether node has children.</p>
  2447. </div>
  2448. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2449. <p>Inherited from HTMLElement.hasChildNodes</p>
  2450. <ul>
  2451. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10077</li></ul></aside></li></ul></section>
  2452. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="hasPointerCapture" class="tsd-anchor"></a>
  2453. <h3 class="tsd-anchor-link"><span class="deprecated">has<wbr/>Pointer<wbr/>Capture</span><a href="#hasPointerCapture" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2454. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2455. <li class="tsd-signature tsd-anchor-link" id="hasPointerCapture.hasPointerCapture-1">has<wbr/>Pointer<wbr/>Capture<span class="tsd-signature-symbol">(</span>pointerId<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#hasPointerCapture.hasPointerCapture-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2456. <li class="tsd-description">
  2457. <div class="tsd-parameters">
  2458. <h4 class="tsd-parameters-title">Parameters</h4>
  2459. <ul class="tsd-parameter-list">
  2460. <li>
  2461. <h5>pointerId: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  2462. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2463. <p>Inherited from HTMLElement.hasPointerCapture</p>
  2464. <ul>
  2465. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4914</li></ul></aside></li></ul></section>
  2466. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="insertAdjacentElement" class="tsd-anchor"></a>
  2467. <h3 class="tsd-anchor-link"><span class="deprecated">insert<wbr/>Adjacent<wbr/>Element</span><a href="#insertAdjacentElement" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2468. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2469. <li class="tsd-signature tsd-anchor-link" id="insertAdjacentElement.insertAdjacentElement-1">insert<wbr/>Adjacent<wbr/>Element<span class="tsd-signature-symbol">(</span>where<span class="tsd-signature-symbol">: </span><a href="../types/RcsbFv3DAssembly._internal_.InsertPosition.html" class="tsd-signature-type" data-tsd-kind="Type alias">InsertPosition</a>, element<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Element</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span><a href="#insertAdjacentElement.insertAdjacentElement-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2470. <li class="tsd-description">
  2471. <div class="tsd-parameters">
  2472. <h4 class="tsd-parameters-title">Parameters</h4>
  2473. <ul class="tsd-parameter-list">
  2474. <li>
  2475. <h5>where: <a href="../types/RcsbFv3DAssembly._internal_.InsertPosition.html" class="tsd-signature-type" data-tsd-kind="Type alias">InsertPosition</a></h5></li>
  2476. <li>
  2477. <h5>element: <span class="tsd-signature-type">Element</span></h5></li></ul></div>
  2478. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Element</span></h4><aside class="tsd-sources">
  2479. <p>Inherited from HTMLElement.insertAdjacentElement</p>
  2480. <ul>
  2481. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4915</li></ul></aside></li></ul></section>
  2482. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="insertAdjacentHTML" class="tsd-anchor"></a>
  2483. <h3 class="tsd-anchor-link"><span class="deprecated">insert<wbr/>AdjacentHTML</span><a href="#insertAdjacentHTML" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2484. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2485. <li class="tsd-signature tsd-anchor-link" id="insertAdjacentHTML.insertAdjacentHTML-1">insert<wbr/>AdjacentHTML<span class="tsd-signature-symbol">(</span>position<span class="tsd-signature-symbol">: </span><a href="../types/RcsbFv3DAssembly._internal_.InsertPosition.html" class="tsd-signature-type" data-tsd-kind="Type alias">InsertPosition</a>, text<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#insertAdjacentHTML.insertAdjacentHTML-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2486. <li class="tsd-description">
  2487. <div class="tsd-parameters">
  2488. <h4 class="tsd-parameters-title">Parameters</h4>
  2489. <ul class="tsd-parameter-list">
  2490. <li>
  2491. <h5>position: <a href="../types/RcsbFv3DAssembly._internal_.InsertPosition.html" class="tsd-signature-type" data-tsd-kind="Type alias">InsertPosition</a></h5></li>
  2492. <li>
  2493. <h5>text: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2494. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2495. <p>Inherited from HTMLElement.insertAdjacentHTML</p>
  2496. <ul>
  2497. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4916</li></ul></aside></li></ul></section>
  2498. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="insertAdjacentText" class="tsd-anchor"></a>
  2499. <h3 class="tsd-anchor-link"><span class="deprecated">insert<wbr/>Adjacent<wbr/>Text</span><a href="#insertAdjacentText" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2500. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2501. <li class="tsd-signature tsd-anchor-link" id="insertAdjacentText.insertAdjacentText-1">insert<wbr/>Adjacent<wbr/>Text<span class="tsd-signature-symbol">(</span>where<span class="tsd-signature-symbol">: </span><a href="../types/RcsbFv3DAssembly._internal_.InsertPosition.html" class="tsd-signature-type" data-tsd-kind="Type alias">InsertPosition</a>, data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#insertAdjacentText.insertAdjacentText-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2502. <li class="tsd-description">
  2503. <div class="tsd-parameters">
  2504. <h4 class="tsd-parameters-title">Parameters</h4>
  2505. <ul class="tsd-parameter-list">
  2506. <li>
  2507. <h5>where: <a href="../types/RcsbFv3DAssembly._internal_.InsertPosition.html" class="tsd-signature-type" data-tsd-kind="Type alias">InsertPosition</a></h5></li>
  2508. <li>
  2509. <h5>data: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2510. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2511. <p>Inherited from HTMLElement.insertAdjacentText</p>
  2512. <ul>
  2513. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4917</li></ul></aside></li></ul></section>
  2514. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="insertBefore" class="tsd-anchor"></a>
  2515. <h3 class="tsd-anchor-link"><span class="deprecated">insert<wbr/>Before</span><a href="#insertBefore" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2516. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2517. <li class="tsd-signature tsd-anchor-link" id="insertBefore.insertBefore-1">insert<wbr/>Before<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>node<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span>, child<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#insertBefore.insertBefore-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2518. <li class="tsd-description">
  2519. <div class="tsd-type-parameters">
  2520. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2521. <ul class="tsd-type-parameters">
  2522. <li>
  2523. <h4>T<span class="tsd-signature-symbol"> extends </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h4></li></ul></div>
  2524. <div class="tsd-parameters">
  2525. <h4 class="tsd-parameters-title">Parameters</h4>
  2526. <ul class="tsd-parameter-list">
  2527. <li>
  2528. <h5>node: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li>
  2529. <li>
  2530. <h5>child: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h5></li></ul></div>
  2531. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  2532. <p>Inherited from HTMLElement.insertBefore</p>
  2533. <ul>
  2534. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10078</li></ul></aside></li></ul></section>
  2535. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="isDefaultNamespace" class="tsd-anchor"></a>
  2536. <h3 class="tsd-anchor-link"><span class="deprecated">is<wbr/>Default<wbr/>Namespace</span><a href="#isDefaultNamespace" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2537. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2538. <li class="tsd-signature tsd-anchor-link" id="isDefaultNamespace.isDefaultNamespace-1">is<wbr/>Default<wbr/>Namespace<span class="tsd-signature-symbol">(</span>namespace<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isDefaultNamespace.isDefaultNamespace-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2539. <li class="tsd-description">
  2540. <div class="tsd-parameters">
  2541. <h4 class="tsd-parameters-title">Parameters</h4>
  2542. <ul class="tsd-parameter-list">
  2543. <li>
  2544. <h5>namespace: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li></ul></div>
  2545. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2546. <p>Inherited from HTMLElement.isDefaultNamespace</p>
  2547. <ul>
  2548. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10079</li></ul></aside></li></ul></section>
  2549. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="isEqualNode" class="tsd-anchor"></a>
  2550. <h3 class="tsd-anchor-link"><span class="deprecated">is<wbr/>Equal<wbr/>Node</span><a href="#isEqualNode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2551. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2552. <li class="tsd-signature tsd-anchor-link" id="isEqualNode.isEqualNode-1">is<wbr/>Equal<wbr/>Node<span class="tsd-signature-symbol">(</span>otherNode<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isEqualNode.isEqualNode-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2553. <li class="tsd-description">
  2554. <div class="tsd-comment tsd-typography"><p>Returns whether node and otherNode have the same properties.</p>
  2555. </div>
  2556. <div class="tsd-parameters">
  2557. <h4 class="tsd-parameters-title">Parameters</h4>
  2558. <ul class="tsd-parameter-list">
  2559. <li>
  2560. <h5>otherNode: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h5></li></ul></div>
  2561. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2562. <p>Inherited from HTMLElement.isEqualNode</p>
  2563. <ul>
  2564. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10081</li></ul></aside></li></ul></section>
  2565. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="isSameNode" class="tsd-anchor"></a>
  2566. <h3 class="tsd-anchor-link"><span class="deprecated">is<wbr/>Same<wbr/>Node</span><a href="#isSameNode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2567. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2568. <li class="tsd-signature tsd-anchor-link" id="isSameNode.isSameNode-1">is<wbr/>Same<wbr/>Node<span class="tsd-signature-symbol">(</span>otherNode<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#isSameNode.isSameNode-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2569. <li class="tsd-description">
  2570. <div class="tsd-parameters">
  2571. <h4 class="tsd-parameters-title">Parameters</h4>
  2572. <ul class="tsd-parameter-list">
  2573. <li>
  2574. <h5>otherNode: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h5></li></ul></div>
  2575. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2576. <p>Inherited from HTMLElement.isSameNode</p>
  2577. <ul>
  2578. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10082</li></ul></aside></li></ul></section>
  2579. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="lookupNamespaceURI" class="tsd-anchor"></a>
  2580. <h3 class="tsd-anchor-link"><span class="deprecated">lookup<wbr/>NamespaceURI</span><a href="#lookupNamespaceURI" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2581. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2582. <li class="tsd-signature tsd-anchor-link" id="lookupNamespaceURI.lookupNamespaceURI-1">lookup<wbr/>NamespaceURI<span class="tsd-signature-symbol">(</span>prefix<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><a href="#lookupNamespaceURI.lookupNamespaceURI-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2583. <li class="tsd-description">
  2584. <div class="tsd-parameters">
  2585. <h4 class="tsd-parameters-title">Parameters</h4>
  2586. <ul class="tsd-parameter-list">
  2587. <li>
  2588. <h5>prefix: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li></ul></div>
  2589. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
  2590. <p>Inherited from HTMLElement.lookupNamespaceURI</p>
  2591. <ul>
  2592. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10083</li></ul></aside></li></ul></section>
  2593. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="lookupPrefix" class="tsd-anchor"></a>
  2594. <h3 class="tsd-anchor-link"><span class="deprecated">lookup<wbr/>Prefix</span><a href="#lookupPrefix" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2595. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2596. <li class="tsd-signature tsd-anchor-link" id="lookupPrefix.lookupPrefix-1">lookup<wbr/>Prefix<span class="tsd-signature-symbol">(</span>namespace<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><a href="#lookupPrefix.lookupPrefix-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2597. <li class="tsd-description">
  2598. <div class="tsd-parameters">
  2599. <h4 class="tsd-parameters-title">Parameters</h4>
  2600. <ul class="tsd-parameter-list">
  2601. <li>
  2602. <h5>namespace: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li></ul></div>
  2603. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
  2604. <p>Inherited from HTMLElement.lookupPrefix</p>
  2605. <ul>
  2606. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10084</li></ul></aside></li></ul></section>
  2607. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="matches" class="tsd-anchor"></a>
  2608. <h3 class="tsd-anchor-link"><span class="deprecated">matches</span><a href="#matches" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2609. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2610. <li class="tsd-signature tsd-anchor-link" id="matches.matches-1">matches<span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#matches.matches-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2611. <li class="tsd-description">
  2612. <div class="tsd-comment tsd-typography"><p>Returns true if matching selectors against element&#39;s root yields element, and false otherwise.</p>
  2613. </div>
  2614. <div class="tsd-parameters">
  2615. <h4 class="tsd-parameters-title">Parameters</h4>
  2616. <ul class="tsd-parameter-list">
  2617. <li>
  2618. <h5>selectors: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2619. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  2620. <p>Inherited from HTMLElement.matches</p>
  2621. <ul>
  2622. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4919</li></ul></aside></li></ul></section>
  2623. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="normalize" class="tsd-anchor"></a>
  2624. <h3 class="tsd-anchor-link"><span class="deprecated">normalize</span><a href="#normalize" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2625. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2626. <li class="tsd-signature tsd-anchor-link" id="normalize.normalize-1">normalize<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#normalize.normalize-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2627. <li class="tsd-description">
  2628. <div class="tsd-comment tsd-typography"><p>Removes empty exclusive Text nodes and concatenates the data of remaining contiguous exclusive Text nodes into the first of their nodes.</p>
  2629. </div>
  2630. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2631. <p>Inherited from HTMLElement.normalize</p>
  2632. <ul>
  2633. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10086</li></ul></aside></li></ul></section>
  2634. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="prepend" class="tsd-anchor"></a>
  2635. <h3 class="tsd-anchor-link"><span class="deprecated">prepend</span><a href="#prepend" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2636. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2637. <li class="tsd-signature tsd-anchor-link" id="prepend.prepend-1">prepend<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>nodes<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#prepend.prepend-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2638. <li class="tsd-description">
  2639. <div class="tsd-comment tsd-typography"><p>Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.</p>
  2640. <p>Throws a &quot;HierarchyRequestError&quot; DOMException if the constraints of the node tree are violated.</p>
  2641. </div>
  2642. <div class="tsd-parameters">
  2643. <h4 class="tsd-parameters-title">Parameters</h4>
  2644. <ul class="tsd-parameter-list">
  2645. <li>
  2646. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>nodes: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2647. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2648. <p>Inherited from HTMLElement.prepend</p>
  2649. <ul>
  2650. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10425</li></ul></aside></li></ul></section>
  2651. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="querySelector" class="tsd-anchor"></a>
  2652. <h3 class="tsd-anchor-link"><span class="deprecated">query<wbr/>Selector</span><a href="#querySelector" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2653. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2654. <li class="tsd-signature tsd-anchor-link" id="querySelector.querySelector-1">query<wbr/>Selector<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><a href="#querySelector.querySelector-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2655. <li class="tsd-description">
  2656. <div class="tsd-comment tsd-typography"><p>Returns the first element that is a descendant of node that matches selectors.</p>
  2657. </div>
  2658. <div class="tsd-type-parameters">
  2659. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2660. <ul class="tsd-type-parameters">
  2661. <li>
  2662. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a></h4></li></ul></div>
  2663. <div class="tsd-parameters">
  2664. <h4 class="tsd-parameters-title">Parameters</h4>
  2665. <ul class="tsd-parameter-list">
  2666. <li>
  2667. <h5>selectors: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li></ul></div>
  2668. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span></h4><aside class="tsd-sources">
  2669. <p>Inherited from HTMLElement.querySelector</p>
  2670. <ul>
  2671. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10427</li></ul></aside></li>
  2672. <li class="tsd-signature tsd-anchor-link" id="querySelector.querySelector-2">query<wbr/>Selector<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><a href="#querySelector.querySelector-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2673. <li class="tsd-description">
  2674. <div class="tsd-type-parameters">
  2675. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2676. <ul class="tsd-type-parameters">
  2677. <li>
  2678. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a></h4></li></ul></div>
  2679. <div class="tsd-parameters">
  2680. <h4 class="tsd-parameters-title">Parameters</h4>
  2681. <ul class="tsd-parameter-list">
  2682. <li>
  2683. <h5>selectors: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li></ul></div>
  2684. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span></h4><aside class="tsd-sources">
  2685. <p>Inherited from HTMLElement.querySelector</p>
  2686. <ul>
  2687. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10428</li></ul></aside></li>
  2688. <li class="tsd-signature tsd-anchor-link" id="querySelector.querySelector-3">query<wbr/>Selector<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span><a href="#querySelector.querySelector-3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2689. <li class="tsd-description">
  2690. <div class="tsd-type-parameters">
  2691. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2692. <ul class="tsd-type-parameters">
  2693. <li>
  2694. <h4>E<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-type">Element</span> = <span class="tsd-signature-type">Element</span></h4></li></ul></div>
  2695. <div class="tsd-parameters">
  2696. <h4 class="tsd-parameters-title">Parameters</h4>
  2697. <ul class="tsd-parameter-list">
  2698. <li>
  2699. <h5>selectors: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2700. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span></h4><aside class="tsd-sources">
  2701. <p>Inherited from HTMLElement.querySelector</p>
  2702. <ul>
  2703. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10429</li></ul></aside></li></ul></section>
  2704. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="querySelectorAll" class="tsd-anchor"></a>
  2705. <h3 class="tsd-anchor-link"><span class="deprecated">query<wbr/>Selector<wbr/>All</span><a href="#querySelectorAll" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2706. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2707. <li class="tsd-signature tsd-anchor-link" id="querySelectorAll.querySelectorAll-1">query<wbr/>Selector<wbr/>All<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.NodeListOf.html" class="tsd-signature-type" data-tsd-kind="Interface">NodeListOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#querySelectorAll.querySelectorAll-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2708. <li class="tsd-description">
  2709. <div class="tsd-comment tsd-typography"><p>Returns all element descendants of node that match selectors.</p>
  2710. </div>
  2711. <div class="tsd-type-parameters">
  2712. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2713. <ul class="tsd-type-parameters">
  2714. <li>
  2715. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a></h4></li></ul></div>
  2716. <div class="tsd-parameters">
  2717. <h4 class="tsd-parameters-title">Parameters</h4>
  2718. <ul class="tsd-parameter-list">
  2719. <li>
  2720. <h5>selectors: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li></ul></div>
  2721. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.NodeListOf.html" class="tsd-signature-type" data-tsd-kind="Interface">NodeListOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.HTMLElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2722. <p>Inherited from HTMLElement.querySelectorAll</p>
  2723. <ul>
  2724. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10431</li></ul></aside></li>
  2725. <li class="tsd-signature tsd-anchor-link" id="querySelectorAll.querySelectorAll-2">query<wbr/>Selector<wbr/>All<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.NodeListOf.html" class="tsd-signature-type" data-tsd-kind="Interface">NodeListOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span><a href="#querySelectorAll.querySelectorAll-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2726. <li class="tsd-description">
  2727. <div class="tsd-type-parameters">
  2728. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2729. <ul class="tsd-type-parameters">
  2730. <li>
  2731. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a></h4></li></ul></div>
  2732. <div class="tsd-parameters">
  2733. <h4 class="tsd-parameters-title">Parameters</h4>
  2734. <ul class="tsd-parameter-list">
  2735. <li>
  2736. <h5>selectors: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li></ul></div>
  2737. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.NodeListOf.html" class="tsd-signature-type" data-tsd-kind="Interface">NodeListOf</a><span class="tsd-signature-symbol">&lt;</span><a href="RcsbFv3DAssembly._internal_.SVGElementTagNameMap.html" class="tsd-signature-type" data-tsd-kind="Interface">SVGElementTagNameMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2738. <p>Inherited from HTMLElement.querySelectorAll</p>
  2739. <ul>
  2740. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10432</li></ul></aside></li>
  2741. <li class="tsd-signature tsd-anchor-link" id="querySelectorAll.querySelectorAll-3">query<wbr/>Selector<wbr/>All<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.NodeListOf.html" class="tsd-signature-type" data-tsd-kind="Interface">NodeListOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span><span class="tsd-signature-symbol">&gt;</span><a href="#querySelectorAll.querySelectorAll-3" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2742. <li class="tsd-description">
  2743. <div class="tsd-type-parameters">
  2744. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2745. <ul class="tsd-type-parameters">
  2746. <li>
  2747. <h4>E<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-type">Element</span> = <span class="tsd-signature-type">Element</span></h4></li></ul></div>
  2748. <div class="tsd-parameters">
  2749. <h4 class="tsd-parameters-title">Parameters</h4>
  2750. <ul class="tsd-parameter-list">
  2751. <li>
  2752. <h5>selectors: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2753. <h4 class="tsd-returns-title">Returns <a href="RcsbFv3DAssembly._internal_.NodeListOf.html" class="tsd-signature-type" data-tsd-kind="Interface">NodeListOf</a><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">E</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2754. <p>Inherited from HTMLElement.querySelectorAll</p>
  2755. <ul>
  2756. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10433</li></ul></aside></li></ul></section>
  2757. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="releasePointerCapture" class="tsd-anchor"></a>
  2758. <h3 class="tsd-anchor-link"><span class="deprecated">release<wbr/>Pointer<wbr/>Capture</span><a href="#releasePointerCapture" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2759. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2760. <li class="tsd-signature tsd-anchor-link" id="releasePointerCapture.releasePointerCapture-1">release<wbr/>Pointer<wbr/>Capture<span class="tsd-signature-symbol">(</span>pointerId<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#releasePointerCapture.releasePointerCapture-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2761. <li class="tsd-description">
  2762. <div class="tsd-parameters">
  2763. <h4 class="tsd-parameters-title">Parameters</h4>
  2764. <ul class="tsd-parameter-list">
  2765. <li>
  2766. <h5>pointerId: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  2767. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2768. <p>Inherited from HTMLElement.releasePointerCapture</p>
  2769. <ul>
  2770. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4920</li></ul></aside></li></ul></section>
  2771. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="remove" class="tsd-anchor"></a>
  2772. <h3 class="tsd-anchor-link"><span class="deprecated">remove</span><a href="#remove" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2773. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2774. <li class="tsd-signature tsd-anchor-link" id="remove.remove-1">remove<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#remove.remove-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2775. <li class="tsd-description">
  2776. <div class="tsd-comment tsd-typography"><p>Removes node.</p>
  2777. </div>
  2778. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2779. <p>Inherited from HTMLElement.remove</p>
  2780. <ul>
  2781. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:3582</li></ul></aside></li></ul></section>
  2782. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="removeAttribute" class="tsd-anchor"></a>
  2783. <h3 class="tsd-anchor-link"><span class="deprecated">remove<wbr/>Attribute</span><a href="#removeAttribute" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2784. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2785. <li class="tsd-signature tsd-anchor-link" id="removeAttribute.removeAttribute-1">remove<wbr/>Attribute<span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#removeAttribute.removeAttribute-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2786. <li class="tsd-description">
  2787. <div class="tsd-comment tsd-typography"><p>Removes element&#39;s first attribute whose qualified name is qualifiedName.</p>
  2788. </div>
  2789. <div class="tsd-parameters">
  2790. <h4 class="tsd-parameters-title">Parameters</h4>
  2791. <ul class="tsd-parameter-list">
  2792. <li>
  2793. <h5>qualifiedName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2794. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2795. <p>Inherited from HTMLElement.removeAttribute</p>
  2796. <ul>
  2797. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4922</li></ul></aside></li></ul></section>
  2798. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="removeAttributeNS" class="tsd-anchor"></a>
  2799. <h3 class="tsd-anchor-link"><span class="deprecated">remove<wbr/>AttributeNS</span><a href="#removeAttributeNS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2800. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2801. <li class="tsd-signature tsd-anchor-link" id="removeAttributeNS.removeAttributeNS-1">remove<wbr/>AttributeNS<span class="tsd-signature-symbol">(</span>namespace<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span>, localName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#removeAttributeNS.removeAttributeNS-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2802. <li class="tsd-description">
  2803. <div class="tsd-comment tsd-typography"><p>Removes element&#39;s attribute whose namespace is namespace and local name is localName.</p>
  2804. </div>
  2805. <div class="tsd-parameters">
  2806. <h4 class="tsd-parameters-title">Parameters</h4>
  2807. <ul class="tsd-parameter-list">
  2808. <li>
  2809. <h5>namespace: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li>
  2810. <li>
  2811. <h5>localName: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  2812. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2813. <p>Inherited from HTMLElement.removeAttributeNS</p>
  2814. <ul>
  2815. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4924</li></ul></aside></li></ul></section>
  2816. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="removeAttributeNode" class="tsd-anchor"></a>
  2817. <h3 class="tsd-anchor-link"><span class="deprecated">remove<wbr/>Attribute<wbr/>Node</span><a href="#removeAttributeNode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2818. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2819. <li class="tsd-signature tsd-anchor-link" id="removeAttributeNode.removeAttributeNode-1">remove<wbr/>Attribute<wbr/>Node<span class="tsd-signature-symbol">(</span>attr<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a><a href="#removeAttributeNode.removeAttributeNode-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2820. <li class="tsd-description">
  2821. <div class="tsd-parameters">
  2822. <h4 class="tsd-parameters-title">Parameters</h4>
  2823. <ul class="tsd-parameter-list">
  2824. <li>
  2825. <h5>attr: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a></h5></li></ul></div>
  2826. <h4 class="tsd-returns-title">Returns <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a></h4><aside class="tsd-sources">
  2827. <p>Inherited from HTMLElement.removeAttributeNode</p>
  2828. <ul>
  2829. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4925</li></ul></aside></li></ul></section>
  2830. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="removeChild" class="tsd-anchor"></a>
  2831. <h3 class="tsd-anchor-link"><span class="deprecated">remove<wbr/>Child</span><a href="#removeChild" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2832. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2833. <li class="tsd-signature tsd-anchor-link" id="removeChild.removeChild-1">remove<wbr/>Child<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>child<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#removeChild.removeChild-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2834. <li class="tsd-description">
  2835. <div class="tsd-type-parameters">
  2836. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2837. <ul class="tsd-type-parameters">
  2838. <li>
  2839. <h4>T<span class="tsd-signature-symbol"> extends </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h4></li></ul></div>
  2840. <div class="tsd-parameters">
  2841. <h4 class="tsd-parameters-title">Parameters</h4>
  2842. <ul class="tsd-parameter-list">
  2843. <li>
  2844. <h5>child: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  2845. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  2846. <p>Inherited from HTMLElement.removeChild</p>
  2847. <ul>
  2848. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10087</li></ul></aside></li></ul></section>
  2849. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a id="removeEventListener" class="tsd-anchor"></a>
  2850. <h3 class="tsd-anchor-link"><span class="deprecated">remove<wbr/>Event<wbr/>Listener</span><a href="#removeEventListener" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2851. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-external">
  2852. <li class="tsd-signature tsd-anchor-link" id="removeEventListener.removeEventListener-1">remove<wbr/>Event<wbr/>Listener<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLDirectoryElement-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLDirectoryElement</a>, ev<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.EventListenerOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">EventListenerOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#removeEventListener.removeEventListener-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2853. <li class="tsd-description">
  2854. <div class="tsd-type-parameters">
  2855. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2856. <ul class="tsd-type-parameters">
  2857. <li>
  2858. <h4>K<span class="tsd-signature-symbol"> extends </span><span class="tsd-signature-symbol">keyof </span><a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a></h4></li></ul></div>
  2859. <div class="tsd-parameters">
  2860. <h4 class="tsd-parameters-title">Parameters</h4>
  2861. <ul class="tsd-parameter-list">
  2862. <li>
  2863. <h5>type: <span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span></h5></li>
  2864. <li>
  2865. <h5>listener: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLDirectoryElement-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLDirectoryElement</a>, ev<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></h5>
  2866. <ul class="tsd-parameters">
  2867. <li class="tsd-parameter-signature">
  2868. <ul class="tsd-signatures tsd-kind-type-literal tsd-is-external">
  2869. <li class="tsd-signature"><span class="tsd-signature-symbol">(</span>this<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLDirectoryElement-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLDirectoryElement</a>, ev<span class="tsd-signature-symbol">: </span><a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
  2870. <li class="tsd-description">
  2871. <div class="tsd-parameters">
  2872. <h4 class="tsd-parameters-title">Parameters</h4>
  2873. <ul class="tsd-parameter-list">
  2874. <li>
  2875. <h5>this: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.HTMLDirectoryElement-1.html" class="tsd-signature-type" data-tsd-kind="Variable">HTMLDirectoryElement</a></h5></li>
  2876. <li>
  2877. <h5>ev: <a href="RcsbFv3DAssembly._internal_.HTMLElementEventMap.html" class="tsd-signature-type" data-tsd-kind="Interface">HTMLElementEventMap</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">K</span><span class="tsd-signature-symbol">]</span></h5></li></ul></div>
  2878. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4></li></ul></li></ul></li>
  2879. <li>
  2880. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.EventListenerOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">EventListenerOptions</a></h5></li></ul></div>
  2881. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2882. <p>Overrides HTMLElement.removeEventListener</p>
  2883. <ul>
  2884. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6296</li></ul></aside></li>
  2885. <li class="tsd-signature tsd-anchor-link" id="removeEventListener.removeEventListener-2">remove<wbr/>Event<wbr/>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><a href="../types/RcsbFv3DAssembly._internal_.EventListenerOrEventListenerObject.html" class="tsd-signature-type" data-tsd-kind="Type alias">EventListenerOrEventListenerObject</a>, options<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.EventListenerOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">EventListenerOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#removeEventListener.removeEventListener-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2886. <li class="tsd-description">
  2887. <div class="tsd-parameters">
  2888. <h4 class="tsd-parameters-title">Parameters</h4>
  2889. <ul class="tsd-parameter-list">
  2890. <li>
  2891. <h5>type: <span class="tsd-signature-type">string</span></h5></li>
  2892. <li>
  2893. <h5>listener: <a href="../types/RcsbFv3DAssembly._internal_.EventListenerOrEventListenerObject.html" class="tsd-signature-type" data-tsd-kind="Type alias">EventListenerOrEventListenerObject</a></h5></li>
  2894. <li>
  2895. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.EventListenerOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">EventListenerOptions</a></h5></li></ul></div>
  2896. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2897. <p>Overrides HTMLElement.removeEventListener</p>
  2898. <ul>
  2899. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:6297</li></ul></aside></li></ul></section>
  2900. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="replaceChild" class="tsd-anchor"></a>
  2901. <h3 class="tsd-anchor-link"><span class="deprecated">replace<wbr/>Child</span><a href="#replaceChild" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2902. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2903. <li class="tsd-signature tsd-anchor-link" id="replaceChild.replaceChild-1">replace<wbr/>Child<span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">&gt;</span><span class="tsd-signature-symbol">(</span>node<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a>, child<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span><a href="#replaceChild.replaceChild-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2904. <li class="tsd-description">
  2905. <div class="tsd-type-parameters">
  2906. <h4 class="tsd-type-parameters-title">Type Parameters</h4>
  2907. <ul class="tsd-type-parameters">
  2908. <li>
  2909. <h4>T<span class="tsd-signature-symbol"> extends </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h4></li></ul></div>
  2910. <div class="tsd-parameters">
  2911. <h4 class="tsd-parameters-title">Parameters</h4>
  2912. <ul class="tsd-parameter-list">
  2913. <li>
  2914. <h5>node: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a></h5></li>
  2915. <li>
  2916. <h5>child: <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h5></li></ul></div>
  2917. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type" data-tsd-kind="Type parameter">T</span></h4><aside class="tsd-sources">
  2918. <p>Inherited from HTMLElement.replaceChild</p>
  2919. <ul>
  2920. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10088</li></ul></aside></li></ul></section>
  2921. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="replaceChildren" class="tsd-anchor"></a>
  2922. <h3 class="tsd-anchor-link"><span class="deprecated">replace<wbr/>Children</span><a href="#replaceChildren" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2923. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2924. <li class="tsd-signature tsd-anchor-link" id="replaceChildren.replaceChildren-1">replace<wbr/>Children<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>nodes<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#replaceChildren.replaceChildren-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2925. <li class="tsd-description">
  2926. <div class="tsd-comment tsd-typography"><p>Replace all children of node with nodes, while replacing strings in nodes with equivalent Text nodes.</p>
  2927. <p>Throws a &quot;HierarchyRequestError&quot; DOMException if the constraints of the node tree are violated.</p>
  2928. </div>
  2929. <div class="tsd-parameters">
  2930. <h4 class="tsd-parameters-title">Parameters</h4>
  2931. <ul class="tsd-parameter-list">
  2932. <li>
  2933. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>nodes: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2934. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2935. <p>Inherited from HTMLElement.replaceChildren</p>
  2936. <ul>
  2937. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:10439</li></ul></aside></li></ul></section>
  2938. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="replaceWith" class="tsd-anchor"></a>
  2939. <h3 class="tsd-anchor-link"><span class="deprecated">replace<wbr/>With</span><a href="#replaceWith" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2940. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2941. <li class="tsd-signature tsd-anchor-link" id="replaceWith.replaceWith-1">replace<wbr/>With<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">...</span>nodes<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#replaceWith.replaceWith-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2942. <li class="tsd-description">
  2943. <div class="tsd-comment tsd-typography"><p>Replaces node with nodes, while replacing strings in nodes with equivalent Text nodes.</p>
  2944. <p>Throws a &quot;HierarchyRequestError&quot; DOMException if the constraints of the node tree are violated.</p>
  2945. </div>
  2946. <div class="tsd-parameters">
  2947. <h4 class="tsd-parameters-title">Parameters</h4>
  2948. <ul class="tsd-parameter-list">
  2949. <li>
  2950. <h5><code class="tsd-tag ts-flagRest">Rest</code> <span class="tsd-signature-symbol">...</span>nodes: <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Node-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Node</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h5></li></ul></div>
  2951. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2952. <p>Inherited from HTMLElement.replaceWith</p>
  2953. <ul>
  2954. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:3588</li></ul></aside></li></ul></section>
  2955. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="requestFullscreen" class="tsd-anchor"></a>
  2956. <h3 class="tsd-anchor-link"><span class="deprecated">request<wbr/>Fullscreen</span><a href="#requestFullscreen" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2957. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2958. <li class="tsd-signature tsd-anchor-link" id="requestFullscreen.requestFullscreen-1">request<wbr/>Fullscreen<span class="tsd-signature-symbol">(</span>options<span class="tsd-signature-symbol">?: </span><a href="RcsbFv3DAssembly._internal_.FullscreenOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">FullscreenOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span><a href="#requestFullscreen.requestFullscreen-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2959. <li class="tsd-description">
  2960. <div class="tsd-comment tsd-typography"><p>Displays element fullscreen and resolves promise when done.</p>
  2961. <p>When supplied, options&#39;s navigationUI member indicates whether showing navigation UI while in fullscreen is preferred or not. If set to &quot;show&quot;, navigation simplicity is preferred over screen space, and if set to &quot;hide&quot;, more screen space is preferred. User agents are always free to honor user preference over the application&#39;s. The default value &quot;auto&quot; indicates no application preference.</p>
  2962. </div>
  2963. <div class="tsd-parameters">
  2964. <h4 class="tsd-parameters-title">Parameters</h4>
  2965. <ul class="tsd-parameter-list">
  2966. <li>
  2967. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <a href="RcsbFv3DAssembly._internal_.FullscreenOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">FullscreenOptions</a></h5></li></ul></div>
  2968. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">&gt;</span></h4><aside class="tsd-sources">
  2969. <p>Inherited from HTMLElement.requestFullscreen</p>
  2970. <ul>
  2971. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4931</li></ul></aside></li></ul></section>
  2972. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="requestPointerLock" class="tsd-anchor"></a>
  2973. <h3 class="tsd-anchor-link"><span class="deprecated">request<wbr/>Pointer<wbr/>Lock</span><a href="#requestPointerLock" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2974. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2975. <li class="tsd-signature tsd-anchor-link" id="requestPointerLock.requestPointerLock-1">request<wbr/>Pointer<wbr/>Lock<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#requestPointerLock.requestPointerLock-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2976. <li class="tsd-description">
  2977. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2978. <p>Inherited from HTMLElement.requestPointerLock</p>
  2979. <ul>
  2980. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4932</li></ul></aside></li></ul></section>
  2981. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="scroll" class="tsd-anchor"></a>
  2982. <h3 class="tsd-anchor-link"><span class="deprecated">scroll</span><a href="#scroll" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  2983. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  2984. <li class="tsd-signature tsd-anchor-link" id="scroll.scroll-1">scroll<span class="tsd-signature-symbol">(</span>options<span class="tsd-signature-symbol">?: </span><a href="RcsbFv3DAssembly._internal_.ScrollToOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ScrollToOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#scroll.scroll-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2985. <li class="tsd-description">
  2986. <div class="tsd-parameters">
  2987. <h4 class="tsd-parameters-title">Parameters</h4>
  2988. <ul class="tsd-parameter-list">
  2989. <li>
  2990. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <a href="RcsbFv3DAssembly._internal_.ScrollToOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ScrollToOptions</a></h5></li></ul></div>
  2991. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  2992. <p>Inherited from HTMLElement.scroll</p>
  2993. <ul>
  2994. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4933</li></ul></aside></li>
  2995. <li class="tsd-signature tsd-anchor-link" id="scroll.scroll-2">scroll<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#scroll.scroll-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  2996. <li class="tsd-description">
  2997. <div class="tsd-parameters">
  2998. <h4 class="tsd-parameters-title">Parameters</h4>
  2999. <ul class="tsd-parameter-list">
  3000. <li>
  3001. <h5>x: <span class="tsd-signature-type">number</span></h5></li>
  3002. <li>
  3003. <h5>y: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  3004. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3005. <p>Inherited from HTMLElement.scroll</p>
  3006. <ul>
  3007. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4934</li></ul></aside></li></ul></section>
  3008. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="scrollBy" class="tsd-anchor"></a>
  3009. <h3 class="tsd-anchor-link"><span class="deprecated">scroll<wbr/>By</span><a href="#scrollBy" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3010. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3011. <li class="tsd-signature tsd-anchor-link" id="scrollBy.scrollBy-1">scroll<wbr/>By<span class="tsd-signature-symbol">(</span>options<span class="tsd-signature-symbol">?: </span><a href="RcsbFv3DAssembly._internal_.ScrollToOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ScrollToOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#scrollBy.scrollBy-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3012. <li class="tsd-description">
  3013. <div class="tsd-parameters">
  3014. <h4 class="tsd-parameters-title">Parameters</h4>
  3015. <ul class="tsd-parameter-list">
  3016. <li>
  3017. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <a href="RcsbFv3DAssembly._internal_.ScrollToOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ScrollToOptions</a></h5></li></ul></div>
  3018. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3019. <p>Inherited from HTMLElement.scrollBy</p>
  3020. <ul>
  3021. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4935</li></ul></aside></li>
  3022. <li class="tsd-signature tsd-anchor-link" id="scrollBy.scrollBy-2">scroll<wbr/>By<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#scrollBy.scrollBy-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3023. <li class="tsd-description">
  3024. <div class="tsd-parameters">
  3025. <h4 class="tsd-parameters-title">Parameters</h4>
  3026. <ul class="tsd-parameter-list">
  3027. <li>
  3028. <h5>x: <span class="tsd-signature-type">number</span></h5></li>
  3029. <li>
  3030. <h5>y: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  3031. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3032. <p>Inherited from HTMLElement.scrollBy</p>
  3033. <ul>
  3034. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4936</li></ul></aside></li></ul></section>
  3035. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="scrollIntoView" class="tsd-anchor"></a>
  3036. <h3 class="tsd-anchor-link"><span class="deprecated">scroll<wbr/>Into<wbr/>View</span><a href="#scrollIntoView" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3037. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3038. <li class="tsd-signature tsd-anchor-link" id="scrollIntoView.scrollIntoView-1">scroll<wbr/>Into<wbr/>View<span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.ScrollIntoViewOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ScrollIntoViewOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#scrollIntoView.scrollIntoView-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3039. <li class="tsd-description">
  3040. <div class="tsd-parameters">
  3041. <h4 class="tsd-parameters-title">Parameters</h4>
  3042. <ul class="tsd-parameter-list">
  3043. <li>
  3044. <h5><code class="tsd-tag ts-flagOptional">Optional</code> arg: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><a href="RcsbFv3DAssembly._internal_.ScrollIntoViewOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ScrollIntoViewOptions</a></h5></li></ul></div>
  3045. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3046. <p>Inherited from HTMLElement.scrollIntoView</p>
  3047. <ul>
  3048. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4937</li></ul></aside></li></ul></section>
  3049. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="scrollTo" class="tsd-anchor"></a>
  3050. <h3 class="tsd-anchor-link"><span class="deprecated">scroll<wbr/>To</span><a href="#scrollTo" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3051. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3052. <li class="tsd-signature tsd-anchor-link" id="scrollTo.scrollTo-1">scroll<wbr/>To<span class="tsd-signature-symbol">(</span>options<span class="tsd-signature-symbol">?: </span><a href="RcsbFv3DAssembly._internal_.ScrollToOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ScrollToOptions</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#scrollTo.scrollTo-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3053. <li class="tsd-description">
  3054. <div class="tsd-parameters">
  3055. <h4 class="tsd-parameters-title">Parameters</h4>
  3056. <ul class="tsd-parameter-list">
  3057. <li>
  3058. <h5><code class="tsd-tag ts-flagOptional">Optional</code> options: <a href="RcsbFv3DAssembly._internal_.ScrollToOptions.html" class="tsd-signature-type" data-tsd-kind="Interface">ScrollToOptions</a></h5></li></ul></div>
  3059. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3060. <p>Inherited from HTMLElement.scrollTo</p>
  3061. <ul>
  3062. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4938</li></ul></aside></li>
  3063. <li class="tsd-signature tsd-anchor-link" id="scrollTo.scrollTo-2">scroll<wbr/>To<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, y<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#scrollTo.scrollTo-2" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3064. <li class="tsd-description">
  3065. <div class="tsd-parameters">
  3066. <h4 class="tsd-parameters-title">Parameters</h4>
  3067. <ul class="tsd-parameter-list">
  3068. <li>
  3069. <h5>x: <span class="tsd-signature-type">number</span></h5></li>
  3070. <li>
  3071. <h5>y: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  3072. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3073. <p>Inherited from HTMLElement.scrollTo</p>
  3074. <ul>
  3075. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4939</li></ul></aside></li></ul></section>
  3076. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="setAttribute" class="tsd-anchor"></a>
  3077. <h3 class="tsd-anchor-link"><span class="deprecated">set<wbr/>Attribute</span><a href="#setAttribute" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3078. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3079. <li class="tsd-signature tsd-anchor-link" id="setAttribute.setAttribute-1">set<wbr/>Attribute<span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#setAttribute.setAttribute-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3080. <li class="tsd-description">
  3081. <div class="tsd-comment tsd-typography"><p>Sets the value of element&#39;s first attribute whose qualified name is qualifiedName to value.</p>
  3082. </div>
  3083. <div class="tsd-parameters">
  3084. <h4 class="tsd-parameters-title">Parameters</h4>
  3085. <ul class="tsd-parameter-list">
  3086. <li>
  3087. <h5>qualifiedName: <span class="tsd-signature-type">string</span></h5></li>
  3088. <li>
  3089. <h5>value: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  3090. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3091. <p>Inherited from HTMLElement.setAttribute</p>
  3092. <ul>
  3093. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4941</li></ul></aside></li></ul></section>
  3094. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="setAttributeNS" class="tsd-anchor"></a>
  3095. <h3 class="tsd-anchor-link"><span class="deprecated">set<wbr/>AttributeNS</span><a href="#setAttributeNS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3096. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3097. <li class="tsd-signature tsd-anchor-link" id="setAttributeNS.setAttributeNS-1">set<wbr/>AttributeNS<span class="tsd-signature-symbol">(</span>namespace<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span>, qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#setAttributeNS.setAttributeNS-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3098. <li class="tsd-description">
  3099. <div class="tsd-comment tsd-typography"><p>Sets the value of element&#39;s attribute whose namespace is namespace and local name is localName to value.</p>
  3100. </div>
  3101. <div class="tsd-parameters">
  3102. <h4 class="tsd-parameters-title">Parameters</h4>
  3103. <ul class="tsd-parameter-list">
  3104. <li>
  3105. <h5>namespace: <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5></li>
  3106. <li>
  3107. <h5>qualifiedName: <span class="tsd-signature-type">string</span></h5></li>
  3108. <li>
  3109. <h5>value: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  3110. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3111. <p>Inherited from HTMLElement.setAttributeNS</p>
  3112. <ul>
  3113. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4943</li></ul></aside></li></ul></section>
  3114. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="setAttributeNode" class="tsd-anchor"></a>
  3115. <h3 class="tsd-anchor-link"><span class="deprecated">set<wbr/>Attribute<wbr/>Node</span><a href="#setAttributeNode" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3116. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3117. <li class="tsd-signature tsd-anchor-link" id="setAttributeNode.setAttributeNode-1">set<wbr/>Attribute<wbr/>Node<span class="tsd-signature-symbol">(</span>attr<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a><a href="#setAttributeNode.setAttributeNode-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3118. <li class="tsd-description">
  3119. <div class="tsd-parameters">
  3120. <h4 class="tsd-parameters-title">Parameters</h4>
  3121. <ul class="tsd-parameter-list">
  3122. <li>
  3123. <h5>attr: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a></h5></li></ul></div>
  3124. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a></h4><aside class="tsd-sources">
  3125. <p>Inherited from HTMLElement.setAttributeNode</p>
  3126. <ul>
  3127. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4944</li></ul></aside></li></ul></section>
  3128. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="setAttributeNodeNS" class="tsd-anchor"></a>
  3129. <h3 class="tsd-anchor-link"><span class="deprecated">set<wbr/>Attribute<wbr/>NodeNS</span><a href="#setAttributeNodeNS" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3130. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3131. <li class="tsd-signature tsd-anchor-link" id="setAttributeNodeNS.setAttributeNodeNS-1">set<wbr/>Attribute<wbr/>NodeNS<span class="tsd-signature-symbol">(</span>attr<span class="tsd-signature-symbol">: </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a><a href="#setAttributeNodeNS.setAttributeNodeNS-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3132. <li class="tsd-description">
  3133. <div class="tsd-parameters">
  3134. <h4 class="tsd-parameters-title">Parameters</h4>
  3135. <ul class="tsd-parameter-list">
  3136. <li>
  3137. <h5>attr: <a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a></h5></li></ul></div>
  3138. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">null</span><span class="tsd-signature-symbol"> | </span><a href="../modules/RcsbFv3DAssembly._internal_.html" class="tsd-signature-type" data-tsd-kind="Namespace">&lt;internal&gt;</a><span class="tsd-signature-symbol">.</span><a href="../variables/RcsbFv3DAssembly._internal_.Attr-1.html" class="tsd-signature-type" data-tsd-kind="Variable">Attr</a></h4><aside class="tsd-sources">
  3139. <p>Inherited from HTMLElement.setAttributeNodeNS</p>
  3140. <ul>
  3141. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4945</li></ul></aside></li></ul></section>
  3142. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="setPointerCapture" class="tsd-anchor"></a>
  3143. <h3 class="tsd-anchor-link"><span class="deprecated">set<wbr/>Pointer<wbr/>Capture</span><a href="#setPointerCapture" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3144. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3145. <li class="tsd-signature tsd-anchor-link" id="setPointerCapture.setPointerCapture-1">set<wbr/>Pointer<wbr/>Capture<span class="tsd-signature-symbol">(</span>pointerId<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span><a href="#setPointerCapture.setPointerCapture-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3146. <li class="tsd-description">
  3147. <div class="tsd-parameters">
  3148. <h4 class="tsd-parameters-title">Parameters</h4>
  3149. <ul class="tsd-parameter-list">
  3150. <li>
  3151. <h5>pointerId: <span class="tsd-signature-type">number</span></h5></li></ul></div>
  3152. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4><aside class="tsd-sources">
  3153. <p>Inherited from HTMLElement.setPointerCapture</p>
  3154. <ul>
  3155. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4946</li></ul></aside></li></ul></section>
  3156. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="toggleAttribute" class="tsd-anchor"></a>
  3157. <h3 class="tsd-anchor-link"><span class="deprecated">toggle<wbr/>Attribute</span><a href="#toggleAttribute" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3158. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3159. <li class="tsd-signature tsd-anchor-link" id="toggleAttribute.toggleAttribute-1">toggle<wbr/>Attribute<span class="tsd-signature-symbol">(</span>qualifiedName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, force<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#toggleAttribute.toggleAttribute-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3160. <li class="tsd-description">
  3161. <div class="tsd-comment tsd-typography"><p>If force is not given, &quot;toggles&quot; qualifiedName, removing it if it is present and adding it if it is not present. If force is true, adds qualifiedName. If force is false, removes qualifiedName.</p>
  3162. <p>Returns true if qualifiedName is now present, and false otherwise.</p>
  3163. </div>
  3164. <div class="tsd-parameters">
  3165. <h4 class="tsd-parameters-title">Parameters</h4>
  3166. <ul class="tsd-parameter-list">
  3167. <li>
  3168. <h5>qualifiedName: <span class="tsd-signature-type">string</span></h5></li>
  3169. <li>
  3170. <h5><code class="tsd-tag ts-flagOptional">Optional</code> force: <span class="tsd-signature-type">boolean</span></h5></li></ul></div>
  3171. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  3172. <p>Inherited from HTMLElement.toggleAttribute</p>
  3173. <ul>
  3174. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4952</li></ul></aside></li></ul></section>
  3175. <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a id="webkitMatchesSelector" class="tsd-anchor"></a>
  3176. <h3 class="tsd-anchor-link"><span class="deprecated">webkit<wbr/>Matches<wbr/>Selector</span><a href="#webkitMatchesSelector" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
  3177. <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
  3178. <li class="tsd-signature tsd-anchor-link" id="webkitMatchesSelector.webkitMatchesSelector-1">webkit<wbr/>Matches<wbr/>Selector<span class="tsd-signature-symbol">(</span>selectors<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><a href="#webkitMatchesSelector.webkitMatchesSelector-1" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
  3179. <li class="tsd-description">
  3180. <div class="tsd-comment tsd-typography">
  3181. <h3>Deprecated</h3><p>This is a legacy alias of <code>matches</code>.</p>
  3182. </div>
  3183. <div class="tsd-parameters">
  3184. <h4 class="tsd-parameters-title">Parameters</h4>
  3185. <ul class="tsd-parameter-list">
  3186. <li>
  3187. <h5>selectors: <span class="tsd-signature-type">string</span></h5></li></ul></div>
  3188. <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4><aside class="tsd-sources">
  3189. <p>Inherited from HTMLElement.webkitMatchesSelector</p>
  3190. <ul>
  3191. <li>Defined in node_modules/typescript/lib/lib.dom.d.ts:4954</li></ul></aside></li></ul></section></section></div>
  3192. <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
  3193. <div class="tsd-navigation settings">
  3194. <details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
  3195. <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Settings</h3></summary>
  3196. <div class="tsd-accordion-details">
  3197. <div class="tsd-filter-visibility">
  3198. <h4 class="uppercase">Member Visibility</h4><form>
  3199. <ul id="tsd-filter-options">
  3200. <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li>
  3201. <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li>
  3202. <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li>
  3203. <li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div>
  3204. <div class="tsd-theme-toggle">
  3205. <h4 class="uppercase">Theme</h4><select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div>
  3206. <nav class="tsd-navigation primary">
  3207. <details class="tsd-index-accordion" open><summary class="tsd-accordion-summary">
  3208. <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
  3209. <div class="tsd-accordion-details">
  3210. <ul>
  3211. <li class="current"><a href="../modules.html">@rcsb/rcsb-<wbr/>saguaro-<wbr/>3d</a>
  3212. <ul>
  3213. <li class="current tsd-kind-module"><a href="../modules/RcsbFv3DAssembly.html">Rcsb<wbr/>Fv3DAssembly</a>
  3214. <ul>
  3215. <li class="current tsd-kind-namespace tsd-parent-kind-module"><a href="../modules/RcsbFv3DAssembly._internal_.html">&lt;internal&gt;</a>
  3216. <ul>
  3217. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_geo_geometry_text_font_atlas_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>geo/geometry/text/font-<wbr/>atlas&quot;</a></li>
  3218. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_gl_render_object_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>gl/render-<wbr/>object&quot;</a></li>
  3219. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_gl_renderable_schema_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>gl/renderable/schema&quot;</a></li>
  3220. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>model/structure/model&quot;</a>
  3221. <ul>
  3222. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.IndexedCustomProperty.html">Indexed<wbr/>Custom<wbr/>Property</a></li>
  3223. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.Symmetry.html">Symmetry</a></li>
  3224. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.Types.html">Types</a>
  3225. <ul>
  3226. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.Types.BondType.html">Bond<wbr/>Type</a></li>
  3227. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_.Types.SecondaryStructureType.html">Secondary<wbr/>Structure<wbr/>Type</a></li></ul></li></ul></li>
  3228. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_properties_atomic_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>model/structure/model/properties/atomic&quot;</a>
  3229. <ul>
  3230. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_properties_atomic_.AtomicHierarchy.html">Atomic<wbr/>Hierarchy</a></li>
  3231. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_model_structure_model_properties_atomic_.AtomicIndex.html">Atomic<wbr/>Index</a></li></ul></li>
  3232. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_builder_structure_representation_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/builder/structure/representation&quot;</a>
  3233. <ul>
  3234. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_builder_structure_representation_.StructureRepresentationBuilder.html">Structure<wbr/>Representation<wbr/>Builder</a></li></ul></li>
  3235. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_data_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/data&quot;</a></li>
  3236. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_misc_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/misc&quot;</a></li>
  3237. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_model_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/model&quot;</a></li>
  3238. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_representation_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/representation&quot;</a>
  3239. <ul>
  3240. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_representation_.VolumeRepresentation3DHelpers.html">Volume<wbr/>Representation3DHelpers</a></li></ul></li>
  3241. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_shape_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/shape&quot;</a></li>
  3242. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_plugin_state_transforms_volume_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>plugin-<wbr/>state/transforms/volume&quot;</a></li>
  3243. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_repr_structure_representation_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>repr/structure/representation&quot;</a></li>
  3244. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_repr_volume_representation_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>repr/volume/representation&quot;</a></li>
  3245. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_script_language_symbol_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>script/language/symbol&quot;</a>
  3246. <ul>
  3247. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_script_language_symbol_.Arguments.html">Arguments</a></li></ul></li>
  3248. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_script_language_type_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>script/language/type&quot;</a></li>
  3249. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_state_state_builder_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>state/state/builder&quot;</a></li>
  3250. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_state_transformer_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>state/transformer&quot;</a></li>
  3251. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_task_execution_synchronous_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>task/execution/synchronous&quot;</a></li>
  3252. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_binding_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/binding&quot;</a></li>
  3253. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_clip_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/clip&quot;</a>
  3254. <ul>
  3255. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_clip_.Clip.html">Clip</a></li></ul></li>
  3256. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_color_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/color/color&quot;</a>
  3257. <ul>
  3258. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_color_.Color.html">Color</a></li></ul></li>
  3259. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_index_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/color/index&quot;</a>
  3260. <ul>
  3261. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_index_.Color.html">Color</a></li>
  3262. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_color_index_.ColorScale.html">Color<wbr/>Scale</a></li></ul></li>
  3263. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.__Users_joan_devel_rcsb_saguaro_3d_node_modules_molstar_lib_mol_util_uuid_.html">&quot;/<wbr/>Users/joan/devel/rcsb-<wbr/>saguaro-<wbr/>3d/node_<wbr/>modules/molstar/lib/mol-<wbr/>util/uuid&quot;</a></li>
  3264. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Arguments.html">Arguments</a></li>
  3265. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ArrayEncoder.html">Array<wbr/>Encoder</a></li>
  3266. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Assembly.html">Assembly</a></li>
  3267. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Asset.html">Asset</a></li>
  3268. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.AtomicHierarchy.html">Atomic<wbr/>Hierarchy</a></li>
  3269. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.AtomicIndex.html">Atomic<wbr/>Index</a></li>
  3270. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Axes3D.html">Axes3D</a></li>
  3271. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Binding.html">Binding</a>
  3272. <ul>
  3273. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Binding.Trigger.html">Trigger</a></li></ul></li>
  3274. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.BitFlags.html">Bit<wbr/>Flags</a></li>
  3275. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Box3D.html">Box3D</a></li>
  3276. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Bundle.html">Bundle</a></li>
  3277. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ButtonsType.html">Buttons<wbr/>Type</a></li>
  3278. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Camera.html">Camera</a></li>
  3279. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CameraTransitionManager.html">Camera<wbr/>Transition<wbr/>Manager</a></li>
  3280. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Canvas3D.html">Canvas3D</a></li>
  3281. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Canvas3DContext.html">Canvas3DContext</a></li>
  3282. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Category.html">Category</a></li>
  3283. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Cell.html">Cell</a></li>
  3284. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CifCategory.html">Cif<wbr/>Category</a></li>
  3285. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CifExportContext.html">Cif<wbr/>Export<wbr/>Context</a></li>
  3286. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CifField.html">Cif<wbr/>Field</a></li>
  3287. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Clipping.html">Clipping</a>
  3288. <ul>
  3289. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Clipping.Groups.html">Groups</a></li></ul></li>
  3290. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CoarseHierarchy.html">Coarse<wbr/>Hierarchy</a></li>
  3291. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Collection.html">Collection</a>
  3292. <ul>
  3293. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Collection.Indexed.html">Indexed</a></li>
  3294. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Collection.Keyed.html">Keyed</a></li>
  3295. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Collection.Set.html">Set</a></li></ul></li>
  3296. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Color.html">Color</a></li>
  3297. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ColorTheme.html">Color<wbr/>Theme</a></li>
  3298. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Column.html">Column</a>
  3299. <ul>
  3300. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Column.Schema.html">Schema</a></li></ul></li>
  3301. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CompiledQueryFn.html">Compiled<wbr/>Query<wbr/>Fn</a></li>
  3302. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Coordinates.html">Coordinates</a></li>
  3303. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CubeFile.html">Cube<wbr/>File</a></li>
  3304. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.CustomPropertyDescriptor.html">Custom<wbr/>Property<wbr/>Descriptor</a></li>
  3305. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Cylinders.html">Cylinders</a></li>
  3306. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.DirectVolume.html">Direct<wbr/>Volume</a></li>
  3307. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.DxFile.html">Dx<wbr/>File</a></li>
  3308. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Encoding.html">Encoding</a></li>
  3309. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Expression.html">Expression</a></li>
  3310. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Field.html">Field</a></li>
  3311. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Generators.html">Generators</a></li>
  3312. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Geometry.html">Geometry</a></li>
  3313. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Grid.html">Grid</a></li>
  3314. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Image.html">Image</a></li>
  3315. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Indexed.html">Indexed</a></li>
  3316. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Indexed-1.html">Indexed</a></li>
  3317. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.InputObserver.html">Input<wbr/>Observer</a></li>
  3318. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.IntAdjacencyGraph.html">Int<wbr/>Adjacency<wbr/>Graph</a></li>
  3319. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.IntMap.html">Int<wbr/>Map</a></li>
  3320. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.InterUnitBonds.html">Inter<wbr/>Unit<wbr/>Bonds</a></li>
  3321. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.InterUnitGraph.html">Inter<wbr/>Unit<wbr/>Graph</a></li>
  3322. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.InteractivityManager.html">Interactivity<wbr/>Manager</a></li>
  3323. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Interval.html">Interval</a></li>
  3324. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.IntraUnitBonds.html">Intra<wbr/>Unit<wbr/>Bonds</a></li>
  3325. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Iterator.html">Iterator</a></li>
  3326. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Keyed.html">Keyed</a></li>
  3327. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Lines.html">Lines</a></li>
  3328. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.List.html">List</a></li>
  3329. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Location.html">Location</a></li>
  3330. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Loci.html">Loci</a></li>
  3331. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Loci-1.html">Loci</a></li>
  3332. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Loci-2.html">Loci</a></li>
  3333. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.LogEntry.html">Log<wbr/>Entry</a></li>
  3334. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Map.html">Map</a></li>
  3335. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.MarkerActions.html">Marker<wbr/>Actions</a></li>
  3336. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Mat3.html">Mat3</a></li>
  3337. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Mat4.html">Mat4</a></li>
  3338. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Material.html">Material</a></li>
  3339. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Mesh.html">Mesh</a></li>
  3340. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Model.html">Model</a></li>
  3341. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ModifiersKeys.html">Modifiers<wbr/>Keys</a></li>
  3342. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.MolScriptBuilder.html">Mol<wbr/>Script<wbr/>Builder</a></li>
  3343. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Object3D.html">Object3D</a></li>
  3344. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ObjectEvent.html">Object<wbr/>Event</a></li>
  3345. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.OrderedMap.html">Ordered<wbr/>Map</a></li>
  3346. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.OrderedSet.html">Ordered<wbr/>Set</a></li>
  3347. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.OrderedSet-1.html">Ordered<wbr/>Set</a></li>
  3348. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Overpaint.html">Overpaint</a></li>
  3349. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PickingId.html">Picking<wbr/>Id</a></li>
  3350. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PixelData.html">Pixel<wbr/>Data</a></li>
  3351. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginAnimationManager.html">Plugin<wbr/>Animation<wbr/>Manager</a></li>
  3352. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginBehavior.html">Plugin<wbr/>Behavior</a></li>
  3353. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginCommand.html">Plugin<wbr/>Command</a></li>
  3354. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginSpec.html">Plugin<wbr/>Spec</a></li>
  3355. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginState.html">Plugin<wbr/>State</a></li>
  3356. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginStateAnimation.html">Plugin<wbr/>State<wbr/>Animation</a></li>
  3357. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginStateSnapshotManager.html">Plugin<wbr/>State<wbr/>Snapshot<wbr/>Manager</a></li>
  3358. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PluginToastManager.html">Plugin<wbr/>Toast<wbr/>Manager</a></li>
  3359. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Points.html">Points</a></li>
  3360. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.PrincipalAxes.html">Principal<wbr/>Axes</a></li>
  3361. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Progress.html">Progress</a></li>
  3362. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Quat.html">Quat</a></li>
  3363. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.QueryRuntimeArguments.html">Query<wbr/>Runtime<wbr/>Arguments</a></li>
  3364. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.QuerySymbolRuntime.html">Query<wbr/>Symbol<wbr/>Runtime</a></li>
  3365. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Renderer.html">Renderer</a></li>
  3366. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Representation.html">Representation</a>
  3367. <ul>
  3368. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Representation.Loci.html">Loci</a></li></ul></li>
  3369. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.RepresentationProvider.html">Representation<wbr/>Provider</a></li>
  3370. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Result.html">Result</a></li>
  3371. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.RuntimeContext.html">Runtime<wbr/>Context</a></li>
  3372. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.RxEventHelper.html">Rx<wbr/>Event<wbr/>Helper</a></li>
  3373. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Scene.html">Scene</a></li>
  3374. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Script.html">Script</a></li>
  3375. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Segmentation.html">Segmentation</a></li>
  3376. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Seq.html">Seq</a>
  3377. <ul>
  3378. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Seq.Indexed.html">Indexed</a></li>
  3379. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Seq.Keyed.html">Keyed</a></li>
  3380. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Seq.Set.html">Set</a></li></ul></li>
  3381. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Sequence.html">Sequence</a></li>
  3382. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Set.html">Set</a></li>
  3383. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Set-1.html">Set</a></li>
  3384. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Shape.html">Shape</a></li>
  3385. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SizeTheme.html">Size<wbr/>Theme</a></li>
  3386. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SortedArray.html">Sorted<wbr/>Array</a></li>
  3387. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SortedRanges.html">Sorted<wbr/>Ranges</a></li>
  3388. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Spacegroup.html">Spacegroup</a></li>
  3389. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SpacegroupCell.html">Spacegroup<wbr/>Cell</a></li>
  3390. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Sphere3D.html">Sphere3D</a></li>
  3391. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Spheres.html">Spheres</a></li>
  3392. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Stack.html">Stack</a></li>
  3393. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.State.html">State</a>
  3394. <ul>
  3395. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.State.ObjectEvent.html">Object<wbr/>Event</a></li></ul></li>
  3396. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateAction.html">State<wbr/>Action</a>
  3397. <ul>
  3398. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateAction.Builder.html">Builder</a></li></ul></li>
  3399. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateBuilder.html">State<wbr/>Builder</a></li>
  3400. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateObject.html">State<wbr/>Object</a></li>
  3401. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateObjectCell.html">State<wbr/>Object<wbr/>Cell</a></li>
  3402. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateObjectRef.html">State<wbr/>Object<wbr/>Ref</a></li>
  3403. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateObjectSelector.html">State<wbr/>Object<wbr/>Selector</a></li>
  3404. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateTree.html">State<wbr/>Tree</a></li>
  3405. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StateTreeSpine.html">State<wbr/>Tree<wbr/>Spine</a></li>
  3406. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StereoCamera.html">Stereo<wbr/>Camera</a></li>
  3407. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Structure.html">Structure</a></li>
  3408. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Structure-1.html">Structure</a></li>
  3409. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureComponentManager.html">Structure<wbr/>Component<wbr/>Manager</a></li>
  3410. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureHierarchyManager.html">Structure<wbr/>Hierarchy<wbr/>Manager</a></li>
  3411. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureQuery.html">Structure<wbr/>Query</a></li>
  3412. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureRepresentationBuilder.html">Structure<wbr/>Representation<wbr/>Builder</a></li>
  3413. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureRepresentationPresetProvider.html">Structure<wbr/>Representation<wbr/>Preset<wbr/>Provider</a></li>
  3414. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureRepresentationRegistry.html">Structure<wbr/>Representation<wbr/>Registry</a></li>
  3415. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureResult.html">Structure<wbr/>Result</a></li>
  3416. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureSelection.html">Structure<wbr/>Selection</a></li>
  3417. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.StructureSequence.html">Structure<wbr/>Sequence</a></li>
  3418. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Substance.html">Substance</a></li>
  3419. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SymmetryGroup.html">Symmetry<wbr/>Group</a></li>
  3420. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.SymmetryOperator.html">Symmetry<wbr/>Operator</a></li>
  3421. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Table.html">Table</a></li>
  3422. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Task.html">Task</a></li>
  3423. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.TaskManager.html">Task<wbr/>Manager</a></li>
  3424. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Tensor.html">Tensor</a></li>
  3425. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Text.html">Text</a></li>
  3426. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.TextureMesh.html">Texture<wbr/>Mesh</a></li>
  3427. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Theme.html">Theme</a></li>
  3428. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Time.html">Time</a></li>
  3429. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Topology.html">Topology</a></li>
  3430. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Traits.html">Traits</a></li>
  3431. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.TrajectoryHierarchyPresetProvider.html">Trajectory<wbr/>Hierarchy<wbr/>Preset<wbr/>Provider</a></li>
  3432. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Transform.html">Transform</a></li>
  3433. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Transformer.html">Transformer</a>
  3434. <ul>
  3435. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Transformer.Builder.html">Builder</a></li></ul></li>
  3436. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Transparency.html">Transparency</a></li>
  3437. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Type.html">Type</a></li>
  3438. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.UUID.html">UUID</a></li>
  3439. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Unit.html">Unit</a>
  3440. <ul>
  3441. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Unit.SymmetryGroup.html">Symmetry<wbr/>Group</a></li>
  3442. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Unit.Traits.html">Traits</a></li></ul></li>
  3443. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.UnitRing.html">Unit<wbr/>Ring</a></li>
  3444. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.UnitRings.html">Unit<wbr/>Rings</a></li>
  3445. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ValueBox.html">Value<wbr/>Box</a></li>
  3446. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ValueCell.html">Value<wbr/>Cell</a></li>
  3447. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ValueRef.html">Value<wbr/>Ref</a></li>
  3448. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Vec2.html">Vec2</a></li>
  3449. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Vec3.html">Vec3</a></li>
  3450. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Vec4.html">Vec4</a></li>
  3451. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Viewport.html">Viewport</a></li>
  3452. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.ViewportScreenshotHelper.html">Viewport<wbr/>Screenshot<wbr/>Helper</a></li>
  3453. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Visual.html">Visual</a></li>
  3454. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VisualUpdateState.html">Visual<wbr/>Update<wbr/>State</a></li>
  3455. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Volume.html">Volume</a>
  3456. <ul>
  3457. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Volume.Cell.html">Cell</a></li>
  3458. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Volume.IsoValue.html">Iso<wbr/>Value</a></li>
  3459. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.Volume.Isosurface.html">Isosurface</a></li></ul></li>
  3460. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeHierarchyManager.html">Volume<wbr/>Hierarchy<wbr/>Manager</a></li>
  3461. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeRepresentationRegistry.html">Volume<wbr/>Representation<wbr/>Registry</a></li>
  3462. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeServerHeader.html">Volume<wbr/>Server<wbr/>Header</a>
  3463. <ul>
  3464. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeServerHeader.ValueType.html">Value<wbr/>Type</a></li></ul></li>
  3465. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeServerInfo.html">Volume<wbr/>Server<wbr/>Info</a></li>
  3466. <li class="tsd-kind-namespace tsd-parent-kind-namespace tsd-is-external"><a href="../modules/RcsbFv3DAssembly._internal_.VolumeStreaming.html">Volume<wbr/>Streaming</a></li></ul></li></ul></li>
  3467. <li class="tsd-kind-module"><a href="../modules/RcsbFv3DCustom.html">Rcsb<wbr/>Fv3DCustom</a></li></ul></li></ul></div></details></nav>
  3468. <nav class="tsd-navigation secondary menu-sticky">
  3469. <ul>
  3470. <li class="deprecated current tsd-kind-interface tsd-parent-kind-namespace tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg><span>HTMLDirectory<wbr/>Element</span></a>
  3471. <ul>
  3472. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ATTRIBUTE_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ATTRIBUTE_<wbr/>NODE</a></li>
  3473. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#CDATA_SECTION_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>CDATA_<wbr/>SECTION_<wbr/>NODE</a></li>
  3474. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#COMMENT_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>COMMENT_<wbr/>NODE</a></li>
  3475. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_FRAGMENT_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>FRAGMENT_<wbr/>NODE</a></li>
  3476. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>NODE</a></li>
  3477. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_CONTAINED_BY" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>POSITION_<wbr/>CONTAINED_<wbr/>BY</a></li>
  3478. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_CONTAINS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>POSITION_<wbr/>CONTAINS</a></li>
  3479. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_DISCONNECTED" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>POSITION_<wbr/>DISCONNECTED</a></li>
  3480. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_FOLLOWING" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>POSITION_<wbr/>FOLLOWING</a></li>
  3481. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>POSITION_<wbr/>IMPLEMENTATION_<wbr/>SPECIFIC</a></li>
  3482. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_POSITION_PRECEDING" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>POSITION_<wbr/>PRECEDING</a></li>
  3483. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#DOCUMENT_TYPE_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>DOCUMENT_<wbr/>TYPE_<wbr/>NODE</a></li>
  3484. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ELEMENT_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ELEMENT_<wbr/>NODE</a></li>
  3485. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ENTITY_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ENTITY_<wbr/>NODE</a></li>
  3486. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ENTITY_REFERENCE_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ENTITY_<wbr/>REFERENCE_<wbr/>NODE</a></li>
  3487. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#NOTATION_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>NOTATION_<wbr/>NODE</a></li>
  3488. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#PROCESSING_INSTRUCTION_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>PROCESSING_<wbr/>INSTRUCTION_<wbr/>NODE</a></li>
  3489. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#TEXT_NODE" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>TEXT_<wbr/>NODE</a></li>
  3490. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#accessKey" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>access<wbr/>Key</a></li>
  3491. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#accessKeyLabel" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>access<wbr/>Key<wbr/>Label</a></li>
  3492. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaAtomic" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Atomic</a></li>
  3493. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaAutoComplete" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Auto<wbr/>Complete</a></li>
  3494. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaBusy" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Busy</a></li>
  3495. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaChecked" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Checked</a></li>
  3496. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaColCount" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Col<wbr/>Count</a></li>
  3497. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaColIndex" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Col<wbr/>Index</a></li>
  3498. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaColSpan" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Col<wbr/>Span</a></li>
  3499. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaCurrent" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Current</a></li>
  3500. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaDisabled" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Disabled</a></li>
  3501. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaExpanded" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Expanded</a></li>
  3502. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaHasPopup" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Has<wbr/>Popup</a></li>
  3503. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaHidden" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Hidden</a></li>
  3504. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaKeyShortcuts" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Key<wbr/>Shortcuts</a></li>
  3505. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaLabel" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Label</a></li>
  3506. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaLevel" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Level</a></li>
  3507. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaLive" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Live</a></li>
  3508. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaModal" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Modal</a></li>
  3509. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaMultiLine" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Multi<wbr/>Line</a></li>
  3510. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaMultiSelectable" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Multi<wbr/>Selectable</a></li>
  3511. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaOrientation" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Orientation</a></li>
  3512. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaPlaceholder" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Placeholder</a></li>
  3513. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaPosInSet" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Pos<wbr/>In<wbr/>Set</a></li>
  3514. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaPressed" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Pressed</a></li>
  3515. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaReadOnly" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Read<wbr/>Only</a></li>
  3516. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRequired" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Required</a></li>
  3517. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRoleDescription" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Role<wbr/>Description</a></li>
  3518. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRowCount" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Row<wbr/>Count</a></li>
  3519. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRowIndex" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Row<wbr/>Index</a></li>
  3520. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaRowSpan" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Row<wbr/>Span</a></li>
  3521. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaSelected" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Selected</a></li>
  3522. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaSetSize" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Set<wbr/>Size</a></li>
  3523. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaSort" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Sort</a></li>
  3524. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaValueMax" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Value<wbr/>Max</a></li>
  3525. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaValueMin" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Value<wbr/>Min</a></li>
  3526. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaValueNow" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Value<wbr/>Now</a></li>
  3527. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ariaValueText" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>aria<wbr/>Value<wbr/>Text</a></li>
  3528. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#assignedSlot" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>assigned<wbr/>Slot</a></li>
  3529. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#attributes" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>attributes</a></li>
  3530. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#autocapitalize" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>autocapitalize</a></li>
  3531. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#autofocus" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>autofocus</a></li>
  3532. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#baseURI" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>baseURI</a></li>
  3533. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#childElementCount" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>child<wbr/>Element<wbr/>Count</a></li>
  3534. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#childNodes" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>child<wbr/>Nodes</a></li>
  3535. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#children" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>children</a></li>
  3536. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#classList" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>class<wbr/>List</a></li>
  3537. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#className" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>class<wbr/>Name</a></li>
  3538. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#clientHeight" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>client<wbr/>Height</a></li>
  3539. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#clientLeft" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>client<wbr/>Left</a></li>
  3540. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#clientTop" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>client<wbr/>Top</a></li>
  3541. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#clientWidth" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>client<wbr/>Width</a></li>
  3542. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#compact" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>compact</a></li>
  3543. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#contentEditable" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>content<wbr/>Editable</a></li>
  3544. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#dataset" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>dataset</a></li>
  3545. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#dir" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>dir</a></li>
  3546. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#draggable" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>draggable</a></li>
  3547. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#enterKeyHint" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>enter<wbr/>Key<wbr/>Hint</a></li>
  3548. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#firstChild" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>first<wbr/>Child</a></li>
  3549. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#firstElementChild" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>first<wbr/>Element<wbr/>Child</a></li>
  3550. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hidden" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>hidden</a></li>
  3551. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#id" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>id</a></li>
  3552. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#innerHTML" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>innerHTML</a></li>
  3553. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#innerText" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>inner<wbr/>Text</a></li>
  3554. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#inputMode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>input<wbr/>Mode</a></li>
  3555. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isConnected" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>is<wbr/>Connected</a></li>
  3556. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isContentEditable" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>is<wbr/>Content<wbr/>Editable</a></li>
  3557. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lang" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>lang</a></li>
  3558. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lastChild" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>last<wbr/>Child</a></li>
  3559. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lastElementChild" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>last<wbr/>Element<wbr/>Child</a></li>
  3560. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#localName" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>local<wbr/>Name</a></li>
  3561. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#namespaceURI" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>namespaceURI</a></li>
  3562. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nextElementSibling" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>next<wbr/>Element<wbr/>Sibling</a></li>
  3563. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nextSibling" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>next<wbr/>Sibling</a></li>
  3564. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nodeName" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>node<wbr/>Name</a></li>
  3565. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nodeType" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>node<wbr/>Type</a></li>
  3566. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nodeValue" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>node<wbr/>Value</a></li>
  3567. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#nonce" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>nonce?</a></li>
  3568. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetHeight" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>offset<wbr/>Height</a></li>
  3569. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetLeft" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>offset<wbr/>Left</a></li>
  3570. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetParent" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>offset<wbr/>Parent</a></li>
  3571. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetTop" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>offset<wbr/>Top</a></li>
  3572. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#offsetWidth" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>offset<wbr/>Width</a></li>
  3573. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onabort" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onabort</a></li>
  3574. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onanimationcancel" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onanimationcancel</a></li>
  3575. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onanimationend" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onanimationend</a></li>
  3576. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onanimationiteration" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onanimationiteration</a></li>
  3577. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onanimationstart" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onanimationstart</a></li>
  3578. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onauxclick" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onauxclick</a></li>
  3579. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onblur" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onblur</a></li>
  3580. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncanplay" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>oncanplay</a></li>
  3581. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncanplaythrough" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>oncanplaythrough</a></li>
  3582. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onchange" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onchange</a></li>
  3583. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onclick" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onclick</a></li>
  3584. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onclose" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onclose</a></li>
  3585. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncontextmenu" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>oncontextmenu</a></li>
  3586. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncopy" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>oncopy</a></li>
  3587. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncuechange" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>oncuechange</a></li>
  3588. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oncut" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>oncut</a></li>
  3589. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondblclick" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondblclick</a></li>
  3590. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondrag" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondrag</a></li>
  3591. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragend" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondragend</a></li>
  3592. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragenter" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondragenter</a></li>
  3593. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragleave" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondragleave</a></li>
  3594. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragover" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondragover</a></li>
  3595. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondragstart" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondragstart</a></li>
  3596. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondrop" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondrop</a></li>
  3597. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ondurationchange" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ondurationchange</a></li>
  3598. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onemptied" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onemptied</a></li>
  3599. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onended" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onended</a></li>
  3600. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onerror" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onerror</a></li>
  3601. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onfocus" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onfocus</a></li>
  3602. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onformdata" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onformdata</a></li>
  3603. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onfullscreenchange" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onfullscreenchange</a></li>
  3604. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onfullscreenerror" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onfullscreenerror</a></li>
  3605. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ongotpointercapture" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ongotpointercapture</a></li>
  3606. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oninput" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>oninput</a></li>
  3607. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#oninvalid" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>oninvalid</a></li>
  3608. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onkeydown" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onkeydown</a></li>
  3609. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onkeypress" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onkeypress</a></li>
  3610. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onkeyup" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onkeyup</a></li>
  3611. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onload" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onload</a></li>
  3612. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onloadeddata" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onloadeddata</a></li>
  3613. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onloadedmetadata" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onloadedmetadata</a></li>
  3614. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onloadstart" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onloadstart</a></li>
  3615. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onlostpointercapture" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onlostpointercapture</a></li>
  3616. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmousedown" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onmousedown</a></li>
  3617. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseenter" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onmouseenter</a></li>
  3618. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseleave" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onmouseleave</a></li>
  3619. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmousemove" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onmousemove</a></li>
  3620. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseout" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onmouseout</a></li>
  3621. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseover" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onmouseover</a></li>
  3622. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onmouseup" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onmouseup</a></li>
  3623. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpaste" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpaste</a></li>
  3624. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpause" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpause</a></li>
  3625. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onplay" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onplay</a></li>
  3626. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onplaying" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onplaying</a></li>
  3627. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointercancel" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpointercancel</a></li>
  3628. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerdown" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpointerdown</a></li>
  3629. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerenter" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpointerenter</a></li>
  3630. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerleave" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpointerleave</a></li>
  3631. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointermove" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpointermove</a></li>
  3632. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerout" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpointerout</a></li>
  3633. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerover" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpointerover</a></li>
  3634. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onpointerup" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onpointerup</a></li>
  3635. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onprogress" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onprogress</a></li>
  3636. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onratechange" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onratechange</a></li>
  3637. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onreset" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onreset</a></li>
  3638. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onresize" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onresize</a></li>
  3639. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onscroll" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onscroll</a></li>
  3640. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onsecuritypolicyviolation" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onsecuritypolicyviolation</a></li>
  3641. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onseeked" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onseeked</a></li>
  3642. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onseeking" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onseeking</a></li>
  3643. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onselect" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onselect</a></li>
  3644. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onselectionchange" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onselectionchange</a></li>
  3645. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onselectstart" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onselectstart</a></li>
  3646. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onslotchange" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onslotchange</a></li>
  3647. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onstalled" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onstalled</a></li>
  3648. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onsubmit" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onsubmit</a></li>
  3649. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onsuspend" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onsuspend</a></li>
  3650. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontimeupdate" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontimeupdate</a></li>
  3651. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontoggle" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontoggle</a></li>
  3652. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontouchcancel" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontouchcancel?</a></li>
  3653. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontouchend" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontouchend?</a></li>
  3654. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontouchmove" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontouchmove?</a></li>
  3655. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontouchstart" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontouchstart?</a></li>
  3656. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontransitioncancel" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontransitioncancel</a></li>
  3657. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontransitionend" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontransitionend</a></li>
  3658. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontransitionrun" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontransitionrun</a></li>
  3659. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ontransitionstart" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>ontransitionstart</a></li>
  3660. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onvolumechange" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onvolumechange</a></li>
  3661. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwaiting" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onwaiting</a></li>
  3662. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwebkitanimationend" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onwebkitanimationend</a></li>
  3663. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwebkitanimationiteration" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onwebkitanimationiteration</a></li>
  3664. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwebkitanimationstart" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onwebkitanimationstart</a></li>
  3665. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwebkittransitionend" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onwebkittransitionend</a></li>
  3666. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#onwheel" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>onwheel</a></li>
  3667. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#outerHTML" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>outerHTML</a></li>
  3668. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#outerText" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>outer<wbr/>Text</a></li>
  3669. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#ownerDocument" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>owner<wbr/>Document</a></li>
  3670. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#parentElement" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>parent<wbr/>Element</a></li>
  3671. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#parentNode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>parent<wbr/>Node</a></li>
  3672. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#part" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>part</a></li>
  3673. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#prefix" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>prefix</a></li>
  3674. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#previousElementSibling" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>previous<wbr/>Element<wbr/>Sibling</a></li>
  3675. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#previousSibling" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>previous<wbr/>Sibling</a></li>
  3676. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollHeight" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>scroll<wbr/>Height</a></li>
  3677. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollLeft" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>scroll<wbr/>Left</a></li>
  3678. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollTop" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>scroll<wbr/>Top</a></li>
  3679. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollWidth" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>scroll<wbr/>Width</a></li>
  3680. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#shadowRoot" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>shadow<wbr/>Root</a></li>
  3681. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#slot" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>slot</a></li>
  3682. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#spellcheck" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>spellcheck</a></li>
  3683. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#style" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>style</a></li>
  3684. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#tabIndex" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>tab<wbr/>Index</a></li>
  3685. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#tagName" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>tag<wbr/>Name</a></li>
  3686. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#textContent" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>text<wbr/>Content</a></li>
  3687. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#title" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>title</a></li>
  3688. <li class="deprecated tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#translate" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-1024-path"></use><use href="#icon-1024-text"></use></svg>translate</a></li>
  3689. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#addEventListener" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>add<wbr/>Event<wbr/>Listener</a></li>
  3690. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#after" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>after</a></li>
  3691. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#animate" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>animate</a></li>
  3692. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#append" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>append</a></li>
  3693. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#appendChild" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>append<wbr/>Child</a></li>
  3694. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#attachInternals" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>attach<wbr/>Internals</a></li>
  3695. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#attachShadow" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>attach<wbr/>Shadow</a></li>
  3696. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#before" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>before</a></li>
  3697. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#blur" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>blur</a></li>
  3698. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#click" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>click</a></li>
  3699. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#cloneNode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>clone<wbr/>Node</a></li>
  3700. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#closest" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>closest</a></li>
  3701. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#compareDocumentPosition" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>compare<wbr/>Document<wbr/>Position</a></li>
  3702. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#contains" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>contains</a></li>
  3703. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#dispatchEvent" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>dispatch<wbr/>Event</a></li>
  3704. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#focus" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>focus</a></li>
  3705. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAnimations" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Animations</a></li>
  3706. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttribute" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Attribute</a></li>
  3707. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttributeNS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>AttributeNS</a></li>
  3708. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttributeNames" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Attribute<wbr/>Names</a></li>
  3709. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttributeNode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Attribute<wbr/>Node</a></li>
  3710. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getAttributeNodeNS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Attribute<wbr/>NodeNS</a></li>
  3711. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getBoundingClientRect" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Bounding<wbr/>Client<wbr/>Rect</a></li>
  3712. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getClientRects" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Client<wbr/>Rects</a></li>
  3713. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getElementsByClassName" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Elements<wbr/>By<wbr/>Class<wbr/>Name</a></li>
  3714. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getElementsByTagName" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>Name</a></li>
  3715. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getElementsByTagNameNS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Elements<wbr/>By<wbr/>Tag<wbr/>NameNS</a></li>
  3716. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#getRootNode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Root<wbr/>Node</a></li>
  3717. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasAttribute" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>has<wbr/>Attribute</a></li>
  3718. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasAttributeNS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>has<wbr/>AttributeNS</a></li>
  3719. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasAttributes" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>has<wbr/>Attributes</a></li>
  3720. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasChildNodes" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>has<wbr/>Child<wbr/>Nodes</a></li>
  3721. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#hasPointerCapture" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>has<wbr/>Pointer<wbr/>Capture</a></li>
  3722. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#insertAdjacentElement" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>insert<wbr/>Adjacent<wbr/>Element</a></li>
  3723. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#insertAdjacentHTML" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>insert<wbr/>AdjacentHTML</a></li>
  3724. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#insertAdjacentText" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>insert<wbr/>Adjacent<wbr/>Text</a></li>
  3725. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#insertBefore" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>insert<wbr/>Before</a></li>
  3726. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isDefaultNamespace" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>is<wbr/>Default<wbr/>Namespace</a></li>
  3727. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isEqualNode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>is<wbr/>Equal<wbr/>Node</a></li>
  3728. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#isSameNode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>is<wbr/>Same<wbr/>Node</a></li>
  3729. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lookupNamespaceURI" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>lookup<wbr/>NamespaceURI</a></li>
  3730. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#lookupPrefix" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>lookup<wbr/>Prefix</a></li>
  3731. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#matches" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>matches</a></li>
  3732. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#normalize" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>normalize</a></li>
  3733. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#prepend" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>prepend</a></li>
  3734. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#querySelector" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>query<wbr/>Selector</a></li>
  3735. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#querySelectorAll" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>query<wbr/>Selector<wbr/>All</a></li>
  3736. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#releasePointerCapture" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>release<wbr/>Pointer<wbr/>Capture</a></li>
  3737. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#remove" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>remove</a></li>
  3738. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeAttribute" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>remove<wbr/>Attribute</a></li>
  3739. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeAttributeNS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>remove<wbr/>AttributeNS</a></li>
  3740. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeAttributeNode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>remove<wbr/>Attribute<wbr/>Node</a></li>
  3741. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeChild" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>remove<wbr/>Child</a></li>
  3742. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#removeEventListener" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>remove<wbr/>Event<wbr/>Listener</a></li>
  3743. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#replaceChild" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>replace<wbr/>Child</a></li>
  3744. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#replaceChildren" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>replace<wbr/>Children</a></li>
  3745. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#replaceWith" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>replace<wbr/>With</a></li>
  3746. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#requestFullscreen" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>request<wbr/>Fullscreen</a></li>
  3747. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#requestPointerLock" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>request<wbr/>Pointer<wbr/>Lock</a></li>
  3748. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scroll" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>scroll</a></li>
  3749. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollBy" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>scroll<wbr/>By</a></li>
  3750. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollIntoView" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>scroll<wbr/>Into<wbr/>View</a></li>
  3751. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#scrollTo" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>scroll<wbr/>To</a></li>
  3752. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setAttribute" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>set<wbr/>Attribute</a></li>
  3753. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setAttributeNS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>set<wbr/>AttributeNS</a></li>
  3754. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setAttributeNode" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>set<wbr/>Attribute<wbr/>Node</a></li>
  3755. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setAttributeNodeNS" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>set<wbr/>Attribute<wbr/>NodeNS</a></li>
  3756. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#setPointerCapture" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>set<wbr/>Pointer<wbr/>Capture</a></li>
  3757. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#toggleAttribute" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>toggle<wbr/>Attribute</a></li>
  3758. <li class="deprecated tsd-kind-method tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="RcsbFv3DAssembly._internal_.HTMLDirectoryElement.html#webkitMatchesSelector" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>webkit<wbr/>Matches<wbr/>Selector</a></li></ul></li></ul></nav></div></div>
  3759. <div class="container tsd-generator">
  3760. <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div>
  3761. <div class="overlay"></div><script src="../assets/main.js"></script></body></html>