index.js.flow 315 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485
  1. // @flow strict
  2. export type StandardLonghandProperties<TLength = string | 0, TTime = string> = {|
  3. accentColor?: Property$AccentColor,
  4. alignContent?: Property$AlignContent,
  5. alignItems?: Property$AlignItems,
  6. alignSelf?: Property$AlignSelf,
  7. alignTracks?: Property$AlignTracks,
  8. animationComposition?: Property$AnimationComposition,
  9. animationDelay?: Property$AnimationDelay<TTime>,
  10. animationDirection?: Property$AnimationDirection,
  11. animationDuration?: Property$AnimationDuration<TTime>,
  12. animationFillMode?: Property$AnimationFillMode,
  13. animationIterationCount?: Property$AnimationIterationCount,
  14. animationName?: Property$AnimationName,
  15. animationPlayState?: Property$AnimationPlayState,
  16. animationTimeline?: Property$AnimationTimeline,
  17. animationTimingFunction?: Property$AnimationTimingFunction,
  18. appearance?: Property$Appearance,
  19. aspectRatio?: Property$AspectRatio,
  20. backdropFilter?: Property$BackdropFilter,
  21. backfaceVisibility?: Property$BackfaceVisibility,
  22. backgroundAttachment?: Property$BackgroundAttachment,
  23. backgroundBlendMode?: Property$BackgroundBlendMode,
  24. backgroundClip?: Property$BackgroundClip,
  25. backgroundColor?: Property$BackgroundColor,
  26. backgroundImage?: Property$BackgroundImage,
  27. backgroundOrigin?: Property$BackgroundOrigin,
  28. backgroundPositionX?: Property$BackgroundPositionX<TLength>,
  29. backgroundPositionY?: Property$BackgroundPositionY<TLength>,
  30. backgroundRepeat?: Property$BackgroundRepeat,
  31. backgroundSize?: Property$BackgroundSize<TLength>,
  32. blockOverflow?: Property$BlockOverflow,
  33. blockSize?: Property$BlockSize<TLength>,
  34. borderBlockColor?: Property$BorderBlockColor,
  35. borderBlockEndColor?: Property$BorderBlockEndColor,
  36. borderBlockEndStyle?: Property$BorderBlockEndStyle,
  37. borderBlockEndWidth?: Property$BorderBlockEndWidth<TLength>,
  38. borderBlockStartColor?: Property$BorderBlockStartColor,
  39. borderBlockStartStyle?: Property$BorderBlockStartStyle,
  40. borderBlockStartWidth?: Property$BorderBlockStartWidth<TLength>,
  41. borderBlockStyle?: Property$BorderBlockStyle,
  42. borderBlockWidth?: Property$BorderBlockWidth<TLength>,
  43. borderBottomColor?: Property$BorderBottomColor,
  44. borderBottomLeftRadius?: Property$BorderBottomLeftRadius<TLength>,
  45. borderBottomRightRadius?: Property$BorderBottomRightRadius<TLength>,
  46. borderBottomStyle?: Property$BorderBottomStyle,
  47. borderBottomWidth?: Property$BorderBottomWidth<TLength>,
  48. borderCollapse?: Property$BorderCollapse,
  49. borderEndEndRadius?: Property$BorderEndEndRadius<TLength>,
  50. borderEndStartRadius?: Property$BorderEndStartRadius<TLength>,
  51. borderImageOutset?: Property$BorderImageOutset<TLength>,
  52. borderImageRepeat?: Property$BorderImageRepeat,
  53. borderImageSlice?: Property$BorderImageSlice,
  54. borderImageSource?: Property$BorderImageSource,
  55. borderImageWidth?: Property$BorderImageWidth<TLength>,
  56. borderInlineColor?: Property$BorderInlineColor,
  57. borderInlineEndColor?: Property$BorderInlineEndColor,
  58. borderInlineEndStyle?: Property$BorderInlineEndStyle,
  59. borderInlineEndWidth?: Property$BorderInlineEndWidth<TLength>,
  60. borderInlineStartColor?: Property$BorderInlineStartColor,
  61. borderInlineStartStyle?: Property$BorderInlineStartStyle,
  62. borderInlineStartWidth?: Property$BorderInlineStartWidth<TLength>,
  63. borderInlineStyle?: Property$BorderInlineStyle,
  64. borderInlineWidth?: Property$BorderInlineWidth<TLength>,
  65. borderLeftColor?: Property$BorderLeftColor,
  66. borderLeftStyle?: Property$BorderLeftStyle,
  67. borderLeftWidth?: Property$BorderLeftWidth<TLength>,
  68. borderRightColor?: Property$BorderRightColor,
  69. borderRightStyle?: Property$BorderRightStyle,
  70. borderRightWidth?: Property$BorderRightWidth<TLength>,
  71. borderSpacing?: Property$BorderSpacing<TLength>,
  72. borderStartEndRadius?: Property$BorderStartEndRadius<TLength>,
  73. borderStartStartRadius?: Property$BorderStartStartRadius<TLength>,
  74. borderTopColor?: Property$BorderTopColor,
  75. borderTopLeftRadius?: Property$BorderTopLeftRadius<TLength>,
  76. borderTopRightRadius?: Property$BorderTopRightRadius<TLength>,
  77. borderTopStyle?: Property$BorderTopStyle,
  78. borderTopWidth?: Property$BorderTopWidth<TLength>,
  79. bottom?: Property$Bottom<TLength>,
  80. boxDecorationBreak?: Property$BoxDecorationBreak,
  81. boxShadow?: Property$BoxShadow,
  82. boxSizing?: Property$BoxSizing,
  83. breakAfter?: Property$BreakAfter,
  84. breakBefore?: Property$BreakBefore,
  85. breakInside?: Property$BreakInside,
  86. captionSide?: Property$CaptionSide,
  87. caretColor?: Property$CaretColor,
  88. caretShape?: Property$CaretShape,
  89. clear?: Property$Clear,
  90. clipPath?: Property$ClipPath,
  91. color?: Property$Color,
  92. colorAdjust?: Property$PrintColorAdjust,
  93. colorScheme?: Property$ColorScheme,
  94. columnCount?: Property$ColumnCount,
  95. columnFill?: Property$ColumnFill,
  96. columnGap?: Property$ColumnGap<TLength>,
  97. columnRuleColor?: Property$ColumnRuleColor,
  98. columnRuleStyle?: Property$ColumnRuleStyle,
  99. columnRuleWidth?: Property$ColumnRuleWidth<TLength>,
  100. columnSpan?: Property$ColumnSpan,
  101. columnWidth?: Property$ColumnWidth<TLength>,
  102. contain?: Property$Contain,
  103. containIntrinsicBlockSize?: Property$ContainIntrinsicBlockSize<TLength>,
  104. containIntrinsicHeight?: Property$ContainIntrinsicHeight<TLength>,
  105. containIntrinsicInlineSize?: Property$ContainIntrinsicInlineSize<TLength>,
  106. containIntrinsicWidth?: Property$ContainIntrinsicWidth<TLength>,
  107. containerName?: Property$ContainerName,
  108. containerType?: Property$ContainerType,
  109. content?: Property$Content,
  110. contentVisibility?: Property$ContentVisibility,
  111. counterIncrement?: Property$CounterIncrement,
  112. counterReset?: Property$CounterReset,
  113. counterSet?: Property$CounterSet,
  114. cursor?: Property$Cursor,
  115. direction?: Property$Direction,
  116. display?: Property$Display,
  117. emptyCells?: Property$EmptyCells,
  118. filter?: Property$Filter,
  119. flexBasis?: Property$FlexBasis<TLength>,
  120. flexDirection?: Property$FlexDirection,
  121. flexGrow?: Property$FlexGrow,
  122. flexShrink?: Property$FlexShrink,
  123. flexWrap?: Property$FlexWrap,
  124. float?: Property$Float,
  125. fontFamily?: Property$FontFamily,
  126. fontFeatureSettings?: Property$FontFeatureSettings,
  127. fontKerning?: Property$FontKerning,
  128. fontLanguageOverride?: Property$FontLanguageOverride,
  129. fontOpticalSizing?: Property$FontOpticalSizing,
  130. fontPalette?: Property$FontPalette,
  131. fontSize?: Property$FontSize<TLength>,
  132. fontSizeAdjust?: Property$FontSizeAdjust,
  133. fontSmooth?: Property$FontSmooth<TLength>,
  134. fontStretch?: Property$FontStretch,
  135. fontStyle?: Property$FontStyle,
  136. fontSynthesis?: Property$FontSynthesis,
  137. fontVariant?: Property$FontVariant,
  138. fontVariantAlternates?: Property$FontVariantAlternates,
  139. fontVariantCaps?: Property$FontVariantCaps,
  140. fontVariantEastAsian?: Property$FontVariantEastAsian,
  141. fontVariantEmoji?: Property$FontVariantEmoji,
  142. fontVariantLigatures?: Property$FontVariantLigatures,
  143. fontVariantNumeric?: Property$FontVariantNumeric,
  144. fontVariantPosition?: Property$FontVariantPosition,
  145. fontVariationSettings?: Property$FontVariationSettings,
  146. fontWeight?: Property$FontWeight,
  147. forcedColorAdjust?: Property$ForcedColorAdjust,
  148. gridAutoColumns?: Property$GridAutoColumns<TLength>,
  149. gridAutoFlow?: Property$GridAutoFlow,
  150. gridAutoRows?: Property$GridAutoRows<TLength>,
  151. gridColumnEnd?: Property$GridColumnEnd,
  152. gridColumnStart?: Property$GridColumnStart,
  153. gridRowEnd?: Property$GridRowEnd,
  154. gridRowStart?: Property$GridRowStart,
  155. gridTemplateAreas?: Property$GridTemplateAreas,
  156. gridTemplateColumns?: Property$GridTemplateColumns<TLength>,
  157. gridTemplateRows?: Property$GridTemplateRows<TLength>,
  158. hangingPunctuation?: Property$HangingPunctuation,
  159. height?: Property$Height<TLength>,
  160. hyphenateCharacter?: Property$HyphenateCharacter,
  161. hyphenateLimitChars?: Property$HyphenateLimitChars,
  162. hyphens?: Property$Hyphens,
  163. imageOrientation?: Property$ImageOrientation,
  164. imageRendering?: Property$ImageRendering,
  165. imageResolution?: Property$ImageResolution,
  166. initialLetter?: Property$InitialLetter,
  167. inlineSize?: Property$InlineSize<TLength>,
  168. inputSecurity?: Property$InputSecurity,
  169. insetBlockEnd?: Property$InsetBlockEnd<TLength>,
  170. insetBlockStart?: Property$InsetBlockStart<TLength>,
  171. insetInlineEnd?: Property$InsetInlineEnd<TLength>,
  172. insetInlineStart?: Property$InsetInlineStart<TLength>,
  173. isolation?: Property$Isolation,
  174. justifyContent?: Property$JustifyContent,
  175. justifyItems?: Property$JustifyItems,
  176. justifySelf?: Property$JustifySelf,
  177. justifyTracks?: Property$JustifyTracks,
  178. left?: Property$Left<TLength>,
  179. letterSpacing?: Property$LetterSpacing<TLength>,
  180. lineBreak?: Property$LineBreak,
  181. lineHeight?: Property$LineHeight<TLength>,
  182. lineHeightStep?: Property$LineHeightStep<TLength>,
  183. listStyleImage?: Property$ListStyleImage,
  184. listStylePosition?: Property$ListStylePosition,
  185. listStyleType?: Property$ListStyleType,
  186. marginBlockEnd?: Property$MarginBlockEnd<TLength>,
  187. marginBlockStart?: Property$MarginBlockStart<TLength>,
  188. marginBottom?: Property$MarginBottom<TLength>,
  189. marginInlineEnd?: Property$MarginInlineEnd<TLength>,
  190. marginInlineStart?: Property$MarginInlineStart<TLength>,
  191. marginLeft?: Property$MarginLeft<TLength>,
  192. marginRight?: Property$MarginRight<TLength>,
  193. marginTop?: Property$MarginTop<TLength>,
  194. marginTrim?: Property$MarginTrim,
  195. maskBorderMode?: Property$MaskBorderMode,
  196. maskBorderOutset?: Property$MaskBorderOutset<TLength>,
  197. maskBorderRepeat?: Property$MaskBorderRepeat,
  198. maskBorderSlice?: Property$MaskBorderSlice,
  199. maskBorderSource?: Property$MaskBorderSource,
  200. maskBorderWidth?: Property$MaskBorderWidth<TLength>,
  201. maskClip?: Property$MaskClip,
  202. maskComposite?: Property$MaskComposite,
  203. maskImage?: Property$MaskImage,
  204. maskMode?: Property$MaskMode,
  205. maskOrigin?: Property$MaskOrigin,
  206. maskPosition?: Property$MaskPosition<TLength>,
  207. maskRepeat?: Property$MaskRepeat,
  208. maskSize?: Property$MaskSize<TLength>,
  209. maskType?: Property$MaskType,
  210. mathDepth?: Property$MathDepth,
  211. mathShift?: Property$MathShift,
  212. mathStyle?: Property$MathStyle,
  213. maxBlockSize?: Property$MaxBlockSize<TLength>,
  214. maxHeight?: Property$MaxHeight<TLength>,
  215. maxInlineSize?: Property$MaxInlineSize<TLength>,
  216. maxLines?: Property$MaxLines,
  217. maxWidth?: Property$MaxWidth<TLength>,
  218. minBlockSize?: Property$MinBlockSize<TLength>,
  219. minHeight?: Property$MinHeight<TLength>,
  220. minInlineSize?: Property$MinInlineSize<TLength>,
  221. minWidth?: Property$MinWidth<TLength>,
  222. mixBlendMode?: Property$MixBlendMode,
  223. motionDistance?: Property$OffsetDistance<TLength>,
  224. motionPath?: Property$OffsetPath,
  225. motionRotation?: Property$OffsetRotate,
  226. objectFit?: Property$ObjectFit,
  227. objectPosition?: Property$ObjectPosition<TLength>,
  228. offsetAnchor?: Property$OffsetAnchor<TLength>,
  229. offsetDistance?: Property$OffsetDistance<TLength>,
  230. offsetPath?: Property$OffsetPath,
  231. offsetPosition?: Property$OffsetPosition<TLength>,
  232. offsetRotate?: Property$OffsetRotate,
  233. offsetRotation?: Property$OffsetRotate,
  234. opacity?: Property$Opacity,
  235. order?: Property$Order,
  236. orphans?: Property$Orphans,
  237. outlineColor?: Property$OutlineColor,
  238. outlineOffset?: Property$OutlineOffset<TLength>,
  239. outlineStyle?: Property$OutlineStyle,
  240. outlineWidth?: Property$OutlineWidth<TLength>,
  241. overflowAnchor?: Property$OverflowAnchor,
  242. overflowBlock?: Property$OverflowBlock,
  243. overflowClipBox?: Property$OverflowClipBox,
  244. overflowClipMargin?: Property$OverflowClipMargin<TLength>,
  245. overflowInline?: Property$OverflowInline,
  246. overflowWrap?: Property$OverflowWrap,
  247. overflowX?: Property$OverflowX,
  248. overflowY?: Property$OverflowY,
  249. overscrollBehaviorBlock?: Property$OverscrollBehaviorBlock,
  250. overscrollBehaviorInline?: Property$OverscrollBehaviorInline,
  251. overscrollBehaviorX?: Property$OverscrollBehaviorX,
  252. overscrollBehaviorY?: Property$OverscrollBehaviorY,
  253. paddingBlockEnd?: Property$PaddingBlockEnd<TLength>,
  254. paddingBlockStart?: Property$PaddingBlockStart<TLength>,
  255. paddingBottom?: Property$PaddingBottom<TLength>,
  256. paddingInlineEnd?: Property$PaddingInlineEnd<TLength>,
  257. paddingInlineStart?: Property$PaddingInlineStart<TLength>,
  258. paddingLeft?: Property$PaddingLeft<TLength>,
  259. paddingRight?: Property$PaddingRight<TLength>,
  260. paddingTop?: Property$PaddingTop<TLength>,
  261. page?: Property$Page,
  262. pageBreakAfter?: Property$PageBreakAfter,
  263. pageBreakBefore?: Property$PageBreakBefore,
  264. pageBreakInside?: Property$PageBreakInside,
  265. paintOrder?: Property$PaintOrder,
  266. perspective?: Property$Perspective<TLength>,
  267. perspectiveOrigin?: Property$PerspectiveOrigin<TLength>,
  268. pointerEvents?: Property$PointerEvents,
  269. position?: Property$Position,
  270. printColorAdjust?: Property$PrintColorAdjust,
  271. quotes?: Property$Quotes,
  272. resize?: Property$Resize,
  273. right?: Property$Right<TLength>,
  274. rotate?: Property$Rotate,
  275. rowGap?: Property$RowGap<TLength>,
  276. rubyAlign?: Property$RubyAlign,
  277. rubyMerge?: Property$RubyMerge,
  278. rubyPosition?: Property$RubyPosition,
  279. scale?: Property$Scale,
  280. scrollBehavior?: Property$ScrollBehavior,
  281. scrollMarginBlockEnd?: Property$ScrollMarginBlockEnd<TLength>,
  282. scrollMarginBlockStart?: Property$ScrollMarginBlockStart<TLength>,
  283. scrollMarginBottom?: Property$ScrollMarginBottom<TLength>,
  284. scrollMarginInlineEnd?: Property$ScrollMarginInlineEnd<TLength>,
  285. scrollMarginInlineStart?: Property$ScrollMarginInlineStart<TLength>,
  286. scrollMarginLeft?: Property$ScrollMarginLeft<TLength>,
  287. scrollMarginRight?: Property$ScrollMarginRight<TLength>,
  288. scrollMarginTop?: Property$ScrollMarginTop<TLength>,
  289. scrollPaddingBlockEnd?: Property$ScrollPaddingBlockEnd<TLength>,
  290. scrollPaddingBlockStart?: Property$ScrollPaddingBlockStart<TLength>,
  291. scrollPaddingBottom?: Property$ScrollPaddingBottom<TLength>,
  292. scrollPaddingInlineEnd?: Property$ScrollPaddingInlineEnd<TLength>,
  293. scrollPaddingInlineStart?: Property$ScrollPaddingInlineStart<TLength>,
  294. scrollPaddingLeft?: Property$ScrollPaddingLeft<TLength>,
  295. scrollPaddingRight?: Property$ScrollPaddingRight<TLength>,
  296. scrollPaddingTop?: Property$ScrollPaddingTop<TLength>,
  297. scrollSnapAlign?: Property$ScrollSnapAlign,
  298. scrollSnapMarginBottom?: Property$ScrollMarginBottom<TLength>,
  299. scrollSnapMarginLeft?: Property$ScrollMarginLeft<TLength>,
  300. scrollSnapMarginRight?: Property$ScrollMarginRight<TLength>,
  301. scrollSnapMarginTop?: Property$ScrollMarginTop<TLength>,
  302. scrollSnapStop?: Property$ScrollSnapStop,
  303. scrollSnapType?: Property$ScrollSnapType,
  304. scrollTimelineAxis?: Property$ScrollTimelineAxis,
  305. scrollTimelineName?: Property$ScrollTimelineName,
  306. scrollbarColor?: Property$ScrollbarColor,
  307. scrollbarGutter?: Property$ScrollbarGutter,
  308. scrollbarWidth?: Property$ScrollbarWidth,
  309. shapeImageThreshold?: Property$ShapeImageThreshold,
  310. shapeMargin?: Property$ShapeMargin<TLength>,
  311. shapeOutside?: Property$ShapeOutside,
  312. tabSize?: Property$TabSize<TLength>,
  313. tableLayout?: Property$TableLayout,
  314. textAlign?: Property$TextAlign,
  315. textAlignLast?: Property$TextAlignLast,
  316. textCombineUpright?: Property$TextCombineUpright,
  317. textDecorationColor?: Property$TextDecorationColor,
  318. textDecorationLine?: Property$TextDecorationLine,
  319. textDecorationSkip?: Property$TextDecorationSkip,
  320. textDecorationSkipInk?: Property$TextDecorationSkipInk,
  321. textDecorationStyle?: Property$TextDecorationStyle,
  322. textDecorationThickness?: Property$TextDecorationThickness<TLength>,
  323. textEmphasisColor?: Property$TextEmphasisColor,
  324. textEmphasisPosition?: Property$TextEmphasisPosition,
  325. textEmphasisStyle?: Property$TextEmphasisStyle,
  326. textIndent?: Property$TextIndent<TLength>,
  327. textJustify?: Property$TextJustify,
  328. textOrientation?: Property$TextOrientation,
  329. textOverflow?: Property$TextOverflow,
  330. textRendering?: Property$TextRendering,
  331. textShadow?: Property$TextShadow,
  332. textSizeAdjust?: Property$TextSizeAdjust,
  333. textTransform?: Property$TextTransform,
  334. textUnderlineOffset?: Property$TextUnderlineOffset<TLength>,
  335. textUnderlinePosition?: Property$TextUnderlinePosition,
  336. top?: Property$Top<TLength>,
  337. touchAction?: Property$TouchAction,
  338. transform?: Property$Transform,
  339. transformBox?: Property$TransformBox,
  340. transformOrigin?: Property$TransformOrigin<TLength>,
  341. transformStyle?: Property$TransformStyle,
  342. transitionDelay?: Property$TransitionDelay<TTime>,
  343. transitionDuration?: Property$TransitionDuration<TTime>,
  344. transitionProperty?: Property$TransitionProperty,
  345. transitionTimingFunction?: Property$TransitionTimingFunction,
  346. translate?: Property$Translate<TLength>,
  347. unicodeBidi?: Property$UnicodeBidi,
  348. userSelect?: Property$UserSelect,
  349. verticalAlign?: Property$VerticalAlign<TLength>,
  350. viewTransitionName?: Property$ViewTransitionName,
  351. visibility?: Property$Visibility,
  352. whiteSpace?: Property$WhiteSpace,
  353. widows?: Property$Widows,
  354. width?: Property$Width<TLength>,
  355. willChange?: Property$WillChange,
  356. wordBreak?: Property$WordBreak,
  357. wordSpacing?: Property$WordSpacing<TLength>,
  358. wordWrap?: Property$WordWrap,
  359. writingMode?: Property$WritingMode,
  360. zIndex?: Property$ZIndex,
  361. zoom?: Property$Zoom,
  362. |};
  363. export type StandardShorthandProperties<TLength = string | 0, TTime = string> = {|
  364. all?: Property$All,
  365. animation?: Property$Animation<TTime>,
  366. background?: Property$Background<TLength>,
  367. backgroundPosition?: Property$BackgroundPosition<TLength>,
  368. border?: Property$Border<TLength>,
  369. borderBlock?: Property$BorderBlock<TLength>,
  370. borderBlockEnd?: Property$BorderBlockEnd<TLength>,
  371. borderBlockStart?: Property$BorderBlockStart<TLength>,
  372. borderBottom?: Property$BorderBottom<TLength>,
  373. borderColor?: Property$BorderColor,
  374. borderImage?: Property$BorderImage,
  375. borderInline?: Property$BorderInline<TLength>,
  376. borderInlineEnd?: Property$BorderInlineEnd<TLength>,
  377. borderInlineStart?: Property$BorderInlineStart<TLength>,
  378. borderLeft?: Property$BorderLeft<TLength>,
  379. borderRadius?: Property$BorderRadius<TLength>,
  380. borderRight?: Property$BorderRight<TLength>,
  381. borderStyle?: Property$BorderStyle,
  382. borderTop?: Property$BorderTop<TLength>,
  383. borderWidth?: Property$BorderWidth<TLength>,
  384. caret?: Property$Caret,
  385. columnRule?: Property$ColumnRule<TLength>,
  386. columns?: Property$Columns<TLength>,
  387. containIntrinsicSize?: Property$ContainIntrinsicSize<TLength>,
  388. container?: Property$Container,
  389. flex?: Property$Flex<TLength>,
  390. flexFlow?: Property$FlexFlow,
  391. font?: Property$Font,
  392. gap?: Property$Gap<TLength>,
  393. grid?: Property$Grid,
  394. gridArea?: Property$GridArea,
  395. gridColumn?: Property$GridColumn,
  396. gridRow?: Property$GridRow,
  397. gridTemplate?: Property$GridTemplate,
  398. inset?: Property$Inset<TLength>,
  399. insetBlock?: Property$InsetBlock<TLength>,
  400. insetInline?: Property$InsetInline<TLength>,
  401. lineClamp?: Property$LineClamp,
  402. listStyle?: Property$ListStyle,
  403. margin?: Property$Margin<TLength>,
  404. marginBlock?: Property$MarginBlock<TLength>,
  405. marginInline?: Property$MarginInline<TLength>,
  406. mask?: Property$Mask<TLength>,
  407. maskBorder?: Property$MaskBorder,
  408. motion?: Property$Offset<TLength>,
  409. offset?: Property$Offset<TLength>,
  410. outline?: Property$Outline<TLength>,
  411. overflow?: Property$Overflow,
  412. overscrollBehavior?: Property$OverscrollBehavior,
  413. padding?: Property$Padding<TLength>,
  414. paddingBlock?: Property$PaddingBlock<TLength>,
  415. paddingInline?: Property$PaddingInline<TLength>,
  416. placeContent?: Property$PlaceContent,
  417. placeItems?: Property$PlaceItems,
  418. placeSelf?: Property$PlaceSelf,
  419. scrollMargin?: Property$ScrollMargin<TLength>,
  420. scrollMarginBlock?: Property$ScrollMarginBlock<TLength>,
  421. scrollMarginInline?: Property$ScrollMarginInline<TLength>,
  422. scrollPadding?: Property$ScrollPadding<TLength>,
  423. scrollPaddingBlock?: Property$ScrollPaddingBlock<TLength>,
  424. scrollPaddingInline?: Property$ScrollPaddingInline<TLength>,
  425. scrollSnapMargin?: Property$ScrollMargin<TLength>,
  426. scrollTimeline?: Property$ScrollTimeline,
  427. textDecoration?: Property$TextDecoration<TLength>,
  428. textEmphasis?: Property$TextEmphasis,
  429. transition?: Property$Transition<TTime>,
  430. |};
  431. export type StandardProperties<TLength = string | 0, TTime = string> = {| ...StandardLonghandProperties<TLength, TTime>, ...StandardShorthandProperties<TLength, TTime> |};
  432. export type VendorLonghandProperties<TLength = string | 0, TTime = string> = {|
  433. MozAnimationDelay?: Property$AnimationDelay<TTime>,
  434. MozAnimationDirection?: Property$AnimationDirection,
  435. MozAnimationDuration?: Property$AnimationDuration<TTime>,
  436. MozAnimationFillMode?: Property$AnimationFillMode,
  437. MozAnimationIterationCount?: Property$AnimationIterationCount,
  438. MozAnimationName?: Property$AnimationName,
  439. MozAnimationPlayState?: Property$AnimationPlayState,
  440. MozAnimationTimingFunction?: Property$AnimationTimingFunction,
  441. MozAppearance?: Property$MozAppearance,
  442. MozBackfaceVisibility?: Property$BackfaceVisibility,
  443. MozBinding?: Property$MozBinding,
  444. MozBorderBottomColors?: Property$MozBorderBottomColors,
  445. MozBorderEndColor?: Property$BorderInlineEndColor,
  446. MozBorderEndStyle?: Property$BorderInlineEndStyle,
  447. MozBorderEndWidth?: Property$BorderInlineEndWidth<TLength>,
  448. MozBorderLeftColors?: Property$MozBorderLeftColors,
  449. MozBorderRightColors?: Property$MozBorderRightColors,
  450. MozBorderStartColor?: Property$BorderInlineStartColor,
  451. MozBorderStartStyle?: Property$BorderInlineStartStyle,
  452. MozBorderTopColors?: Property$MozBorderTopColors,
  453. MozBoxSizing?: Property$BoxSizing,
  454. MozColumnCount?: Property$ColumnCount,
  455. MozColumnFill?: Property$ColumnFill,
  456. MozColumnRuleColor?: Property$ColumnRuleColor,
  457. MozColumnRuleStyle?: Property$ColumnRuleStyle,
  458. MozColumnRuleWidth?: Property$ColumnRuleWidth<TLength>,
  459. MozColumnWidth?: Property$ColumnWidth<TLength>,
  460. MozContextProperties?: Property$MozContextProperties,
  461. MozFontFeatureSettings?: Property$FontFeatureSettings,
  462. MozFontLanguageOverride?: Property$FontLanguageOverride,
  463. MozHyphens?: Property$Hyphens,
  464. MozImageRegion?: Property$MozImageRegion,
  465. MozMarginEnd?: Property$MarginInlineEnd<TLength>,
  466. MozMarginStart?: Property$MarginInlineStart<TLength>,
  467. MozOrient?: Property$MozOrient,
  468. MozOsxFontSmoothing?: Property$FontSmooth<TLength>,
  469. MozPaddingEnd?: Property$PaddingInlineEnd<TLength>,
  470. MozPaddingStart?: Property$PaddingInlineStart<TLength>,
  471. MozPerspective?: Property$Perspective<TLength>,
  472. MozPerspectiveOrigin?: Property$PerspectiveOrigin<TLength>,
  473. MozStackSizing?: Property$MozStackSizing,
  474. MozTabSize?: Property$TabSize<TLength>,
  475. MozTextBlink?: Property$MozTextBlink,
  476. MozTextSizeAdjust?: Property$TextSizeAdjust,
  477. MozTransformOrigin?: Property$TransformOrigin<TLength>,
  478. MozTransformStyle?: Property$TransformStyle,
  479. MozTransitionDelay?: Property$TransitionDelay<TTime>,
  480. MozTransitionDuration?: Property$TransitionDuration<TTime>,
  481. MozTransitionProperty?: Property$TransitionProperty,
  482. MozTransitionTimingFunction?: Property$TransitionTimingFunction,
  483. MozUserFocus?: Property$MozUserFocus,
  484. MozUserModify?: Property$MozUserModify,
  485. MozUserSelect?: Property$UserSelect,
  486. MozWindowDragging?: Property$MozWindowDragging,
  487. MozWindowShadow?: Property$MozWindowShadow,
  488. msAccelerator?: Property$MsAccelerator,
  489. msBlockProgression?: Property$MsBlockProgression,
  490. msContentZoomChaining?: Property$MsContentZoomChaining,
  491. msContentZoomLimitMax?: Property$MsContentZoomLimitMax,
  492. msContentZoomLimitMin?: Property$MsContentZoomLimitMin,
  493. msContentZoomSnapPoints?: Property$MsContentZoomSnapPoints,
  494. msContentZoomSnapType?: Property$MsContentZoomSnapType,
  495. msContentZooming?: Property$MsContentZooming,
  496. msFilter?: Property$MsFilter,
  497. msFlexDirection?: Property$FlexDirection,
  498. msFlexPositive?: Property$FlexGrow,
  499. msFlowFrom?: Property$MsFlowFrom,
  500. msFlowInto?: Property$MsFlowInto,
  501. msGridColumns?: Property$MsGridColumns<TLength>,
  502. msGridRows?: Property$MsGridRows<TLength>,
  503. msHighContrastAdjust?: Property$MsHighContrastAdjust,
  504. msHyphenateLimitChars?: Property$MsHyphenateLimitChars,
  505. msHyphenateLimitLines?: Property$MsHyphenateLimitLines,
  506. msHyphenateLimitZone?: Property$MsHyphenateLimitZone<TLength>,
  507. msHyphens?: Property$Hyphens,
  508. msImeAlign?: Property$MsImeAlign,
  509. msLineBreak?: Property$LineBreak,
  510. msOrder?: Property$Order,
  511. msOverflowStyle?: Property$MsOverflowStyle,
  512. msOverflowX?: Property$OverflowX,
  513. msOverflowY?: Property$OverflowY,
  514. msScrollChaining?: Property$MsScrollChaining,
  515. msScrollLimitXMax?: Property$MsScrollLimitXMax<TLength>,
  516. msScrollLimitXMin?: Property$MsScrollLimitXMin<TLength>,
  517. msScrollLimitYMax?: Property$MsScrollLimitYMax<TLength>,
  518. msScrollLimitYMin?: Property$MsScrollLimitYMin<TLength>,
  519. msScrollRails?: Property$MsScrollRails,
  520. msScrollSnapPointsX?: Property$MsScrollSnapPointsX,
  521. msScrollSnapPointsY?: Property$MsScrollSnapPointsY,
  522. msScrollSnapType?: Property$MsScrollSnapType,
  523. msScrollTranslation?: Property$MsScrollTranslation,
  524. msScrollbar3dlightColor?: Property$MsScrollbar3dlightColor,
  525. msScrollbarArrowColor?: Property$MsScrollbarArrowColor,
  526. msScrollbarBaseColor?: Property$MsScrollbarBaseColor,
  527. msScrollbarDarkshadowColor?: Property$MsScrollbarDarkshadowColor,
  528. msScrollbarFaceColor?: Property$MsScrollbarFaceColor,
  529. msScrollbarHighlightColor?: Property$MsScrollbarHighlightColor,
  530. msScrollbarShadowColor?: Property$MsScrollbarShadowColor,
  531. msScrollbarTrackColor?: Property$MsScrollbarTrackColor,
  532. msTextAutospace?: Property$MsTextAutospace,
  533. msTextCombineHorizontal?: Property$TextCombineUpright,
  534. msTextOverflow?: Property$TextOverflow,
  535. msTouchAction?: Property$TouchAction,
  536. msTouchSelect?: Property$MsTouchSelect,
  537. msTransform?: Property$Transform,
  538. msTransformOrigin?: Property$TransformOrigin<TLength>,
  539. msTransitionDelay?: Property$TransitionDelay<TTime>,
  540. msTransitionDuration?: Property$TransitionDuration<TTime>,
  541. msTransitionProperty?: Property$TransitionProperty,
  542. msTransitionTimingFunction?: Property$TransitionTimingFunction,
  543. msUserSelect?: Property$MsUserSelect,
  544. msWordBreak?: Property$WordBreak,
  545. msWrapFlow?: Property$MsWrapFlow,
  546. msWrapMargin?: Property$MsWrapMargin<TLength>,
  547. msWrapThrough?: Property$MsWrapThrough,
  548. msWritingMode?: Property$WritingMode,
  549. WebkitAlignContent?: Property$AlignContent,
  550. WebkitAlignItems?: Property$AlignItems,
  551. WebkitAlignSelf?: Property$AlignSelf,
  552. WebkitAnimationDelay?: Property$AnimationDelay<TTime>,
  553. WebkitAnimationDirection?: Property$AnimationDirection,
  554. WebkitAnimationDuration?: Property$AnimationDuration<TTime>,
  555. WebkitAnimationFillMode?: Property$AnimationFillMode,
  556. WebkitAnimationIterationCount?: Property$AnimationIterationCount,
  557. WebkitAnimationName?: Property$AnimationName,
  558. WebkitAnimationPlayState?: Property$AnimationPlayState,
  559. WebkitAnimationTimingFunction?: Property$AnimationTimingFunction,
  560. WebkitAppearance?: Property$WebkitAppearance,
  561. WebkitBackdropFilter?: Property$BackdropFilter,
  562. WebkitBackfaceVisibility?: Property$BackfaceVisibility,
  563. WebkitBackgroundClip?: Property$BackgroundClip,
  564. WebkitBackgroundOrigin?: Property$BackgroundOrigin,
  565. WebkitBackgroundSize?: Property$BackgroundSize<TLength>,
  566. WebkitBorderBeforeColor?: Property$WebkitBorderBeforeColor,
  567. WebkitBorderBeforeStyle?: Property$WebkitBorderBeforeStyle,
  568. WebkitBorderBeforeWidth?: Property$WebkitBorderBeforeWidth<TLength>,
  569. WebkitBorderBottomLeftRadius?: Property$BorderBottomLeftRadius<TLength>,
  570. WebkitBorderBottomRightRadius?: Property$BorderBottomRightRadius<TLength>,
  571. WebkitBorderImageSlice?: Property$BorderImageSlice,
  572. WebkitBorderTopLeftRadius?: Property$BorderTopLeftRadius<TLength>,
  573. WebkitBorderTopRightRadius?: Property$BorderTopRightRadius<TLength>,
  574. WebkitBoxDecorationBreak?: Property$BoxDecorationBreak,
  575. WebkitBoxReflect?: Property$WebkitBoxReflect<TLength>,
  576. WebkitBoxShadow?: Property$BoxShadow,
  577. WebkitBoxSizing?: Property$BoxSizing,
  578. WebkitClipPath?: Property$ClipPath,
  579. WebkitColumnCount?: Property$ColumnCount,
  580. WebkitColumnFill?: Property$ColumnFill,
  581. WebkitColumnRuleColor?: Property$ColumnRuleColor,
  582. WebkitColumnRuleStyle?: Property$ColumnRuleStyle,
  583. WebkitColumnRuleWidth?: Property$ColumnRuleWidth<TLength>,
  584. WebkitColumnSpan?: Property$ColumnSpan,
  585. WebkitColumnWidth?: Property$ColumnWidth<TLength>,
  586. WebkitFilter?: Property$Filter,
  587. WebkitFlexBasis?: Property$FlexBasis<TLength>,
  588. WebkitFlexDirection?: Property$FlexDirection,
  589. WebkitFlexGrow?: Property$FlexGrow,
  590. WebkitFlexShrink?: Property$FlexShrink,
  591. WebkitFlexWrap?: Property$FlexWrap,
  592. WebkitFontFeatureSettings?: Property$FontFeatureSettings,
  593. WebkitFontKerning?: Property$FontKerning,
  594. WebkitFontSmoothing?: Property$FontSmooth<TLength>,
  595. WebkitFontVariantLigatures?: Property$FontVariantLigatures,
  596. WebkitHyphenateCharacter?: Property$HyphenateCharacter,
  597. WebkitHyphens?: Property$Hyphens,
  598. WebkitInitialLetter?: Property$InitialLetter,
  599. WebkitJustifyContent?: Property$JustifyContent,
  600. WebkitLineBreak?: Property$LineBreak,
  601. WebkitLineClamp?: Property$WebkitLineClamp,
  602. WebkitMarginEnd?: Property$MarginInlineEnd<TLength>,
  603. WebkitMarginStart?: Property$MarginInlineStart<TLength>,
  604. WebkitMaskAttachment?: Property$WebkitMaskAttachment,
  605. WebkitMaskBoxImageOutset?: Property$MaskBorderOutset<TLength>,
  606. WebkitMaskBoxImageRepeat?: Property$MaskBorderRepeat,
  607. WebkitMaskBoxImageSlice?: Property$MaskBorderSlice,
  608. WebkitMaskBoxImageSource?: Property$MaskBorderSource,
  609. WebkitMaskBoxImageWidth?: Property$MaskBorderWidth<TLength>,
  610. WebkitMaskClip?: Property$WebkitMaskClip,
  611. WebkitMaskComposite?: Property$WebkitMaskComposite,
  612. WebkitMaskImage?: Property$WebkitMaskImage,
  613. WebkitMaskOrigin?: Property$WebkitMaskOrigin,
  614. WebkitMaskPosition?: Property$WebkitMaskPosition<TLength>,
  615. WebkitMaskPositionX?: Property$WebkitMaskPositionX<TLength>,
  616. WebkitMaskPositionY?: Property$WebkitMaskPositionY<TLength>,
  617. WebkitMaskRepeat?: Property$WebkitMaskRepeat,
  618. WebkitMaskRepeatX?: Property$WebkitMaskRepeatX,
  619. WebkitMaskRepeatY?: Property$WebkitMaskRepeatY,
  620. WebkitMaskSize?: Property$WebkitMaskSize<TLength>,
  621. WebkitMaxInlineSize?: Property$MaxInlineSize<TLength>,
  622. WebkitOrder?: Property$Order,
  623. WebkitOverflowScrolling?: Property$WebkitOverflowScrolling,
  624. WebkitPaddingEnd?: Property$PaddingInlineEnd<TLength>,
  625. WebkitPaddingStart?: Property$PaddingInlineStart<TLength>,
  626. WebkitPerspective?: Property$Perspective<TLength>,
  627. WebkitPerspectiveOrigin?: Property$PerspectiveOrigin<TLength>,
  628. WebkitPrintColorAdjust?: Property$PrintColorAdjust,
  629. WebkitRubyPosition?: Property$RubyPosition,
  630. WebkitScrollSnapType?: Property$ScrollSnapType,
  631. WebkitShapeMargin?: Property$ShapeMargin<TLength>,
  632. WebkitTapHighlightColor?: Property$WebkitTapHighlightColor,
  633. WebkitTextCombine?: Property$TextCombineUpright,
  634. WebkitTextDecorationColor?: Property$TextDecorationColor,
  635. WebkitTextDecorationLine?: Property$TextDecorationLine,
  636. WebkitTextDecorationSkip?: Property$TextDecorationSkip,
  637. WebkitTextDecorationStyle?: Property$TextDecorationStyle,
  638. WebkitTextEmphasisColor?: Property$TextEmphasisColor,
  639. WebkitTextEmphasisPosition?: Property$TextEmphasisPosition,
  640. WebkitTextEmphasisStyle?: Property$TextEmphasisStyle,
  641. WebkitTextFillColor?: Property$WebkitTextFillColor,
  642. WebkitTextOrientation?: Property$TextOrientation,
  643. WebkitTextSizeAdjust?: Property$TextSizeAdjust,
  644. WebkitTextStrokeColor?: Property$WebkitTextStrokeColor,
  645. WebkitTextStrokeWidth?: Property$WebkitTextStrokeWidth<TLength>,
  646. WebkitTextUnderlinePosition?: Property$TextUnderlinePosition,
  647. WebkitTouchCallout?: Property$WebkitTouchCallout,
  648. WebkitTransform?: Property$Transform,
  649. WebkitTransformOrigin?: Property$TransformOrigin<TLength>,
  650. WebkitTransformStyle?: Property$TransformStyle,
  651. WebkitTransitionDelay?: Property$TransitionDelay<TTime>,
  652. WebkitTransitionDuration?: Property$TransitionDuration<TTime>,
  653. WebkitTransitionProperty?: Property$TransitionProperty,
  654. WebkitTransitionTimingFunction?: Property$TransitionTimingFunction,
  655. WebkitUserModify?: Property$WebkitUserModify,
  656. WebkitUserSelect?: Property$UserSelect,
  657. WebkitWritingMode?: Property$WritingMode,
  658. |};
  659. export type VendorShorthandProperties<TLength = string | 0, TTime = string> = {|
  660. MozAnimation?: Property$Animation<TTime>,
  661. MozBorderImage?: Property$BorderImage,
  662. MozColumnRule?: Property$ColumnRule<TLength>,
  663. MozColumns?: Property$Columns<TLength>,
  664. MozTransition?: Property$Transition<TTime>,
  665. msContentZoomLimit?: Property$MsContentZoomLimit,
  666. msContentZoomSnap?: Property$MsContentZoomSnap,
  667. msFlex?: Property$Flex<TLength>,
  668. msScrollLimit?: Property$MsScrollLimit,
  669. msScrollSnapX?: Property$MsScrollSnapX,
  670. msScrollSnapY?: Property$MsScrollSnapY,
  671. msTransition?: Property$Transition<TTime>,
  672. WebkitAnimation?: Property$Animation<TTime>,
  673. WebkitBorderBefore?: Property$WebkitBorderBefore<TLength>,
  674. WebkitBorderImage?: Property$BorderImage,
  675. WebkitBorderRadius?: Property$BorderRadius<TLength>,
  676. WebkitColumnRule?: Property$ColumnRule<TLength>,
  677. WebkitColumns?: Property$Columns<TLength>,
  678. WebkitFlex?: Property$Flex<TLength>,
  679. WebkitFlexFlow?: Property$FlexFlow,
  680. WebkitMask?: Property$WebkitMask<TLength>,
  681. WebkitMaskBoxImage?: Property$MaskBorder,
  682. WebkitTextEmphasis?: Property$TextEmphasis,
  683. WebkitTextStroke?: Property$WebkitTextStroke<TLength>,
  684. WebkitTransition?: Property$Transition<TTime>,
  685. |};
  686. export type VendorProperties<TLength = string | 0, TTime = string> = {| ...VendorLonghandProperties<TLength, TTime>, ...VendorShorthandProperties<TLength, TTime> |};
  687. export type ObsoleteProperties<TLength = string | 0, TTime = string> = {|
  688. azimuth?: Property$Azimuth,
  689. boxAlign?: Property$BoxAlign,
  690. boxDirection?: Property$BoxDirection,
  691. boxFlex?: Property$BoxFlex,
  692. boxFlexGroup?: Property$BoxFlexGroup,
  693. boxLines?: Property$BoxLines,
  694. boxOrdinalGroup?: Property$BoxOrdinalGroup,
  695. boxOrient?: Property$BoxOrient,
  696. boxPack?: Property$BoxPack,
  697. clip?: Property$Clip,
  698. gridColumnGap?: Property$GridColumnGap<TLength>,
  699. gridGap?: Property$GridGap<TLength>,
  700. gridRowGap?: Property$GridRowGap<TLength>,
  701. imeMode?: Property$ImeMode,
  702. offsetBlock?: Property$InsetBlock<TLength>,
  703. offsetBlockEnd?: Property$InsetBlockEnd<TLength>,
  704. offsetBlockStart?: Property$InsetBlockStart<TLength>,
  705. offsetInline?: Property$InsetInline<TLength>,
  706. offsetInlineEnd?: Property$InsetInlineEnd<TLength>,
  707. offsetInlineStart?: Property$InsetInlineStart<TLength>,
  708. scrollSnapCoordinate?: Property$ScrollSnapCoordinate<TLength>,
  709. scrollSnapDestination?: Property$ScrollSnapDestination<TLength>,
  710. scrollSnapPointsX?: Property$ScrollSnapPointsX,
  711. scrollSnapPointsY?: Property$ScrollSnapPointsY,
  712. scrollSnapTypeX?: Property$ScrollSnapTypeX,
  713. scrollSnapTypeY?: Property$ScrollSnapTypeY,
  714. KhtmlBoxAlign?: Property$BoxAlign,
  715. KhtmlBoxDirection?: Property$BoxDirection,
  716. KhtmlBoxFlex?: Property$BoxFlex,
  717. KhtmlBoxFlexGroup?: Property$BoxFlexGroup,
  718. KhtmlBoxLines?: Property$BoxLines,
  719. KhtmlBoxOrdinalGroup?: Property$BoxOrdinalGroup,
  720. KhtmlBoxOrient?: Property$BoxOrient,
  721. KhtmlBoxPack?: Property$BoxPack,
  722. KhtmlLineBreak?: Property$LineBreak,
  723. KhtmlOpacity?: Property$Opacity,
  724. KhtmlUserSelect?: Property$UserSelect,
  725. MozBackgroundClip?: Property$BackgroundClip,
  726. MozBackgroundInlinePolicy?: Property$BoxDecorationBreak,
  727. MozBackgroundOrigin?: Property$BackgroundOrigin,
  728. MozBackgroundSize?: Property$BackgroundSize<TLength>,
  729. MozBorderRadius?: Property$BorderRadius<TLength>,
  730. MozBorderRadiusBottomleft?: Property$BorderBottomLeftRadius<TLength>,
  731. MozBorderRadiusBottomright?: Property$BorderBottomRightRadius<TLength>,
  732. MozBorderRadiusTopleft?: Property$BorderTopLeftRadius<TLength>,
  733. MozBorderRadiusTopright?: Property$BorderTopRightRadius<TLength>,
  734. MozBoxAlign?: Property$BoxAlign,
  735. MozBoxDirection?: Property$BoxDirection,
  736. MozBoxFlex?: Property$BoxFlex,
  737. MozBoxOrdinalGroup?: Property$BoxOrdinalGroup,
  738. MozBoxOrient?: Property$BoxOrient,
  739. MozBoxPack?: Property$BoxPack,
  740. MozBoxShadow?: Property$BoxShadow,
  741. MozFloatEdge?: Property$MozFloatEdge,
  742. MozForceBrokenImageIcon?: Property$MozForceBrokenImageIcon,
  743. MozOpacity?: Property$Opacity,
  744. MozOutline?: Property$Outline<TLength>,
  745. MozOutlineColor?: Property$OutlineColor,
  746. MozOutlineRadius?: Property$MozOutlineRadius<TLength>,
  747. MozOutlineRadiusBottomleft?: Property$MozOutlineRadiusBottomleft<TLength>,
  748. MozOutlineRadiusBottomright?: Property$MozOutlineRadiusBottomright<TLength>,
  749. MozOutlineRadiusTopleft?: Property$MozOutlineRadiusTopleft<TLength>,
  750. MozOutlineRadiusTopright?: Property$MozOutlineRadiusTopright<TLength>,
  751. MozOutlineStyle?: Property$OutlineStyle,
  752. MozOutlineWidth?: Property$OutlineWidth<TLength>,
  753. MozTextAlignLast?: Property$TextAlignLast,
  754. MozTextDecorationColor?: Property$TextDecorationColor,
  755. MozTextDecorationLine?: Property$TextDecorationLine,
  756. MozTextDecorationStyle?: Property$TextDecorationStyle,
  757. MozUserInput?: Property$MozUserInput,
  758. msImeMode?: Property$ImeMode,
  759. OAnimation?: Property$Animation<TTime>,
  760. OAnimationDelay?: Property$AnimationDelay<TTime>,
  761. OAnimationDirection?: Property$AnimationDirection,
  762. OAnimationDuration?: Property$AnimationDuration<TTime>,
  763. OAnimationFillMode?: Property$AnimationFillMode,
  764. OAnimationIterationCount?: Property$AnimationIterationCount,
  765. OAnimationName?: Property$AnimationName,
  766. OAnimationPlayState?: Property$AnimationPlayState,
  767. OAnimationTimingFunction?: Property$AnimationTimingFunction,
  768. OBackgroundSize?: Property$BackgroundSize<TLength>,
  769. OBorderImage?: Property$BorderImage,
  770. OObjectFit?: Property$ObjectFit,
  771. OObjectPosition?: Property$ObjectPosition<TLength>,
  772. OTabSize?: Property$TabSize<TLength>,
  773. OTextOverflow?: Property$TextOverflow,
  774. OTransform?: Property$Transform,
  775. OTransformOrigin?: Property$TransformOrigin<TLength>,
  776. OTransition?: Property$Transition<TTime>,
  777. OTransitionDelay?: Property$TransitionDelay<TTime>,
  778. OTransitionDuration?: Property$TransitionDuration<TTime>,
  779. OTransitionProperty?: Property$TransitionProperty,
  780. OTransitionTimingFunction?: Property$TransitionTimingFunction,
  781. WebkitBoxAlign?: Property$BoxAlign,
  782. WebkitBoxDirection?: Property$BoxDirection,
  783. WebkitBoxFlex?: Property$BoxFlex,
  784. WebkitBoxFlexGroup?: Property$BoxFlexGroup,
  785. WebkitBoxLines?: Property$BoxLines,
  786. WebkitBoxOrdinalGroup?: Property$BoxOrdinalGroup,
  787. WebkitBoxOrient?: Property$BoxOrient,
  788. WebkitBoxPack?: Property$BoxPack,
  789. WebkitScrollSnapPointsX?: Property$ScrollSnapPointsX,
  790. WebkitScrollSnapPointsY?: Property$ScrollSnapPointsY,
  791. |};
  792. export type SvgProperties<TLength = string | 0, TTime = string> = {|
  793. alignmentBaseline?: Property$AlignmentBaseline,
  794. baselineShift?: Property$BaselineShift<TLength>,
  795. clip?: Property$Clip,
  796. clipPath?: Property$ClipPath,
  797. clipRule?: Property$ClipRule,
  798. color?: Property$Color,
  799. colorInterpolation?: Property$ColorInterpolation,
  800. colorRendering?: Property$ColorRendering,
  801. cursor?: Property$Cursor,
  802. direction?: Property$Direction,
  803. display?: Property$Display,
  804. dominantBaseline?: Property$DominantBaseline,
  805. fill?: Property$Fill,
  806. fillOpacity?: Property$FillOpacity,
  807. fillRule?: Property$FillRule,
  808. filter?: Property$Filter,
  809. floodColor?: Property$FloodColor,
  810. floodOpacity?: Property$FloodOpacity,
  811. font?: Property$Font,
  812. fontFamily?: Property$FontFamily,
  813. fontSize?: Property$FontSize<TLength>,
  814. fontSizeAdjust?: Property$FontSizeAdjust,
  815. fontStretch?: Property$FontStretch,
  816. fontStyle?: Property$FontStyle,
  817. fontVariant?: Property$FontVariant,
  818. fontWeight?: Property$FontWeight,
  819. glyphOrientationVertical?: Property$GlyphOrientationVertical,
  820. imageRendering?: Property$ImageRendering,
  821. letterSpacing?: Property$LetterSpacing<TLength>,
  822. lightingColor?: Property$LightingColor,
  823. lineHeight?: Property$LineHeight<TLength>,
  824. marker?: Property$Marker,
  825. markerEnd?: Property$MarkerEnd,
  826. markerMid?: Property$MarkerMid,
  827. markerStart?: Property$MarkerStart,
  828. mask?: Property$Mask<TLength>,
  829. opacity?: Property$Opacity,
  830. overflow?: Property$Overflow,
  831. paintOrder?: Property$PaintOrder,
  832. pointerEvents?: Property$PointerEvents,
  833. shapeRendering?: Property$ShapeRendering,
  834. stopColor?: Property$StopColor,
  835. stopOpacity?: Property$StopOpacity,
  836. stroke?: Property$Stroke,
  837. strokeDasharray?: Property$StrokeDasharray<TLength>,
  838. strokeDashoffset?: Property$StrokeDashoffset<TLength>,
  839. strokeLinecap?: Property$StrokeLinecap,
  840. strokeLinejoin?: Property$StrokeLinejoin,
  841. strokeMiterlimit?: Property$StrokeMiterlimit,
  842. strokeOpacity?: Property$StrokeOpacity,
  843. strokeWidth?: Property$StrokeWidth<TLength>,
  844. textAnchor?: Property$TextAnchor,
  845. textDecoration?: Property$TextDecoration<TLength>,
  846. textRendering?: Property$TextRendering,
  847. unicodeBidi?: Property$UnicodeBidi,
  848. vectorEffect?: Property$VectorEffect,
  849. visibility?: Property$Visibility,
  850. whiteSpace?: Property$WhiteSpace,
  851. wordSpacing?: Property$WordSpacing<TLength>,
  852. writingMode?: Property$WritingMode,
  853. |};
  854. export type Properties<TLength = string | 0, TTime = string> = {|
  855. ...StandardProperties<TLength, TTime>,
  856. ...VendorProperties<TLength, TTime>,
  857. ...ObsoleteProperties<TLength, TTime>,
  858. ...SvgProperties<TLength, TTime>,
  859. |};
  860. export type StandardLonghandPropertiesHyphen<TLength = string | 0, TTime = string> = {|
  861. "accent-color"?: Property$AccentColor,
  862. "align-content"?: Property$AlignContent,
  863. "align-items"?: Property$AlignItems,
  864. "align-self"?: Property$AlignSelf,
  865. "align-tracks"?: Property$AlignTracks,
  866. "animation-composition"?: Property$AnimationComposition,
  867. "animation-delay"?: Property$AnimationDelay<TTime>,
  868. "animation-direction"?: Property$AnimationDirection,
  869. "animation-duration"?: Property$AnimationDuration<TTime>,
  870. "animation-fill-mode"?: Property$AnimationFillMode,
  871. "animation-iteration-count"?: Property$AnimationIterationCount,
  872. "animation-name"?: Property$AnimationName,
  873. "animation-play-state"?: Property$AnimationPlayState,
  874. "animation-timeline"?: Property$AnimationTimeline,
  875. "animation-timing-function"?: Property$AnimationTimingFunction,
  876. appearance?: Property$Appearance,
  877. "aspect-ratio"?: Property$AspectRatio,
  878. "backdrop-filter"?: Property$BackdropFilter,
  879. "backface-visibility"?: Property$BackfaceVisibility,
  880. "background-attachment"?: Property$BackgroundAttachment,
  881. "background-blend-mode"?: Property$BackgroundBlendMode,
  882. "background-clip"?: Property$BackgroundClip,
  883. "background-color"?: Property$BackgroundColor,
  884. "background-image"?: Property$BackgroundImage,
  885. "background-origin"?: Property$BackgroundOrigin,
  886. "background-position-x"?: Property$BackgroundPositionX<TLength>,
  887. "background-position-y"?: Property$BackgroundPositionY<TLength>,
  888. "background-repeat"?: Property$BackgroundRepeat,
  889. "background-size"?: Property$BackgroundSize<TLength>,
  890. "block-overflow"?: Property$BlockOverflow,
  891. "block-size"?: Property$BlockSize<TLength>,
  892. "border-block-color"?: Property$BorderBlockColor,
  893. "border-block-end-color"?: Property$BorderBlockEndColor,
  894. "border-block-end-style"?: Property$BorderBlockEndStyle,
  895. "border-block-end-width"?: Property$BorderBlockEndWidth<TLength>,
  896. "border-block-start-color"?: Property$BorderBlockStartColor,
  897. "border-block-start-style"?: Property$BorderBlockStartStyle,
  898. "border-block-start-width"?: Property$BorderBlockStartWidth<TLength>,
  899. "border-block-style"?: Property$BorderBlockStyle,
  900. "border-block-width"?: Property$BorderBlockWidth<TLength>,
  901. "border-bottom-color"?: Property$BorderBottomColor,
  902. "border-bottom-left-radius"?: Property$BorderBottomLeftRadius<TLength>,
  903. "border-bottom-right-radius"?: Property$BorderBottomRightRadius<TLength>,
  904. "border-bottom-style"?: Property$BorderBottomStyle,
  905. "border-bottom-width"?: Property$BorderBottomWidth<TLength>,
  906. "border-collapse"?: Property$BorderCollapse,
  907. "border-end-end-radius"?: Property$BorderEndEndRadius<TLength>,
  908. "border-end-start-radius"?: Property$BorderEndStartRadius<TLength>,
  909. "border-image-outset"?: Property$BorderImageOutset<TLength>,
  910. "border-image-repeat"?: Property$BorderImageRepeat,
  911. "border-image-slice"?: Property$BorderImageSlice,
  912. "border-image-source"?: Property$BorderImageSource,
  913. "border-image-width"?: Property$BorderImageWidth<TLength>,
  914. "border-inline-color"?: Property$BorderInlineColor,
  915. "border-inline-end-color"?: Property$BorderInlineEndColor,
  916. "border-inline-end-style"?: Property$BorderInlineEndStyle,
  917. "border-inline-end-width"?: Property$BorderInlineEndWidth<TLength>,
  918. "border-inline-start-color"?: Property$BorderInlineStartColor,
  919. "border-inline-start-style"?: Property$BorderInlineStartStyle,
  920. "border-inline-start-width"?: Property$BorderInlineStartWidth<TLength>,
  921. "border-inline-style"?: Property$BorderInlineStyle,
  922. "border-inline-width"?: Property$BorderInlineWidth<TLength>,
  923. "border-left-color"?: Property$BorderLeftColor,
  924. "border-left-style"?: Property$BorderLeftStyle,
  925. "border-left-width"?: Property$BorderLeftWidth<TLength>,
  926. "border-right-color"?: Property$BorderRightColor,
  927. "border-right-style"?: Property$BorderRightStyle,
  928. "border-right-width"?: Property$BorderRightWidth<TLength>,
  929. "border-spacing"?: Property$BorderSpacing<TLength>,
  930. "border-start-end-radius"?: Property$BorderStartEndRadius<TLength>,
  931. "border-start-start-radius"?: Property$BorderStartStartRadius<TLength>,
  932. "border-top-color"?: Property$BorderTopColor,
  933. "border-top-left-radius"?: Property$BorderTopLeftRadius<TLength>,
  934. "border-top-right-radius"?: Property$BorderTopRightRadius<TLength>,
  935. "border-top-style"?: Property$BorderTopStyle,
  936. "border-top-width"?: Property$BorderTopWidth<TLength>,
  937. bottom?: Property$Bottom<TLength>,
  938. "box-decoration-break"?: Property$BoxDecorationBreak,
  939. "box-shadow"?: Property$BoxShadow,
  940. "box-sizing"?: Property$BoxSizing,
  941. "break-after"?: Property$BreakAfter,
  942. "break-before"?: Property$BreakBefore,
  943. "break-inside"?: Property$BreakInside,
  944. "caption-side"?: Property$CaptionSide,
  945. "caret-color"?: Property$CaretColor,
  946. "caret-shape"?: Property$CaretShape,
  947. clear?: Property$Clear,
  948. "clip-path"?: Property$ClipPath,
  949. color?: Property$Color,
  950. "color-adjust"?: Property$PrintColorAdjust,
  951. "color-scheme"?: Property$ColorScheme,
  952. "column-count"?: Property$ColumnCount,
  953. "column-fill"?: Property$ColumnFill,
  954. "column-gap"?: Property$ColumnGap<TLength>,
  955. "column-rule-color"?: Property$ColumnRuleColor,
  956. "column-rule-style"?: Property$ColumnRuleStyle,
  957. "column-rule-width"?: Property$ColumnRuleWidth<TLength>,
  958. "column-span"?: Property$ColumnSpan,
  959. "column-width"?: Property$ColumnWidth<TLength>,
  960. contain?: Property$Contain,
  961. "contain-intrinsic-block-size"?: Property$ContainIntrinsicBlockSize<TLength>,
  962. "contain-intrinsic-height"?: Property$ContainIntrinsicHeight<TLength>,
  963. "contain-intrinsic-inline-size"?: Property$ContainIntrinsicInlineSize<TLength>,
  964. "contain-intrinsic-width"?: Property$ContainIntrinsicWidth<TLength>,
  965. "container-name"?: Property$ContainerName,
  966. "container-type"?: Property$ContainerType,
  967. content?: Property$Content,
  968. "content-visibility"?: Property$ContentVisibility,
  969. "counter-increment"?: Property$CounterIncrement,
  970. "counter-reset"?: Property$CounterReset,
  971. "counter-set"?: Property$CounterSet,
  972. cursor?: Property$Cursor,
  973. direction?: Property$Direction,
  974. display?: Property$Display,
  975. "empty-cells"?: Property$EmptyCells,
  976. filter?: Property$Filter,
  977. "flex-basis"?: Property$FlexBasis<TLength>,
  978. "flex-direction"?: Property$FlexDirection,
  979. "flex-grow"?: Property$FlexGrow,
  980. "flex-shrink"?: Property$FlexShrink,
  981. "flex-wrap"?: Property$FlexWrap,
  982. float?: Property$Float,
  983. "font-family"?: Property$FontFamily,
  984. "font-feature-settings"?: Property$FontFeatureSettings,
  985. "font-kerning"?: Property$FontKerning,
  986. "font-language-override"?: Property$FontLanguageOverride,
  987. "font-optical-sizing"?: Property$FontOpticalSizing,
  988. "font-palette"?: Property$FontPalette,
  989. "font-size"?: Property$FontSize<TLength>,
  990. "font-size-adjust"?: Property$FontSizeAdjust,
  991. "font-smooth"?: Property$FontSmooth<TLength>,
  992. "font-stretch"?: Property$FontStretch,
  993. "font-style"?: Property$FontStyle,
  994. "font-synthesis"?: Property$FontSynthesis,
  995. "font-variant"?: Property$FontVariant,
  996. "font-variant-alternates"?: Property$FontVariantAlternates,
  997. "font-variant-caps"?: Property$FontVariantCaps,
  998. "font-variant-east-asian"?: Property$FontVariantEastAsian,
  999. "font-variant-emoji"?: Property$FontVariantEmoji,
  1000. "font-variant-ligatures"?: Property$FontVariantLigatures,
  1001. "font-variant-numeric"?: Property$FontVariantNumeric,
  1002. "font-variant-position"?: Property$FontVariantPosition,
  1003. "font-variation-settings"?: Property$FontVariationSettings,
  1004. "font-weight"?: Property$FontWeight,
  1005. "forced-color-adjust"?: Property$ForcedColorAdjust,
  1006. "grid-auto-columns"?: Property$GridAutoColumns<TLength>,
  1007. "grid-auto-flow"?: Property$GridAutoFlow,
  1008. "grid-auto-rows"?: Property$GridAutoRows<TLength>,
  1009. "grid-column-end"?: Property$GridColumnEnd,
  1010. "grid-column-start"?: Property$GridColumnStart,
  1011. "grid-row-end"?: Property$GridRowEnd,
  1012. "grid-row-start"?: Property$GridRowStart,
  1013. "grid-template-areas"?: Property$GridTemplateAreas,
  1014. "grid-template-columns"?: Property$GridTemplateColumns<TLength>,
  1015. "grid-template-rows"?: Property$GridTemplateRows<TLength>,
  1016. "hanging-punctuation"?: Property$HangingPunctuation,
  1017. height?: Property$Height<TLength>,
  1018. "hyphenate-character"?: Property$HyphenateCharacter,
  1019. "hyphenate-limit-chars"?: Property$HyphenateLimitChars,
  1020. hyphens?: Property$Hyphens,
  1021. "image-orientation"?: Property$ImageOrientation,
  1022. "image-rendering"?: Property$ImageRendering,
  1023. "image-resolution"?: Property$ImageResolution,
  1024. "initial-letter"?: Property$InitialLetter,
  1025. "inline-size"?: Property$InlineSize<TLength>,
  1026. "input-security"?: Property$InputSecurity,
  1027. "inset-block-end"?: Property$InsetBlockEnd<TLength>,
  1028. "inset-block-start"?: Property$InsetBlockStart<TLength>,
  1029. "inset-inline-end"?: Property$InsetInlineEnd<TLength>,
  1030. "inset-inline-start"?: Property$InsetInlineStart<TLength>,
  1031. isolation?: Property$Isolation,
  1032. "justify-content"?: Property$JustifyContent,
  1033. "justify-items"?: Property$JustifyItems,
  1034. "justify-self"?: Property$JustifySelf,
  1035. "justify-tracks"?: Property$JustifyTracks,
  1036. left?: Property$Left<TLength>,
  1037. "letter-spacing"?: Property$LetterSpacing<TLength>,
  1038. "line-break"?: Property$LineBreak,
  1039. "line-height"?: Property$LineHeight<TLength>,
  1040. "line-height-step"?: Property$LineHeightStep<TLength>,
  1041. "list-style-image"?: Property$ListStyleImage,
  1042. "list-style-position"?: Property$ListStylePosition,
  1043. "list-style-type"?: Property$ListStyleType,
  1044. "margin-block-end"?: Property$MarginBlockEnd<TLength>,
  1045. "margin-block-start"?: Property$MarginBlockStart<TLength>,
  1046. "margin-bottom"?: Property$MarginBottom<TLength>,
  1047. "margin-inline-end"?: Property$MarginInlineEnd<TLength>,
  1048. "margin-inline-start"?: Property$MarginInlineStart<TLength>,
  1049. "margin-left"?: Property$MarginLeft<TLength>,
  1050. "margin-right"?: Property$MarginRight<TLength>,
  1051. "margin-top"?: Property$MarginTop<TLength>,
  1052. "margin-trim"?: Property$MarginTrim,
  1053. "mask-border-mode"?: Property$MaskBorderMode,
  1054. "mask-border-outset"?: Property$MaskBorderOutset<TLength>,
  1055. "mask-border-repeat"?: Property$MaskBorderRepeat,
  1056. "mask-border-slice"?: Property$MaskBorderSlice,
  1057. "mask-border-source"?: Property$MaskBorderSource,
  1058. "mask-border-width"?: Property$MaskBorderWidth<TLength>,
  1059. "mask-clip"?: Property$MaskClip,
  1060. "mask-composite"?: Property$MaskComposite,
  1061. "mask-image"?: Property$MaskImage,
  1062. "mask-mode"?: Property$MaskMode,
  1063. "mask-origin"?: Property$MaskOrigin,
  1064. "mask-position"?: Property$MaskPosition<TLength>,
  1065. "mask-repeat"?: Property$MaskRepeat,
  1066. "mask-size"?: Property$MaskSize<TLength>,
  1067. "mask-type"?: Property$MaskType,
  1068. "math-depth"?: Property$MathDepth,
  1069. "math-shift"?: Property$MathShift,
  1070. "math-style"?: Property$MathStyle,
  1071. "max-block-size"?: Property$MaxBlockSize<TLength>,
  1072. "max-height"?: Property$MaxHeight<TLength>,
  1073. "max-inline-size"?: Property$MaxInlineSize<TLength>,
  1074. "max-lines"?: Property$MaxLines,
  1075. "max-width"?: Property$MaxWidth<TLength>,
  1076. "min-block-size"?: Property$MinBlockSize<TLength>,
  1077. "min-height"?: Property$MinHeight<TLength>,
  1078. "min-inline-size"?: Property$MinInlineSize<TLength>,
  1079. "min-width"?: Property$MinWidth<TLength>,
  1080. "mix-blend-mode"?: Property$MixBlendMode,
  1081. "motion-distance"?: Property$OffsetDistance<TLength>,
  1082. "motion-path"?: Property$OffsetPath,
  1083. "motion-rotation"?: Property$OffsetRotate,
  1084. "object-fit"?: Property$ObjectFit,
  1085. "object-position"?: Property$ObjectPosition<TLength>,
  1086. "offset-anchor"?: Property$OffsetAnchor<TLength>,
  1087. "offset-distance"?: Property$OffsetDistance<TLength>,
  1088. "offset-path"?: Property$OffsetPath,
  1089. "offset-position"?: Property$OffsetPosition<TLength>,
  1090. "offset-rotate"?: Property$OffsetRotate,
  1091. "offset-rotation"?: Property$OffsetRotate,
  1092. opacity?: Property$Opacity,
  1093. order?: Property$Order,
  1094. orphans?: Property$Orphans,
  1095. "outline-color"?: Property$OutlineColor,
  1096. "outline-offset"?: Property$OutlineOffset<TLength>,
  1097. "outline-style"?: Property$OutlineStyle,
  1098. "outline-width"?: Property$OutlineWidth<TLength>,
  1099. "overflow-anchor"?: Property$OverflowAnchor,
  1100. "overflow-block"?: Property$OverflowBlock,
  1101. "overflow-clip-box"?: Property$OverflowClipBox,
  1102. "overflow-clip-margin"?: Property$OverflowClipMargin<TLength>,
  1103. "overflow-inline"?: Property$OverflowInline,
  1104. "overflow-wrap"?: Property$OverflowWrap,
  1105. "overflow-x"?: Property$OverflowX,
  1106. "overflow-y"?: Property$OverflowY,
  1107. "overscroll-behavior-block"?: Property$OverscrollBehaviorBlock,
  1108. "overscroll-behavior-inline"?: Property$OverscrollBehaviorInline,
  1109. "overscroll-behavior-x"?: Property$OverscrollBehaviorX,
  1110. "overscroll-behavior-y"?: Property$OverscrollBehaviorY,
  1111. "padding-block-end"?: Property$PaddingBlockEnd<TLength>,
  1112. "padding-block-start"?: Property$PaddingBlockStart<TLength>,
  1113. "padding-bottom"?: Property$PaddingBottom<TLength>,
  1114. "padding-inline-end"?: Property$PaddingInlineEnd<TLength>,
  1115. "padding-inline-start"?: Property$PaddingInlineStart<TLength>,
  1116. "padding-left"?: Property$PaddingLeft<TLength>,
  1117. "padding-right"?: Property$PaddingRight<TLength>,
  1118. "padding-top"?: Property$PaddingTop<TLength>,
  1119. page?: Property$Page,
  1120. "page-break-after"?: Property$PageBreakAfter,
  1121. "page-break-before"?: Property$PageBreakBefore,
  1122. "page-break-inside"?: Property$PageBreakInside,
  1123. "paint-order"?: Property$PaintOrder,
  1124. perspective?: Property$Perspective<TLength>,
  1125. "perspective-origin"?: Property$PerspectiveOrigin<TLength>,
  1126. "pointer-events"?: Property$PointerEvents,
  1127. position?: Property$Position,
  1128. "print-color-adjust"?: Property$PrintColorAdjust,
  1129. quotes?: Property$Quotes,
  1130. resize?: Property$Resize,
  1131. right?: Property$Right<TLength>,
  1132. rotate?: Property$Rotate,
  1133. "row-gap"?: Property$RowGap<TLength>,
  1134. "ruby-align"?: Property$RubyAlign,
  1135. "ruby-merge"?: Property$RubyMerge,
  1136. "ruby-position"?: Property$RubyPosition,
  1137. scale?: Property$Scale,
  1138. "scroll-behavior"?: Property$ScrollBehavior,
  1139. "scroll-margin-block-end"?: Property$ScrollMarginBlockEnd<TLength>,
  1140. "scroll-margin-block-start"?: Property$ScrollMarginBlockStart<TLength>,
  1141. "scroll-margin-bottom"?: Property$ScrollMarginBottom<TLength>,
  1142. "scroll-margin-inline-end"?: Property$ScrollMarginInlineEnd<TLength>,
  1143. "scroll-margin-inline-start"?: Property$ScrollMarginInlineStart<TLength>,
  1144. "scroll-margin-left"?: Property$ScrollMarginLeft<TLength>,
  1145. "scroll-margin-right"?: Property$ScrollMarginRight<TLength>,
  1146. "scroll-margin-top"?: Property$ScrollMarginTop<TLength>,
  1147. "scroll-padding-block-end"?: Property$ScrollPaddingBlockEnd<TLength>,
  1148. "scroll-padding-block-start"?: Property$ScrollPaddingBlockStart<TLength>,
  1149. "scroll-padding-bottom"?: Property$ScrollPaddingBottom<TLength>,
  1150. "scroll-padding-inline-end"?: Property$ScrollPaddingInlineEnd<TLength>,
  1151. "scroll-padding-inline-start"?: Property$ScrollPaddingInlineStart<TLength>,
  1152. "scroll-padding-left"?: Property$ScrollPaddingLeft<TLength>,
  1153. "scroll-padding-right"?: Property$ScrollPaddingRight<TLength>,
  1154. "scroll-padding-top"?: Property$ScrollPaddingTop<TLength>,
  1155. "scroll-snap-align"?: Property$ScrollSnapAlign,
  1156. "scroll-snap-margin-bottom"?: Property$ScrollMarginBottom<TLength>,
  1157. "scroll-snap-margin-left"?: Property$ScrollMarginLeft<TLength>,
  1158. "scroll-snap-margin-right"?: Property$ScrollMarginRight<TLength>,
  1159. "scroll-snap-margin-top"?: Property$ScrollMarginTop<TLength>,
  1160. "scroll-snap-stop"?: Property$ScrollSnapStop,
  1161. "scroll-snap-type"?: Property$ScrollSnapType,
  1162. "scroll-timeline-axis"?: Property$ScrollTimelineAxis,
  1163. "scroll-timeline-name"?: Property$ScrollTimelineName,
  1164. "scrollbar-color"?: Property$ScrollbarColor,
  1165. "scrollbar-gutter"?: Property$ScrollbarGutter,
  1166. "scrollbar-width"?: Property$ScrollbarWidth,
  1167. "shape-image-threshold"?: Property$ShapeImageThreshold,
  1168. "shape-margin"?: Property$ShapeMargin<TLength>,
  1169. "shape-outside"?: Property$ShapeOutside,
  1170. "tab-size"?: Property$TabSize<TLength>,
  1171. "table-layout"?: Property$TableLayout,
  1172. "text-align"?: Property$TextAlign,
  1173. "text-align-last"?: Property$TextAlignLast,
  1174. "text-combine-upright"?: Property$TextCombineUpright,
  1175. "text-decoration-color"?: Property$TextDecorationColor,
  1176. "text-decoration-line"?: Property$TextDecorationLine,
  1177. "text-decoration-skip"?: Property$TextDecorationSkip,
  1178. "text-decoration-skip-ink"?: Property$TextDecorationSkipInk,
  1179. "text-decoration-style"?: Property$TextDecorationStyle,
  1180. "text-decoration-thickness"?: Property$TextDecorationThickness<TLength>,
  1181. "text-emphasis-color"?: Property$TextEmphasisColor,
  1182. "text-emphasis-position"?: Property$TextEmphasisPosition,
  1183. "text-emphasis-style"?: Property$TextEmphasisStyle,
  1184. "text-indent"?: Property$TextIndent<TLength>,
  1185. "text-justify"?: Property$TextJustify,
  1186. "text-orientation"?: Property$TextOrientation,
  1187. "text-overflow"?: Property$TextOverflow,
  1188. "text-rendering"?: Property$TextRendering,
  1189. "text-shadow"?: Property$TextShadow,
  1190. "text-size-adjust"?: Property$TextSizeAdjust,
  1191. "text-transform"?: Property$TextTransform,
  1192. "text-underline-offset"?: Property$TextUnderlineOffset<TLength>,
  1193. "text-underline-position"?: Property$TextUnderlinePosition,
  1194. top?: Property$Top<TLength>,
  1195. "touch-action"?: Property$TouchAction,
  1196. transform?: Property$Transform,
  1197. "transform-box"?: Property$TransformBox,
  1198. "transform-origin"?: Property$TransformOrigin<TLength>,
  1199. "transform-style"?: Property$TransformStyle,
  1200. "transition-delay"?: Property$TransitionDelay<TTime>,
  1201. "transition-duration"?: Property$TransitionDuration<TTime>,
  1202. "transition-property"?: Property$TransitionProperty,
  1203. "transition-timing-function"?: Property$TransitionTimingFunction,
  1204. translate?: Property$Translate<TLength>,
  1205. "unicode-bidi"?: Property$UnicodeBidi,
  1206. "user-select"?: Property$UserSelect,
  1207. "vertical-align"?: Property$VerticalAlign<TLength>,
  1208. "view-transition-name"?: Property$ViewTransitionName,
  1209. visibility?: Property$Visibility,
  1210. "white-space"?: Property$WhiteSpace,
  1211. widows?: Property$Widows,
  1212. width?: Property$Width<TLength>,
  1213. "will-change"?: Property$WillChange,
  1214. "word-break"?: Property$WordBreak,
  1215. "word-spacing"?: Property$WordSpacing<TLength>,
  1216. "word-wrap"?: Property$WordWrap,
  1217. "writing-mode"?: Property$WritingMode,
  1218. "z-index"?: Property$ZIndex,
  1219. zoom?: Property$Zoom,
  1220. |};
  1221. export type StandardShorthandPropertiesHyphen<TLength = string | 0, TTime = string> = {|
  1222. all?: Property$All,
  1223. animation?: Property$Animation<TTime>,
  1224. background?: Property$Background<TLength>,
  1225. "background-position"?: Property$BackgroundPosition<TLength>,
  1226. border?: Property$Border<TLength>,
  1227. "border-block"?: Property$BorderBlock<TLength>,
  1228. "border-block-end"?: Property$BorderBlockEnd<TLength>,
  1229. "border-block-start"?: Property$BorderBlockStart<TLength>,
  1230. "border-bottom"?: Property$BorderBottom<TLength>,
  1231. "border-color"?: Property$BorderColor,
  1232. "border-image"?: Property$BorderImage,
  1233. "border-inline"?: Property$BorderInline<TLength>,
  1234. "border-inline-end"?: Property$BorderInlineEnd<TLength>,
  1235. "border-inline-start"?: Property$BorderInlineStart<TLength>,
  1236. "border-left"?: Property$BorderLeft<TLength>,
  1237. "border-radius"?: Property$BorderRadius<TLength>,
  1238. "border-right"?: Property$BorderRight<TLength>,
  1239. "border-style"?: Property$BorderStyle,
  1240. "border-top"?: Property$BorderTop<TLength>,
  1241. "border-width"?: Property$BorderWidth<TLength>,
  1242. caret?: Property$Caret,
  1243. "column-rule"?: Property$ColumnRule<TLength>,
  1244. columns?: Property$Columns<TLength>,
  1245. "contain-intrinsic-size"?: Property$ContainIntrinsicSize<TLength>,
  1246. container?: Property$Container,
  1247. flex?: Property$Flex<TLength>,
  1248. "flex-flow"?: Property$FlexFlow,
  1249. font?: Property$Font,
  1250. gap?: Property$Gap<TLength>,
  1251. grid?: Property$Grid,
  1252. "grid-area"?: Property$GridArea,
  1253. "grid-column"?: Property$GridColumn,
  1254. "grid-row"?: Property$GridRow,
  1255. "grid-template"?: Property$GridTemplate,
  1256. inset?: Property$Inset<TLength>,
  1257. "inset-block"?: Property$InsetBlock<TLength>,
  1258. "inset-inline"?: Property$InsetInline<TLength>,
  1259. "line-clamp"?: Property$LineClamp,
  1260. "list-style"?: Property$ListStyle,
  1261. margin?: Property$Margin<TLength>,
  1262. "margin-block"?: Property$MarginBlock<TLength>,
  1263. "margin-inline"?: Property$MarginInline<TLength>,
  1264. mask?: Property$Mask<TLength>,
  1265. "mask-border"?: Property$MaskBorder,
  1266. motion?: Property$Offset<TLength>,
  1267. offset?: Property$Offset<TLength>,
  1268. outline?: Property$Outline<TLength>,
  1269. overflow?: Property$Overflow,
  1270. "overscroll-behavior"?: Property$OverscrollBehavior,
  1271. padding?: Property$Padding<TLength>,
  1272. "padding-block"?: Property$PaddingBlock<TLength>,
  1273. "padding-inline"?: Property$PaddingInline<TLength>,
  1274. "place-content"?: Property$PlaceContent,
  1275. "place-items"?: Property$PlaceItems,
  1276. "place-self"?: Property$PlaceSelf,
  1277. "scroll-margin"?: Property$ScrollMargin<TLength>,
  1278. "scroll-margin-block"?: Property$ScrollMarginBlock<TLength>,
  1279. "scroll-margin-inline"?: Property$ScrollMarginInline<TLength>,
  1280. "scroll-padding"?: Property$ScrollPadding<TLength>,
  1281. "scroll-padding-block"?: Property$ScrollPaddingBlock<TLength>,
  1282. "scroll-padding-inline"?: Property$ScrollPaddingInline<TLength>,
  1283. "scroll-snap-margin"?: Property$ScrollMargin<TLength>,
  1284. "scroll-timeline"?: Property$ScrollTimeline,
  1285. "text-decoration"?: Property$TextDecoration<TLength>,
  1286. "text-emphasis"?: Property$TextEmphasis,
  1287. transition?: Property$Transition<TTime>,
  1288. |};
  1289. export type StandardPropertiesHyphen<TLength = string | 0, TTime = string> = {|
  1290. ...StandardLonghandPropertiesHyphen<TLength, TTime>,
  1291. ...StandardShorthandPropertiesHyphen<TLength, TTime>,
  1292. |};
  1293. export type VendorLonghandPropertiesHyphen<TLength = string | 0, TTime = string> = {|
  1294. "-moz-animation-delay"?: Property$AnimationDelay<TTime>,
  1295. "-moz-animation-direction"?: Property$AnimationDirection,
  1296. "-moz-animation-duration"?: Property$AnimationDuration<TTime>,
  1297. "-moz-animation-fill-mode"?: Property$AnimationFillMode,
  1298. "-moz-animation-iteration-count"?: Property$AnimationIterationCount,
  1299. "-moz-animation-name"?: Property$AnimationName,
  1300. "-moz-animation-play-state"?: Property$AnimationPlayState,
  1301. "-moz-animation-timing-function"?: Property$AnimationTimingFunction,
  1302. "-moz-appearance"?: Property$MozAppearance,
  1303. "-moz-backface-visibility"?: Property$BackfaceVisibility,
  1304. "-moz-binding"?: Property$MozBinding,
  1305. "-moz-border-bottom-colors"?: Property$MozBorderBottomColors,
  1306. "-moz-border-end-color"?: Property$BorderInlineEndColor,
  1307. "-moz-border-end-style"?: Property$BorderInlineEndStyle,
  1308. "-moz-border-end-width"?: Property$BorderInlineEndWidth<TLength>,
  1309. "-moz-border-left-colors"?: Property$MozBorderLeftColors,
  1310. "-moz-border-right-colors"?: Property$MozBorderRightColors,
  1311. "-moz-border-start-color"?: Property$BorderInlineStartColor,
  1312. "-moz-border-start-style"?: Property$BorderInlineStartStyle,
  1313. "-moz-border-top-colors"?: Property$MozBorderTopColors,
  1314. "-moz-box-sizing"?: Property$BoxSizing,
  1315. "-moz-column-count"?: Property$ColumnCount,
  1316. "-moz-column-fill"?: Property$ColumnFill,
  1317. "-moz-column-rule-color"?: Property$ColumnRuleColor,
  1318. "-moz-column-rule-style"?: Property$ColumnRuleStyle,
  1319. "-moz-column-rule-width"?: Property$ColumnRuleWidth<TLength>,
  1320. "-moz-column-width"?: Property$ColumnWidth<TLength>,
  1321. "-moz-context-properties"?: Property$MozContextProperties,
  1322. "-moz-font-feature-settings"?: Property$FontFeatureSettings,
  1323. "-moz-font-language-override"?: Property$FontLanguageOverride,
  1324. "-moz-hyphens"?: Property$Hyphens,
  1325. "-moz-image-region"?: Property$MozImageRegion,
  1326. "-moz-margin-end"?: Property$MarginInlineEnd<TLength>,
  1327. "-moz-margin-start"?: Property$MarginInlineStart<TLength>,
  1328. "-moz-orient"?: Property$MozOrient,
  1329. "-moz-osx-font-smoothing"?: Property$FontSmooth<TLength>,
  1330. "-moz-padding-end"?: Property$PaddingInlineEnd<TLength>,
  1331. "-moz-padding-start"?: Property$PaddingInlineStart<TLength>,
  1332. "-moz-perspective"?: Property$Perspective<TLength>,
  1333. "-moz-perspective-origin"?: Property$PerspectiveOrigin<TLength>,
  1334. "-moz-stack-sizing"?: Property$MozStackSizing,
  1335. "-moz-tab-size"?: Property$TabSize<TLength>,
  1336. "-moz-text-blink"?: Property$MozTextBlink,
  1337. "-moz-text-size-adjust"?: Property$TextSizeAdjust,
  1338. "-moz-transform-origin"?: Property$TransformOrigin<TLength>,
  1339. "-moz-transform-style"?: Property$TransformStyle,
  1340. "-moz-transition-delay"?: Property$TransitionDelay<TTime>,
  1341. "-moz-transition-duration"?: Property$TransitionDuration<TTime>,
  1342. "-moz-transition-property"?: Property$TransitionProperty,
  1343. "-moz-transition-timing-function"?: Property$TransitionTimingFunction,
  1344. "-moz-user-focus"?: Property$MozUserFocus,
  1345. "-moz-user-modify"?: Property$MozUserModify,
  1346. "-moz-user-select"?: Property$UserSelect,
  1347. "-moz-window-dragging"?: Property$MozWindowDragging,
  1348. "-moz-window-shadow"?: Property$MozWindowShadow,
  1349. "-ms-accelerator"?: Property$MsAccelerator,
  1350. "-ms-block-progression"?: Property$MsBlockProgression,
  1351. "-ms-content-zoom-chaining"?: Property$MsContentZoomChaining,
  1352. "-ms-content-zoom-limit-max"?: Property$MsContentZoomLimitMax,
  1353. "-ms-content-zoom-limit-min"?: Property$MsContentZoomLimitMin,
  1354. "-ms-content-zoom-snap-points"?: Property$MsContentZoomSnapPoints,
  1355. "-ms-content-zoom-snap-type"?: Property$MsContentZoomSnapType,
  1356. "-ms-content-zooming"?: Property$MsContentZooming,
  1357. "-ms-filter"?: Property$MsFilter,
  1358. "-ms-flex-direction"?: Property$FlexDirection,
  1359. "-ms-flex-positive"?: Property$FlexGrow,
  1360. "-ms-flow-from"?: Property$MsFlowFrom,
  1361. "-ms-flow-into"?: Property$MsFlowInto,
  1362. "-ms-grid-columns"?: Property$MsGridColumns<TLength>,
  1363. "-ms-grid-rows"?: Property$MsGridRows<TLength>,
  1364. "-ms-high-contrast-adjust"?: Property$MsHighContrastAdjust,
  1365. "-ms-hyphenate-limit-chars"?: Property$MsHyphenateLimitChars,
  1366. "-ms-hyphenate-limit-lines"?: Property$MsHyphenateLimitLines,
  1367. "-ms-hyphenate-limit-zone"?: Property$MsHyphenateLimitZone<TLength>,
  1368. "-ms-hyphens"?: Property$Hyphens,
  1369. "-ms-ime-align"?: Property$MsImeAlign,
  1370. "-ms-line-break"?: Property$LineBreak,
  1371. "-ms-order"?: Property$Order,
  1372. "-ms-overflow-style"?: Property$MsOverflowStyle,
  1373. "-ms-overflow-x"?: Property$OverflowX,
  1374. "-ms-overflow-y"?: Property$OverflowY,
  1375. "-ms-scroll-chaining"?: Property$MsScrollChaining,
  1376. "-ms-scroll-limit-x-max"?: Property$MsScrollLimitXMax<TLength>,
  1377. "-ms-scroll-limit-x-min"?: Property$MsScrollLimitXMin<TLength>,
  1378. "-ms-scroll-limit-y-max"?: Property$MsScrollLimitYMax<TLength>,
  1379. "-ms-scroll-limit-y-min"?: Property$MsScrollLimitYMin<TLength>,
  1380. "-ms-scroll-rails"?: Property$MsScrollRails,
  1381. "-ms-scroll-snap-points-x"?: Property$MsScrollSnapPointsX,
  1382. "-ms-scroll-snap-points-y"?: Property$MsScrollSnapPointsY,
  1383. "-ms-scroll-snap-type"?: Property$MsScrollSnapType,
  1384. "-ms-scroll-translation"?: Property$MsScrollTranslation,
  1385. "-ms-scrollbar-3dlight-color"?: Property$MsScrollbar3dlightColor,
  1386. "-ms-scrollbar-arrow-color"?: Property$MsScrollbarArrowColor,
  1387. "-ms-scrollbar-base-color"?: Property$MsScrollbarBaseColor,
  1388. "-ms-scrollbar-darkshadow-color"?: Property$MsScrollbarDarkshadowColor,
  1389. "-ms-scrollbar-face-color"?: Property$MsScrollbarFaceColor,
  1390. "-ms-scrollbar-highlight-color"?: Property$MsScrollbarHighlightColor,
  1391. "-ms-scrollbar-shadow-color"?: Property$MsScrollbarShadowColor,
  1392. "-ms-scrollbar-track-color"?: Property$MsScrollbarTrackColor,
  1393. "-ms-text-autospace"?: Property$MsTextAutospace,
  1394. "-ms-text-combine-horizontal"?: Property$TextCombineUpright,
  1395. "-ms-text-overflow"?: Property$TextOverflow,
  1396. "-ms-touch-action"?: Property$TouchAction,
  1397. "-ms-touch-select"?: Property$MsTouchSelect,
  1398. "-ms-transform"?: Property$Transform,
  1399. "-ms-transform-origin"?: Property$TransformOrigin<TLength>,
  1400. "-ms-transition-delay"?: Property$TransitionDelay<TTime>,
  1401. "-ms-transition-duration"?: Property$TransitionDuration<TTime>,
  1402. "-ms-transition-property"?: Property$TransitionProperty,
  1403. "-ms-transition-timing-function"?: Property$TransitionTimingFunction,
  1404. "-ms-user-select"?: Property$MsUserSelect,
  1405. "-ms-word-break"?: Property$WordBreak,
  1406. "-ms-wrap-flow"?: Property$MsWrapFlow,
  1407. "-ms-wrap-margin"?: Property$MsWrapMargin<TLength>,
  1408. "-ms-wrap-through"?: Property$MsWrapThrough,
  1409. "-ms-writing-mode"?: Property$WritingMode,
  1410. "-webkit-align-content"?: Property$AlignContent,
  1411. "-webkit-align-items"?: Property$AlignItems,
  1412. "-webkit-align-self"?: Property$AlignSelf,
  1413. "-webkit-animation-delay"?: Property$AnimationDelay<TTime>,
  1414. "-webkit-animation-direction"?: Property$AnimationDirection,
  1415. "-webkit-animation-duration"?: Property$AnimationDuration<TTime>,
  1416. "-webkit-animation-fill-mode"?: Property$AnimationFillMode,
  1417. "-webkit-animation-iteration-count"?: Property$AnimationIterationCount,
  1418. "-webkit-animation-name"?: Property$AnimationName,
  1419. "-webkit-animation-play-state"?: Property$AnimationPlayState,
  1420. "-webkit-animation-timing-function"?: Property$AnimationTimingFunction,
  1421. "-webkit-appearance"?: Property$WebkitAppearance,
  1422. "-webkit-backdrop-filter"?: Property$BackdropFilter,
  1423. "-webkit-backface-visibility"?: Property$BackfaceVisibility,
  1424. "-webkit-background-clip"?: Property$BackgroundClip,
  1425. "-webkit-background-origin"?: Property$BackgroundOrigin,
  1426. "-webkit-background-size"?: Property$BackgroundSize<TLength>,
  1427. "-webkit-border-before-color"?: Property$WebkitBorderBeforeColor,
  1428. "-webkit-border-before-style"?: Property$WebkitBorderBeforeStyle,
  1429. "-webkit-border-before-width"?: Property$WebkitBorderBeforeWidth<TLength>,
  1430. "-webkit-border-bottom-left-radius"?: Property$BorderBottomLeftRadius<TLength>,
  1431. "-webkit-border-bottom-right-radius"?: Property$BorderBottomRightRadius<TLength>,
  1432. "-webkit-border-image-slice"?: Property$BorderImageSlice,
  1433. "-webkit-border-top-left-radius"?: Property$BorderTopLeftRadius<TLength>,
  1434. "-webkit-border-top-right-radius"?: Property$BorderTopRightRadius<TLength>,
  1435. "-webkit-box-decoration-break"?: Property$BoxDecorationBreak,
  1436. "-webkit-box-reflect"?: Property$WebkitBoxReflect<TLength>,
  1437. "-webkit-box-shadow"?: Property$BoxShadow,
  1438. "-webkit-box-sizing"?: Property$BoxSizing,
  1439. "-webkit-clip-path"?: Property$ClipPath,
  1440. "-webkit-column-count"?: Property$ColumnCount,
  1441. "-webkit-column-fill"?: Property$ColumnFill,
  1442. "-webkit-column-rule-color"?: Property$ColumnRuleColor,
  1443. "-webkit-column-rule-style"?: Property$ColumnRuleStyle,
  1444. "-webkit-column-rule-width"?: Property$ColumnRuleWidth<TLength>,
  1445. "-webkit-column-span"?: Property$ColumnSpan,
  1446. "-webkit-column-width"?: Property$ColumnWidth<TLength>,
  1447. "-webkit-filter"?: Property$Filter,
  1448. "-webkit-flex-basis"?: Property$FlexBasis<TLength>,
  1449. "-webkit-flex-direction"?: Property$FlexDirection,
  1450. "-webkit-flex-grow"?: Property$FlexGrow,
  1451. "-webkit-flex-shrink"?: Property$FlexShrink,
  1452. "-webkit-flex-wrap"?: Property$FlexWrap,
  1453. "-webkit-font-feature-settings"?: Property$FontFeatureSettings,
  1454. "-webkit-font-kerning"?: Property$FontKerning,
  1455. "-webkit-font-smoothing"?: Property$FontSmooth<TLength>,
  1456. "-webkit-font-variant-ligatures"?: Property$FontVariantLigatures,
  1457. "-webkit-hyphenate-character"?: Property$HyphenateCharacter,
  1458. "-webkit-hyphens"?: Property$Hyphens,
  1459. "-webkit-initial-letter"?: Property$InitialLetter,
  1460. "-webkit-justify-content"?: Property$JustifyContent,
  1461. "-webkit-line-break"?: Property$LineBreak,
  1462. "-webkit-line-clamp"?: Property$WebkitLineClamp,
  1463. "-webkit-margin-end"?: Property$MarginInlineEnd<TLength>,
  1464. "-webkit-margin-start"?: Property$MarginInlineStart<TLength>,
  1465. "-webkit-mask-attachment"?: Property$WebkitMaskAttachment,
  1466. "-webkit-mask-box-image-outset"?: Property$MaskBorderOutset<TLength>,
  1467. "-webkit-mask-box-image-repeat"?: Property$MaskBorderRepeat,
  1468. "-webkit-mask-box-image-slice"?: Property$MaskBorderSlice,
  1469. "-webkit-mask-box-image-source"?: Property$MaskBorderSource,
  1470. "-webkit-mask-box-image-width"?: Property$MaskBorderWidth<TLength>,
  1471. "-webkit-mask-clip"?: Property$WebkitMaskClip,
  1472. "-webkit-mask-composite"?: Property$WebkitMaskComposite,
  1473. "-webkit-mask-image"?: Property$WebkitMaskImage,
  1474. "-webkit-mask-origin"?: Property$WebkitMaskOrigin,
  1475. "-webkit-mask-position"?: Property$WebkitMaskPosition<TLength>,
  1476. "-webkit-mask-position-x"?: Property$WebkitMaskPositionX<TLength>,
  1477. "-webkit-mask-position-y"?: Property$WebkitMaskPositionY<TLength>,
  1478. "-webkit-mask-repeat"?: Property$WebkitMaskRepeat,
  1479. "-webkit-mask-repeat-x"?: Property$WebkitMaskRepeatX,
  1480. "-webkit-mask-repeat-y"?: Property$WebkitMaskRepeatY,
  1481. "-webkit-mask-size"?: Property$WebkitMaskSize<TLength>,
  1482. "-webkit-max-inline-size"?: Property$MaxInlineSize<TLength>,
  1483. "-webkit-order"?: Property$Order,
  1484. "-webkit-overflow-scrolling"?: Property$WebkitOverflowScrolling,
  1485. "-webkit-padding-end"?: Property$PaddingInlineEnd<TLength>,
  1486. "-webkit-padding-start"?: Property$PaddingInlineStart<TLength>,
  1487. "-webkit-perspective"?: Property$Perspective<TLength>,
  1488. "-webkit-perspective-origin"?: Property$PerspectiveOrigin<TLength>,
  1489. "-webkit-print-color-adjust"?: Property$PrintColorAdjust,
  1490. "-webkit-ruby-position"?: Property$RubyPosition,
  1491. "-webkit-scroll-snap-type"?: Property$ScrollSnapType,
  1492. "-webkit-shape-margin"?: Property$ShapeMargin<TLength>,
  1493. "-webkit-tap-highlight-color"?: Property$WebkitTapHighlightColor,
  1494. "-webkit-text-combine"?: Property$TextCombineUpright,
  1495. "-webkit-text-decoration-color"?: Property$TextDecorationColor,
  1496. "-webkit-text-decoration-line"?: Property$TextDecorationLine,
  1497. "-webkit-text-decoration-skip"?: Property$TextDecorationSkip,
  1498. "-webkit-text-decoration-style"?: Property$TextDecorationStyle,
  1499. "-webkit-text-emphasis-color"?: Property$TextEmphasisColor,
  1500. "-webkit-text-emphasis-position"?: Property$TextEmphasisPosition,
  1501. "-webkit-text-emphasis-style"?: Property$TextEmphasisStyle,
  1502. "-webkit-text-fill-color"?: Property$WebkitTextFillColor,
  1503. "-webkit-text-orientation"?: Property$TextOrientation,
  1504. "-webkit-text-size-adjust"?: Property$TextSizeAdjust,
  1505. "-webkit-text-stroke-color"?: Property$WebkitTextStrokeColor,
  1506. "-webkit-text-stroke-width"?: Property$WebkitTextStrokeWidth<TLength>,
  1507. "-webkit-text-underline-position"?: Property$TextUnderlinePosition,
  1508. "-webkit-touch-callout"?: Property$WebkitTouchCallout,
  1509. "-webkit-transform"?: Property$Transform,
  1510. "-webkit-transform-origin"?: Property$TransformOrigin<TLength>,
  1511. "-webkit-transform-style"?: Property$TransformStyle,
  1512. "-webkit-transition-delay"?: Property$TransitionDelay<TTime>,
  1513. "-webkit-transition-duration"?: Property$TransitionDuration<TTime>,
  1514. "-webkit-transition-property"?: Property$TransitionProperty,
  1515. "-webkit-transition-timing-function"?: Property$TransitionTimingFunction,
  1516. "-webkit-user-modify"?: Property$WebkitUserModify,
  1517. "-webkit-user-select"?: Property$UserSelect,
  1518. "-webkit-writing-mode"?: Property$WritingMode,
  1519. |};
  1520. export type VendorShorthandPropertiesHyphen<TLength = string | 0, TTime = string> = {|
  1521. "-moz-animation"?: Property$Animation<TTime>,
  1522. "-moz-border-image"?: Property$BorderImage,
  1523. "-moz-column-rule"?: Property$ColumnRule<TLength>,
  1524. "-moz-columns"?: Property$Columns<TLength>,
  1525. "-moz-transition"?: Property$Transition<TTime>,
  1526. "-ms-content-zoom-limit"?: Property$MsContentZoomLimit,
  1527. "-ms-content-zoom-snap"?: Property$MsContentZoomSnap,
  1528. "-ms-flex"?: Property$Flex<TLength>,
  1529. "-ms-scroll-limit"?: Property$MsScrollLimit,
  1530. "-ms-scroll-snap-x"?: Property$MsScrollSnapX,
  1531. "-ms-scroll-snap-y"?: Property$MsScrollSnapY,
  1532. "-ms-transition"?: Property$Transition<TTime>,
  1533. "-webkit-animation"?: Property$Animation<TTime>,
  1534. "-webkit-border-before"?: Property$WebkitBorderBefore<TLength>,
  1535. "-webkit-border-image"?: Property$BorderImage,
  1536. "-webkit-border-radius"?: Property$BorderRadius<TLength>,
  1537. "-webkit-column-rule"?: Property$ColumnRule<TLength>,
  1538. "-webkit-columns"?: Property$Columns<TLength>,
  1539. "-webkit-flex"?: Property$Flex<TLength>,
  1540. "-webkit-flex-flow"?: Property$FlexFlow,
  1541. "-webkit-mask"?: Property$WebkitMask<TLength>,
  1542. "-webkit-mask-box-image"?: Property$MaskBorder,
  1543. "-webkit-text-emphasis"?: Property$TextEmphasis,
  1544. "-webkit-text-stroke"?: Property$WebkitTextStroke<TLength>,
  1545. "-webkit-transition"?: Property$Transition<TTime>,
  1546. |};
  1547. export type VendorPropertiesHyphen<TLength = string | 0, TTime = string> = {|
  1548. ...VendorLonghandPropertiesHyphen<TLength, TTime>,
  1549. ...VendorShorthandPropertiesHyphen<TLength, TTime>,
  1550. |};
  1551. export type ObsoletePropertiesHyphen<TLength = string | 0, TTime = string> = {|
  1552. azimuth?: Property$Azimuth,
  1553. "box-align"?: Property$BoxAlign,
  1554. "box-direction"?: Property$BoxDirection,
  1555. "box-flex"?: Property$BoxFlex,
  1556. "box-flex-group"?: Property$BoxFlexGroup,
  1557. "box-lines"?: Property$BoxLines,
  1558. "box-ordinal-group"?: Property$BoxOrdinalGroup,
  1559. "box-orient"?: Property$BoxOrient,
  1560. "box-pack"?: Property$BoxPack,
  1561. clip?: Property$Clip,
  1562. "grid-column-gap"?: Property$GridColumnGap<TLength>,
  1563. "grid-gap"?: Property$GridGap<TLength>,
  1564. "grid-row-gap"?: Property$GridRowGap<TLength>,
  1565. "ime-mode"?: Property$ImeMode,
  1566. "offset-block"?: Property$InsetBlock<TLength>,
  1567. "offset-block-end"?: Property$InsetBlockEnd<TLength>,
  1568. "offset-block-start"?: Property$InsetBlockStart<TLength>,
  1569. "offset-inline"?: Property$InsetInline<TLength>,
  1570. "offset-inline-end"?: Property$InsetInlineEnd<TLength>,
  1571. "offset-inline-start"?: Property$InsetInlineStart<TLength>,
  1572. "scroll-snap-coordinate"?: Property$ScrollSnapCoordinate<TLength>,
  1573. "scroll-snap-destination"?: Property$ScrollSnapDestination<TLength>,
  1574. "scroll-snap-points-x"?: Property$ScrollSnapPointsX,
  1575. "scroll-snap-points-y"?: Property$ScrollSnapPointsY,
  1576. "scroll-snap-type-x"?: Property$ScrollSnapTypeX,
  1577. "scroll-snap-type-y"?: Property$ScrollSnapTypeY,
  1578. "-khtml-box-align"?: Property$BoxAlign,
  1579. "-khtml-box-direction"?: Property$BoxDirection,
  1580. "-khtml-box-flex"?: Property$BoxFlex,
  1581. "-khtml-box-flex-group"?: Property$BoxFlexGroup,
  1582. "-khtml-box-lines"?: Property$BoxLines,
  1583. "-khtml-box-ordinal-group"?: Property$BoxOrdinalGroup,
  1584. "-khtml-box-orient"?: Property$BoxOrient,
  1585. "-khtml-box-pack"?: Property$BoxPack,
  1586. "-khtml-line-break"?: Property$LineBreak,
  1587. "-khtml-opacity"?: Property$Opacity,
  1588. "-khtml-user-select"?: Property$UserSelect,
  1589. "-moz-background-clip"?: Property$BackgroundClip,
  1590. "-moz-background-inline-policy"?: Property$BoxDecorationBreak,
  1591. "-moz-background-origin"?: Property$BackgroundOrigin,
  1592. "-moz-background-size"?: Property$BackgroundSize<TLength>,
  1593. "-moz-border-radius"?: Property$BorderRadius<TLength>,
  1594. "-moz-border-radius-bottomleft"?: Property$BorderBottomLeftRadius<TLength>,
  1595. "-moz-border-radius-bottomright"?: Property$BorderBottomRightRadius<TLength>,
  1596. "-moz-border-radius-topleft"?: Property$BorderTopLeftRadius<TLength>,
  1597. "-moz-border-radius-topright"?: Property$BorderTopRightRadius<TLength>,
  1598. "-moz-box-align"?: Property$BoxAlign,
  1599. "-moz-box-direction"?: Property$BoxDirection,
  1600. "-moz-box-flex"?: Property$BoxFlex,
  1601. "-moz-box-ordinal-group"?: Property$BoxOrdinalGroup,
  1602. "-moz-box-orient"?: Property$BoxOrient,
  1603. "-moz-box-pack"?: Property$BoxPack,
  1604. "-moz-box-shadow"?: Property$BoxShadow,
  1605. "-moz-float-edge"?: Property$MozFloatEdge,
  1606. "-moz-force-broken-image-icon"?: Property$MozForceBrokenImageIcon,
  1607. "-moz-opacity"?: Property$Opacity,
  1608. "-moz-outline"?: Property$Outline<TLength>,
  1609. "-moz-outline-color"?: Property$OutlineColor,
  1610. "-moz-outline-radius"?: Property$MozOutlineRadius<TLength>,
  1611. "-moz-outline-radius-bottomleft"?: Property$MozOutlineRadiusBottomleft<TLength>,
  1612. "-moz-outline-radius-bottomright"?: Property$MozOutlineRadiusBottomright<TLength>,
  1613. "-moz-outline-radius-topleft"?: Property$MozOutlineRadiusTopleft<TLength>,
  1614. "-moz-outline-radius-topright"?: Property$MozOutlineRadiusTopright<TLength>,
  1615. "-moz-outline-style"?: Property$OutlineStyle,
  1616. "-moz-outline-width"?: Property$OutlineWidth<TLength>,
  1617. "-moz-text-align-last"?: Property$TextAlignLast,
  1618. "-moz-text-decoration-color"?: Property$TextDecorationColor,
  1619. "-moz-text-decoration-line"?: Property$TextDecorationLine,
  1620. "-moz-text-decoration-style"?: Property$TextDecorationStyle,
  1621. "-moz-user-input"?: Property$MozUserInput,
  1622. "-ms-ime-mode"?: Property$ImeMode,
  1623. "-o-animation"?: Property$Animation<TTime>,
  1624. "-o-animation-delay"?: Property$AnimationDelay<TTime>,
  1625. "-o-animation-direction"?: Property$AnimationDirection,
  1626. "-o-animation-duration"?: Property$AnimationDuration<TTime>,
  1627. "-o-animation-fill-mode"?: Property$AnimationFillMode,
  1628. "-o-animation-iteration-count"?: Property$AnimationIterationCount,
  1629. "-o-animation-name"?: Property$AnimationName,
  1630. "-o-animation-play-state"?: Property$AnimationPlayState,
  1631. "-o-animation-timing-function"?: Property$AnimationTimingFunction,
  1632. "-o-background-size"?: Property$BackgroundSize<TLength>,
  1633. "-o-border-image"?: Property$BorderImage,
  1634. "-o-object-fit"?: Property$ObjectFit,
  1635. "-o-object-position"?: Property$ObjectPosition<TLength>,
  1636. "-o-tab-size"?: Property$TabSize<TLength>,
  1637. "-o-text-overflow"?: Property$TextOverflow,
  1638. "-o-transform"?: Property$Transform,
  1639. "-o-transform-origin"?: Property$TransformOrigin<TLength>,
  1640. "-o-transition"?: Property$Transition<TTime>,
  1641. "-o-transition-delay"?: Property$TransitionDelay<TTime>,
  1642. "-o-transition-duration"?: Property$TransitionDuration<TTime>,
  1643. "-o-transition-property"?: Property$TransitionProperty,
  1644. "-o-transition-timing-function"?: Property$TransitionTimingFunction,
  1645. "-webkit-box-align"?: Property$BoxAlign,
  1646. "-webkit-box-direction"?: Property$BoxDirection,
  1647. "-webkit-box-flex"?: Property$BoxFlex,
  1648. "-webkit-box-flex-group"?: Property$BoxFlexGroup,
  1649. "-webkit-box-lines"?: Property$BoxLines,
  1650. "-webkit-box-ordinal-group"?: Property$BoxOrdinalGroup,
  1651. "-webkit-box-orient"?: Property$BoxOrient,
  1652. "-webkit-box-pack"?: Property$BoxPack,
  1653. "-webkit-scroll-snap-points-x"?: Property$ScrollSnapPointsX,
  1654. "-webkit-scroll-snap-points-y"?: Property$ScrollSnapPointsY,
  1655. |};
  1656. export type SvgPropertiesHyphen<TLength = string | 0, TTime = string> = {|
  1657. "alignment-baseline"?: Property$AlignmentBaseline,
  1658. "baseline-shift"?: Property$BaselineShift<TLength>,
  1659. clip?: Property$Clip,
  1660. "clip-path"?: Property$ClipPath,
  1661. "clip-rule"?: Property$ClipRule,
  1662. color?: Property$Color,
  1663. "color-interpolation"?: Property$ColorInterpolation,
  1664. "color-rendering"?: Property$ColorRendering,
  1665. cursor?: Property$Cursor,
  1666. direction?: Property$Direction,
  1667. display?: Property$Display,
  1668. "dominant-baseline"?: Property$DominantBaseline,
  1669. fill?: Property$Fill,
  1670. "fill-opacity"?: Property$FillOpacity,
  1671. "fill-rule"?: Property$FillRule,
  1672. filter?: Property$Filter,
  1673. "flood-color"?: Property$FloodColor,
  1674. "flood-opacity"?: Property$FloodOpacity,
  1675. font?: Property$Font,
  1676. "font-family"?: Property$FontFamily,
  1677. "font-size"?: Property$FontSize<TLength>,
  1678. "font-size-adjust"?: Property$FontSizeAdjust,
  1679. "font-stretch"?: Property$FontStretch,
  1680. "font-style"?: Property$FontStyle,
  1681. "font-variant"?: Property$FontVariant,
  1682. "font-weight"?: Property$FontWeight,
  1683. "glyph-orientation-vertical"?: Property$GlyphOrientationVertical,
  1684. "image-rendering"?: Property$ImageRendering,
  1685. "letter-spacing"?: Property$LetterSpacing<TLength>,
  1686. "lighting-color"?: Property$LightingColor,
  1687. "line-height"?: Property$LineHeight<TLength>,
  1688. marker?: Property$Marker,
  1689. "marker-end"?: Property$MarkerEnd,
  1690. "marker-mid"?: Property$MarkerMid,
  1691. "marker-start"?: Property$MarkerStart,
  1692. mask?: Property$Mask<TLength>,
  1693. opacity?: Property$Opacity,
  1694. overflow?: Property$Overflow,
  1695. "paint-order"?: Property$PaintOrder,
  1696. "pointer-events"?: Property$PointerEvents,
  1697. "shape-rendering"?: Property$ShapeRendering,
  1698. "stop-color"?: Property$StopColor,
  1699. "stop-opacity"?: Property$StopOpacity,
  1700. stroke?: Property$Stroke,
  1701. "stroke-dasharray"?: Property$StrokeDasharray<TLength>,
  1702. "stroke-dashoffset"?: Property$StrokeDashoffset<TLength>,
  1703. "stroke-linecap"?: Property$StrokeLinecap,
  1704. "stroke-linejoin"?: Property$StrokeLinejoin,
  1705. "stroke-miterlimit"?: Property$StrokeMiterlimit,
  1706. "stroke-opacity"?: Property$StrokeOpacity,
  1707. "stroke-width"?: Property$StrokeWidth<TLength>,
  1708. "text-anchor"?: Property$TextAnchor,
  1709. "text-decoration"?: Property$TextDecoration<TLength>,
  1710. "text-rendering"?: Property$TextRendering,
  1711. "unicode-bidi"?: Property$UnicodeBidi,
  1712. "vector-effect"?: Property$VectorEffect,
  1713. visibility?: Property$Visibility,
  1714. "white-space"?: Property$WhiteSpace,
  1715. "word-spacing"?: Property$WordSpacing<TLength>,
  1716. "writing-mode"?: Property$WritingMode,
  1717. |};
  1718. export type PropertiesHyphen<TLength = string | 0, TTime = string> = {|
  1719. ...StandardPropertiesHyphen<TLength, TTime>,
  1720. ...VendorPropertiesHyphen<TLength, TTime>,
  1721. ...ObsoletePropertiesHyphen<TLength, TTime>,
  1722. ...SvgPropertiesHyphen<TLength, TTime>,
  1723. |};
  1724. export type StandardLonghandPropertiesFallback<TLength = string | 0, TTime = string> = {|
  1725. accentColor?: Property$AccentColor | Array<Property$AccentColor>,
  1726. alignContent?: Property$AlignContent | Array<Property$AlignContent>,
  1727. alignItems?: Property$AlignItems | Array<Property$AlignItems>,
  1728. alignSelf?: Property$AlignSelf | Array<Property$AlignSelf>,
  1729. alignTracks?: Property$AlignTracks | Array<Property$AlignTracks>,
  1730. animationComposition?: Property$AnimationComposition | Array<Property$AnimationComposition>,
  1731. animationDelay?: Property$AnimationDelay<TTime> | Array<Property$AnimationDelay<TTime>>,
  1732. animationDirection?: Property$AnimationDirection | Array<Property$AnimationDirection>,
  1733. animationDuration?: Property$AnimationDuration<TTime> | Array<Property$AnimationDuration<TTime>>,
  1734. animationFillMode?: Property$AnimationFillMode | Array<Property$AnimationFillMode>,
  1735. animationIterationCount?: Property$AnimationIterationCount | Array<Property$AnimationIterationCount>,
  1736. animationName?: Property$AnimationName | Array<Property$AnimationName>,
  1737. animationPlayState?: Property$AnimationPlayState | Array<Property$AnimationPlayState>,
  1738. animationTimeline?: Property$AnimationTimeline | Array<Property$AnimationTimeline>,
  1739. animationTimingFunction?: Property$AnimationTimingFunction | Array<Property$AnimationTimingFunction>,
  1740. appearance?: Property$Appearance | Array<Property$Appearance>,
  1741. aspectRatio?: Property$AspectRatio | Array<Property$AspectRatio>,
  1742. backdropFilter?: Property$BackdropFilter | Array<Property$BackdropFilter>,
  1743. backfaceVisibility?: Property$BackfaceVisibility | Array<Property$BackfaceVisibility>,
  1744. backgroundAttachment?: Property$BackgroundAttachment | Array<Property$BackgroundAttachment>,
  1745. backgroundBlendMode?: Property$BackgroundBlendMode | Array<Property$BackgroundBlendMode>,
  1746. backgroundClip?: Property$BackgroundClip | Array<Property$BackgroundClip>,
  1747. backgroundColor?: Property$BackgroundColor | Array<Property$BackgroundColor>,
  1748. backgroundImage?: Property$BackgroundImage | Array<Property$BackgroundImage>,
  1749. backgroundOrigin?: Property$BackgroundOrigin | Array<Property$BackgroundOrigin>,
  1750. backgroundPositionX?: Property$BackgroundPositionX<TLength> | Array<Property$BackgroundPositionX<TLength>>,
  1751. backgroundPositionY?: Property$BackgroundPositionY<TLength> | Array<Property$BackgroundPositionY<TLength>>,
  1752. backgroundRepeat?: Property$BackgroundRepeat | Array<Property$BackgroundRepeat>,
  1753. backgroundSize?: Property$BackgroundSize<TLength> | Array<Property$BackgroundSize<TLength>>,
  1754. blockOverflow?: Property$BlockOverflow | Array<Property$BlockOverflow>,
  1755. blockSize?: Property$BlockSize<TLength> | Array<Property$BlockSize<TLength>>,
  1756. borderBlockColor?: Property$BorderBlockColor | Array<Property$BorderBlockColor>,
  1757. borderBlockEndColor?: Property$BorderBlockEndColor | Array<Property$BorderBlockEndColor>,
  1758. borderBlockEndStyle?: Property$BorderBlockEndStyle | Array<Property$BorderBlockEndStyle>,
  1759. borderBlockEndWidth?: Property$BorderBlockEndWidth<TLength> | Array<Property$BorderBlockEndWidth<TLength>>,
  1760. borderBlockStartColor?: Property$BorderBlockStartColor | Array<Property$BorderBlockStartColor>,
  1761. borderBlockStartStyle?: Property$BorderBlockStartStyle | Array<Property$BorderBlockStartStyle>,
  1762. borderBlockStartWidth?: Property$BorderBlockStartWidth<TLength> | Array<Property$BorderBlockStartWidth<TLength>>,
  1763. borderBlockStyle?: Property$BorderBlockStyle | Array<Property$BorderBlockStyle>,
  1764. borderBlockWidth?: Property$BorderBlockWidth<TLength> | Array<Property$BorderBlockWidth<TLength>>,
  1765. borderBottomColor?: Property$BorderBottomColor | Array<Property$BorderBottomColor>,
  1766. borderBottomLeftRadius?: Property$BorderBottomLeftRadius<TLength> | Array<Property$BorderBottomLeftRadius<TLength>>,
  1767. borderBottomRightRadius?: Property$BorderBottomRightRadius<TLength> | Array<Property$BorderBottomRightRadius<TLength>>,
  1768. borderBottomStyle?: Property$BorderBottomStyle | Array<Property$BorderBottomStyle>,
  1769. borderBottomWidth?: Property$BorderBottomWidth<TLength> | Array<Property$BorderBottomWidth<TLength>>,
  1770. borderCollapse?: Property$BorderCollapse | Array<Property$BorderCollapse>,
  1771. borderEndEndRadius?: Property$BorderEndEndRadius<TLength> | Array<Property$BorderEndEndRadius<TLength>>,
  1772. borderEndStartRadius?: Property$BorderEndStartRadius<TLength> | Array<Property$BorderEndStartRadius<TLength>>,
  1773. borderImageOutset?: Property$BorderImageOutset<TLength> | Array<Property$BorderImageOutset<TLength>>,
  1774. borderImageRepeat?: Property$BorderImageRepeat | Array<Property$BorderImageRepeat>,
  1775. borderImageSlice?: Property$BorderImageSlice | Array<Property$BorderImageSlice>,
  1776. borderImageSource?: Property$BorderImageSource | Array<Property$BorderImageSource>,
  1777. borderImageWidth?: Property$BorderImageWidth<TLength> | Array<Property$BorderImageWidth<TLength>>,
  1778. borderInlineColor?: Property$BorderInlineColor | Array<Property$BorderInlineColor>,
  1779. borderInlineEndColor?: Property$BorderInlineEndColor | Array<Property$BorderInlineEndColor>,
  1780. borderInlineEndStyle?: Property$BorderInlineEndStyle | Array<Property$BorderInlineEndStyle>,
  1781. borderInlineEndWidth?: Property$BorderInlineEndWidth<TLength> | Array<Property$BorderInlineEndWidth<TLength>>,
  1782. borderInlineStartColor?: Property$BorderInlineStartColor | Array<Property$BorderInlineStartColor>,
  1783. borderInlineStartStyle?: Property$BorderInlineStartStyle | Array<Property$BorderInlineStartStyle>,
  1784. borderInlineStartWidth?: Property$BorderInlineStartWidth<TLength> | Array<Property$BorderInlineStartWidth<TLength>>,
  1785. borderInlineStyle?: Property$BorderInlineStyle | Array<Property$BorderInlineStyle>,
  1786. borderInlineWidth?: Property$BorderInlineWidth<TLength> | Array<Property$BorderInlineWidth<TLength>>,
  1787. borderLeftColor?: Property$BorderLeftColor | Array<Property$BorderLeftColor>,
  1788. borderLeftStyle?: Property$BorderLeftStyle | Array<Property$BorderLeftStyle>,
  1789. borderLeftWidth?: Property$BorderLeftWidth<TLength> | Array<Property$BorderLeftWidth<TLength>>,
  1790. borderRightColor?: Property$BorderRightColor | Array<Property$BorderRightColor>,
  1791. borderRightStyle?: Property$BorderRightStyle | Array<Property$BorderRightStyle>,
  1792. borderRightWidth?: Property$BorderRightWidth<TLength> | Array<Property$BorderRightWidth<TLength>>,
  1793. borderSpacing?: Property$BorderSpacing<TLength> | Array<Property$BorderSpacing<TLength>>,
  1794. borderStartEndRadius?: Property$BorderStartEndRadius<TLength> | Array<Property$BorderStartEndRadius<TLength>>,
  1795. borderStartStartRadius?: Property$BorderStartStartRadius<TLength> | Array<Property$BorderStartStartRadius<TLength>>,
  1796. borderTopColor?: Property$BorderTopColor | Array<Property$BorderTopColor>,
  1797. borderTopLeftRadius?: Property$BorderTopLeftRadius<TLength> | Array<Property$BorderTopLeftRadius<TLength>>,
  1798. borderTopRightRadius?: Property$BorderTopRightRadius<TLength> | Array<Property$BorderTopRightRadius<TLength>>,
  1799. borderTopStyle?: Property$BorderTopStyle | Array<Property$BorderTopStyle>,
  1800. borderTopWidth?: Property$BorderTopWidth<TLength> | Array<Property$BorderTopWidth<TLength>>,
  1801. bottom?: Property$Bottom<TLength> | Array<Property$Bottom<TLength>>,
  1802. boxDecorationBreak?: Property$BoxDecorationBreak | Array<Property$BoxDecorationBreak>,
  1803. boxShadow?: Property$BoxShadow | Array<Property$BoxShadow>,
  1804. boxSizing?: Property$BoxSizing | Array<Property$BoxSizing>,
  1805. breakAfter?: Property$BreakAfter | Array<Property$BreakAfter>,
  1806. breakBefore?: Property$BreakBefore | Array<Property$BreakBefore>,
  1807. breakInside?: Property$BreakInside | Array<Property$BreakInside>,
  1808. captionSide?: Property$CaptionSide | Array<Property$CaptionSide>,
  1809. caretColor?: Property$CaretColor | Array<Property$CaretColor>,
  1810. caretShape?: Property$CaretShape | Array<Property$CaretShape>,
  1811. clear?: Property$Clear | Array<Property$Clear>,
  1812. clipPath?: Property$ClipPath | Array<Property$ClipPath>,
  1813. color?: Property$Color | Array<Property$Color>,
  1814. colorAdjust?: Property$PrintColorAdjust | Array<Property$PrintColorAdjust>,
  1815. colorScheme?: Property$ColorScheme | Array<Property$ColorScheme>,
  1816. columnCount?: Property$ColumnCount | Array<Property$ColumnCount>,
  1817. columnFill?: Property$ColumnFill | Array<Property$ColumnFill>,
  1818. columnGap?: Property$ColumnGap<TLength> | Array<Property$ColumnGap<TLength>>,
  1819. columnRuleColor?: Property$ColumnRuleColor | Array<Property$ColumnRuleColor>,
  1820. columnRuleStyle?: Property$ColumnRuleStyle | Array<Property$ColumnRuleStyle>,
  1821. columnRuleWidth?: Property$ColumnRuleWidth<TLength> | Array<Property$ColumnRuleWidth<TLength>>,
  1822. columnSpan?: Property$ColumnSpan | Array<Property$ColumnSpan>,
  1823. columnWidth?: Property$ColumnWidth<TLength> | Array<Property$ColumnWidth<TLength>>,
  1824. contain?: Property$Contain | Array<Property$Contain>,
  1825. containIntrinsicBlockSize?: Property$ContainIntrinsicBlockSize<TLength> | Array<Property$ContainIntrinsicBlockSize<TLength>>,
  1826. containIntrinsicHeight?: Property$ContainIntrinsicHeight<TLength> | Array<Property$ContainIntrinsicHeight<TLength>>,
  1827. containIntrinsicInlineSize?: Property$ContainIntrinsicInlineSize<TLength> | Array<Property$ContainIntrinsicInlineSize<TLength>>,
  1828. containIntrinsicWidth?: Property$ContainIntrinsicWidth<TLength> | Array<Property$ContainIntrinsicWidth<TLength>>,
  1829. containerName?: Property$ContainerName | Array<Property$ContainerName>,
  1830. containerType?: Property$ContainerType | Array<Property$ContainerType>,
  1831. content?: Property$Content | Array<Property$Content>,
  1832. contentVisibility?: Property$ContentVisibility | Array<Property$ContentVisibility>,
  1833. counterIncrement?: Property$CounterIncrement | Array<Property$CounterIncrement>,
  1834. counterReset?: Property$CounterReset | Array<Property$CounterReset>,
  1835. counterSet?: Property$CounterSet | Array<Property$CounterSet>,
  1836. cursor?: Property$Cursor | Array<Property$Cursor>,
  1837. direction?: Property$Direction | Array<Property$Direction>,
  1838. display?: Property$Display | Array<Property$Display>,
  1839. emptyCells?: Property$EmptyCells | Array<Property$EmptyCells>,
  1840. filter?: Property$Filter | Array<Property$Filter>,
  1841. flexBasis?: Property$FlexBasis<TLength> | Array<Property$FlexBasis<TLength>>,
  1842. flexDirection?: Property$FlexDirection | Array<Property$FlexDirection>,
  1843. flexGrow?: Property$FlexGrow | Array<Property$FlexGrow>,
  1844. flexShrink?: Property$FlexShrink | Array<Property$FlexShrink>,
  1845. flexWrap?: Property$FlexWrap | Array<Property$FlexWrap>,
  1846. float?: Property$Float | Array<Property$Float>,
  1847. fontFamily?: Property$FontFamily | Array<Property$FontFamily>,
  1848. fontFeatureSettings?: Property$FontFeatureSettings | Array<Property$FontFeatureSettings>,
  1849. fontKerning?: Property$FontKerning | Array<Property$FontKerning>,
  1850. fontLanguageOverride?: Property$FontLanguageOverride | Array<Property$FontLanguageOverride>,
  1851. fontOpticalSizing?: Property$FontOpticalSizing | Array<Property$FontOpticalSizing>,
  1852. fontPalette?: Property$FontPalette | Array<Property$FontPalette>,
  1853. fontSize?: Property$FontSize<TLength> | Array<Property$FontSize<TLength>>,
  1854. fontSizeAdjust?: Property$FontSizeAdjust | Array<Property$FontSizeAdjust>,
  1855. fontSmooth?: Property$FontSmooth<TLength> | Array<Property$FontSmooth<TLength>>,
  1856. fontStretch?: Property$FontStretch | Array<Property$FontStretch>,
  1857. fontStyle?: Property$FontStyle | Array<Property$FontStyle>,
  1858. fontSynthesis?: Property$FontSynthesis | Array<Property$FontSynthesis>,
  1859. fontVariant?: Property$FontVariant | Array<Property$FontVariant>,
  1860. fontVariantAlternates?: Property$FontVariantAlternates | Array<Property$FontVariantAlternates>,
  1861. fontVariantCaps?: Property$FontVariantCaps | Array<Property$FontVariantCaps>,
  1862. fontVariantEastAsian?: Property$FontVariantEastAsian | Array<Property$FontVariantEastAsian>,
  1863. fontVariantEmoji?: Property$FontVariantEmoji | Array<Property$FontVariantEmoji>,
  1864. fontVariantLigatures?: Property$FontVariantLigatures | Array<Property$FontVariantLigatures>,
  1865. fontVariantNumeric?: Property$FontVariantNumeric | Array<Property$FontVariantNumeric>,
  1866. fontVariantPosition?: Property$FontVariantPosition | Array<Property$FontVariantPosition>,
  1867. fontVariationSettings?: Property$FontVariationSettings | Array<Property$FontVariationSettings>,
  1868. fontWeight?: Property$FontWeight | Array<Property$FontWeight>,
  1869. forcedColorAdjust?: Property$ForcedColorAdjust | Array<Property$ForcedColorAdjust>,
  1870. gridAutoColumns?: Property$GridAutoColumns<TLength> | Array<Property$GridAutoColumns<TLength>>,
  1871. gridAutoFlow?: Property$GridAutoFlow | Array<Property$GridAutoFlow>,
  1872. gridAutoRows?: Property$GridAutoRows<TLength> | Array<Property$GridAutoRows<TLength>>,
  1873. gridColumnEnd?: Property$GridColumnEnd | Array<Property$GridColumnEnd>,
  1874. gridColumnStart?: Property$GridColumnStart | Array<Property$GridColumnStart>,
  1875. gridRowEnd?: Property$GridRowEnd | Array<Property$GridRowEnd>,
  1876. gridRowStart?: Property$GridRowStart | Array<Property$GridRowStart>,
  1877. gridTemplateAreas?: Property$GridTemplateAreas | Array<Property$GridTemplateAreas>,
  1878. gridTemplateColumns?: Property$GridTemplateColumns<TLength> | Array<Property$GridTemplateColumns<TLength>>,
  1879. gridTemplateRows?: Property$GridTemplateRows<TLength> | Array<Property$GridTemplateRows<TLength>>,
  1880. hangingPunctuation?: Property$HangingPunctuation | Array<Property$HangingPunctuation>,
  1881. height?: Property$Height<TLength> | Array<Property$Height<TLength>>,
  1882. hyphenateCharacter?: Property$HyphenateCharacter | Array<Property$HyphenateCharacter>,
  1883. hyphenateLimitChars?: Property$HyphenateLimitChars | Array<Property$HyphenateLimitChars>,
  1884. hyphens?: Property$Hyphens | Array<Property$Hyphens>,
  1885. imageOrientation?: Property$ImageOrientation | Array<Property$ImageOrientation>,
  1886. imageRendering?: Property$ImageRendering | Array<Property$ImageRendering>,
  1887. imageResolution?: Property$ImageResolution | Array<Property$ImageResolution>,
  1888. initialLetter?: Property$InitialLetter | Array<Property$InitialLetter>,
  1889. inlineSize?: Property$InlineSize<TLength> | Array<Property$InlineSize<TLength>>,
  1890. inputSecurity?: Property$InputSecurity | Array<Property$InputSecurity>,
  1891. insetBlockEnd?: Property$InsetBlockEnd<TLength> | Array<Property$InsetBlockEnd<TLength>>,
  1892. insetBlockStart?: Property$InsetBlockStart<TLength> | Array<Property$InsetBlockStart<TLength>>,
  1893. insetInlineEnd?: Property$InsetInlineEnd<TLength> | Array<Property$InsetInlineEnd<TLength>>,
  1894. insetInlineStart?: Property$InsetInlineStart<TLength> | Array<Property$InsetInlineStart<TLength>>,
  1895. isolation?: Property$Isolation | Array<Property$Isolation>,
  1896. justifyContent?: Property$JustifyContent | Array<Property$JustifyContent>,
  1897. justifyItems?: Property$JustifyItems | Array<Property$JustifyItems>,
  1898. justifySelf?: Property$JustifySelf | Array<Property$JustifySelf>,
  1899. justifyTracks?: Property$JustifyTracks | Array<Property$JustifyTracks>,
  1900. left?: Property$Left<TLength> | Array<Property$Left<TLength>>,
  1901. letterSpacing?: Property$LetterSpacing<TLength> | Array<Property$LetterSpacing<TLength>>,
  1902. lineBreak?: Property$LineBreak | Array<Property$LineBreak>,
  1903. lineHeight?: Property$LineHeight<TLength> | Array<Property$LineHeight<TLength>>,
  1904. lineHeightStep?: Property$LineHeightStep<TLength> | Array<Property$LineHeightStep<TLength>>,
  1905. listStyleImage?: Property$ListStyleImage | Array<Property$ListStyleImage>,
  1906. listStylePosition?: Property$ListStylePosition | Array<Property$ListStylePosition>,
  1907. listStyleType?: Property$ListStyleType | Array<Property$ListStyleType>,
  1908. marginBlockEnd?: Property$MarginBlockEnd<TLength> | Array<Property$MarginBlockEnd<TLength>>,
  1909. marginBlockStart?: Property$MarginBlockStart<TLength> | Array<Property$MarginBlockStart<TLength>>,
  1910. marginBottom?: Property$MarginBottom<TLength> | Array<Property$MarginBottom<TLength>>,
  1911. marginInlineEnd?: Property$MarginInlineEnd<TLength> | Array<Property$MarginInlineEnd<TLength>>,
  1912. marginInlineStart?: Property$MarginInlineStart<TLength> | Array<Property$MarginInlineStart<TLength>>,
  1913. marginLeft?: Property$MarginLeft<TLength> | Array<Property$MarginLeft<TLength>>,
  1914. marginRight?: Property$MarginRight<TLength> | Array<Property$MarginRight<TLength>>,
  1915. marginTop?: Property$MarginTop<TLength> | Array<Property$MarginTop<TLength>>,
  1916. marginTrim?: Property$MarginTrim | Array<Property$MarginTrim>,
  1917. maskBorderMode?: Property$MaskBorderMode | Array<Property$MaskBorderMode>,
  1918. maskBorderOutset?: Property$MaskBorderOutset<TLength> | Array<Property$MaskBorderOutset<TLength>>,
  1919. maskBorderRepeat?: Property$MaskBorderRepeat | Array<Property$MaskBorderRepeat>,
  1920. maskBorderSlice?: Property$MaskBorderSlice | Array<Property$MaskBorderSlice>,
  1921. maskBorderSource?: Property$MaskBorderSource | Array<Property$MaskBorderSource>,
  1922. maskBorderWidth?: Property$MaskBorderWidth<TLength> | Array<Property$MaskBorderWidth<TLength>>,
  1923. maskClip?: Property$MaskClip | Array<Property$MaskClip>,
  1924. maskComposite?: Property$MaskComposite | Array<Property$MaskComposite>,
  1925. maskImage?: Property$MaskImage | Array<Property$MaskImage>,
  1926. maskMode?: Property$MaskMode | Array<Property$MaskMode>,
  1927. maskOrigin?: Property$MaskOrigin | Array<Property$MaskOrigin>,
  1928. maskPosition?: Property$MaskPosition<TLength> | Array<Property$MaskPosition<TLength>>,
  1929. maskRepeat?: Property$MaskRepeat | Array<Property$MaskRepeat>,
  1930. maskSize?: Property$MaskSize<TLength> | Array<Property$MaskSize<TLength>>,
  1931. maskType?: Property$MaskType | Array<Property$MaskType>,
  1932. mathDepth?: Property$MathDepth | Array<Property$MathDepth>,
  1933. mathShift?: Property$MathShift | Array<Property$MathShift>,
  1934. mathStyle?: Property$MathStyle | Array<Property$MathStyle>,
  1935. maxBlockSize?: Property$MaxBlockSize<TLength> | Array<Property$MaxBlockSize<TLength>>,
  1936. maxHeight?: Property$MaxHeight<TLength> | Array<Property$MaxHeight<TLength>>,
  1937. maxInlineSize?: Property$MaxInlineSize<TLength> | Array<Property$MaxInlineSize<TLength>>,
  1938. maxLines?: Property$MaxLines | Array<Property$MaxLines>,
  1939. maxWidth?: Property$MaxWidth<TLength> | Array<Property$MaxWidth<TLength>>,
  1940. minBlockSize?: Property$MinBlockSize<TLength> | Array<Property$MinBlockSize<TLength>>,
  1941. minHeight?: Property$MinHeight<TLength> | Array<Property$MinHeight<TLength>>,
  1942. minInlineSize?: Property$MinInlineSize<TLength> | Array<Property$MinInlineSize<TLength>>,
  1943. minWidth?: Property$MinWidth<TLength> | Array<Property$MinWidth<TLength>>,
  1944. mixBlendMode?: Property$MixBlendMode | Array<Property$MixBlendMode>,
  1945. motionDistance?: Property$OffsetDistance<TLength> | Array<Property$OffsetDistance<TLength>>,
  1946. motionPath?: Property$OffsetPath | Array<Property$OffsetPath>,
  1947. motionRotation?: Property$OffsetRotate | Array<Property$OffsetRotate>,
  1948. objectFit?: Property$ObjectFit | Array<Property$ObjectFit>,
  1949. objectPosition?: Property$ObjectPosition<TLength> | Array<Property$ObjectPosition<TLength>>,
  1950. offsetAnchor?: Property$OffsetAnchor<TLength> | Array<Property$OffsetAnchor<TLength>>,
  1951. offsetDistance?: Property$OffsetDistance<TLength> | Array<Property$OffsetDistance<TLength>>,
  1952. offsetPath?: Property$OffsetPath | Array<Property$OffsetPath>,
  1953. offsetPosition?: Property$OffsetPosition<TLength> | Array<Property$OffsetPosition<TLength>>,
  1954. offsetRotate?: Property$OffsetRotate | Array<Property$OffsetRotate>,
  1955. offsetRotation?: Property$OffsetRotate | Array<Property$OffsetRotate>,
  1956. opacity?: Property$Opacity | Array<Property$Opacity>,
  1957. order?: Property$Order | Array<Property$Order>,
  1958. orphans?: Property$Orphans | Array<Property$Orphans>,
  1959. outlineColor?: Property$OutlineColor | Array<Property$OutlineColor>,
  1960. outlineOffset?: Property$OutlineOffset<TLength> | Array<Property$OutlineOffset<TLength>>,
  1961. outlineStyle?: Property$OutlineStyle | Array<Property$OutlineStyle>,
  1962. outlineWidth?: Property$OutlineWidth<TLength> | Array<Property$OutlineWidth<TLength>>,
  1963. overflowAnchor?: Property$OverflowAnchor | Array<Property$OverflowAnchor>,
  1964. overflowBlock?: Property$OverflowBlock | Array<Property$OverflowBlock>,
  1965. overflowClipBox?: Property$OverflowClipBox | Array<Property$OverflowClipBox>,
  1966. overflowClipMargin?: Property$OverflowClipMargin<TLength> | Array<Property$OverflowClipMargin<TLength>>,
  1967. overflowInline?: Property$OverflowInline | Array<Property$OverflowInline>,
  1968. overflowWrap?: Property$OverflowWrap | Array<Property$OverflowWrap>,
  1969. overflowX?: Property$OverflowX | Array<Property$OverflowX>,
  1970. overflowY?: Property$OverflowY | Array<Property$OverflowY>,
  1971. overscrollBehaviorBlock?: Property$OverscrollBehaviorBlock | Array<Property$OverscrollBehaviorBlock>,
  1972. overscrollBehaviorInline?: Property$OverscrollBehaviorInline | Array<Property$OverscrollBehaviorInline>,
  1973. overscrollBehaviorX?: Property$OverscrollBehaviorX | Array<Property$OverscrollBehaviorX>,
  1974. overscrollBehaviorY?: Property$OverscrollBehaviorY | Array<Property$OverscrollBehaviorY>,
  1975. paddingBlockEnd?: Property$PaddingBlockEnd<TLength> | Array<Property$PaddingBlockEnd<TLength>>,
  1976. paddingBlockStart?: Property$PaddingBlockStart<TLength> | Array<Property$PaddingBlockStart<TLength>>,
  1977. paddingBottom?: Property$PaddingBottom<TLength> | Array<Property$PaddingBottom<TLength>>,
  1978. paddingInlineEnd?: Property$PaddingInlineEnd<TLength> | Array<Property$PaddingInlineEnd<TLength>>,
  1979. paddingInlineStart?: Property$PaddingInlineStart<TLength> | Array<Property$PaddingInlineStart<TLength>>,
  1980. paddingLeft?: Property$PaddingLeft<TLength> | Array<Property$PaddingLeft<TLength>>,
  1981. paddingRight?: Property$PaddingRight<TLength> | Array<Property$PaddingRight<TLength>>,
  1982. paddingTop?: Property$PaddingTop<TLength> | Array<Property$PaddingTop<TLength>>,
  1983. page?: Property$Page | Array<Property$Page>,
  1984. pageBreakAfter?: Property$PageBreakAfter | Array<Property$PageBreakAfter>,
  1985. pageBreakBefore?: Property$PageBreakBefore | Array<Property$PageBreakBefore>,
  1986. pageBreakInside?: Property$PageBreakInside | Array<Property$PageBreakInside>,
  1987. paintOrder?: Property$PaintOrder | Array<Property$PaintOrder>,
  1988. perspective?: Property$Perspective<TLength> | Array<Property$Perspective<TLength>>,
  1989. perspectiveOrigin?: Property$PerspectiveOrigin<TLength> | Array<Property$PerspectiveOrigin<TLength>>,
  1990. pointerEvents?: Property$PointerEvents | Array<Property$PointerEvents>,
  1991. position?: Property$Position | Array<Property$Position>,
  1992. printColorAdjust?: Property$PrintColorAdjust | Array<Property$PrintColorAdjust>,
  1993. quotes?: Property$Quotes | Array<Property$Quotes>,
  1994. resize?: Property$Resize | Array<Property$Resize>,
  1995. right?: Property$Right<TLength> | Array<Property$Right<TLength>>,
  1996. rotate?: Property$Rotate | Array<Property$Rotate>,
  1997. rowGap?: Property$RowGap<TLength> | Array<Property$RowGap<TLength>>,
  1998. rubyAlign?: Property$RubyAlign | Array<Property$RubyAlign>,
  1999. rubyMerge?: Property$RubyMerge | Array<Property$RubyMerge>,
  2000. rubyPosition?: Property$RubyPosition | Array<Property$RubyPosition>,
  2001. scale?: Property$Scale | Array<Property$Scale>,
  2002. scrollBehavior?: Property$ScrollBehavior | Array<Property$ScrollBehavior>,
  2003. scrollMarginBlockEnd?: Property$ScrollMarginBlockEnd<TLength> | Array<Property$ScrollMarginBlockEnd<TLength>>,
  2004. scrollMarginBlockStart?: Property$ScrollMarginBlockStart<TLength> | Array<Property$ScrollMarginBlockStart<TLength>>,
  2005. scrollMarginBottom?: Property$ScrollMarginBottom<TLength> | Array<Property$ScrollMarginBottom<TLength>>,
  2006. scrollMarginInlineEnd?: Property$ScrollMarginInlineEnd<TLength> | Array<Property$ScrollMarginInlineEnd<TLength>>,
  2007. scrollMarginInlineStart?: Property$ScrollMarginInlineStart<TLength> | Array<Property$ScrollMarginInlineStart<TLength>>,
  2008. scrollMarginLeft?: Property$ScrollMarginLeft<TLength> | Array<Property$ScrollMarginLeft<TLength>>,
  2009. scrollMarginRight?: Property$ScrollMarginRight<TLength> | Array<Property$ScrollMarginRight<TLength>>,
  2010. scrollMarginTop?: Property$ScrollMarginTop<TLength> | Array<Property$ScrollMarginTop<TLength>>,
  2011. scrollPaddingBlockEnd?: Property$ScrollPaddingBlockEnd<TLength> | Array<Property$ScrollPaddingBlockEnd<TLength>>,
  2012. scrollPaddingBlockStart?: Property$ScrollPaddingBlockStart<TLength> | Array<Property$ScrollPaddingBlockStart<TLength>>,
  2013. scrollPaddingBottom?: Property$ScrollPaddingBottom<TLength> | Array<Property$ScrollPaddingBottom<TLength>>,
  2014. scrollPaddingInlineEnd?: Property$ScrollPaddingInlineEnd<TLength> | Array<Property$ScrollPaddingInlineEnd<TLength>>,
  2015. scrollPaddingInlineStart?: Property$ScrollPaddingInlineStart<TLength> | Array<Property$ScrollPaddingInlineStart<TLength>>,
  2016. scrollPaddingLeft?: Property$ScrollPaddingLeft<TLength> | Array<Property$ScrollPaddingLeft<TLength>>,
  2017. scrollPaddingRight?: Property$ScrollPaddingRight<TLength> | Array<Property$ScrollPaddingRight<TLength>>,
  2018. scrollPaddingTop?: Property$ScrollPaddingTop<TLength> | Array<Property$ScrollPaddingTop<TLength>>,
  2019. scrollSnapAlign?: Property$ScrollSnapAlign | Array<Property$ScrollSnapAlign>,
  2020. scrollSnapMarginBottom?: Property$ScrollMarginBottom<TLength> | Array<Property$ScrollMarginBottom<TLength>>,
  2021. scrollSnapMarginLeft?: Property$ScrollMarginLeft<TLength> | Array<Property$ScrollMarginLeft<TLength>>,
  2022. scrollSnapMarginRight?: Property$ScrollMarginRight<TLength> | Array<Property$ScrollMarginRight<TLength>>,
  2023. scrollSnapMarginTop?: Property$ScrollMarginTop<TLength> | Array<Property$ScrollMarginTop<TLength>>,
  2024. scrollSnapStop?: Property$ScrollSnapStop | Array<Property$ScrollSnapStop>,
  2025. scrollSnapType?: Property$ScrollSnapType | Array<Property$ScrollSnapType>,
  2026. scrollTimelineAxis?: Property$ScrollTimelineAxis | Array<Property$ScrollTimelineAxis>,
  2027. scrollTimelineName?: Property$ScrollTimelineName | Array<Property$ScrollTimelineName>,
  2028. scrollbarColor?: Property$ScrollbarColor | Array<Property$ScrollbarColor>,
  2029. scrollbarGutter?: Property$ScrollbarGutter | Array<Property$ScrollbarGutter>,
  2030. scrollbarWidth?: Property$ScrollbarWidth | Array<Property$ScrollbarWidth>,
  2031. shapeImageThreshold?: Property$ShapeImageThreshold | Array<Property$ShapeImageThreshold>,
  2032. shapeMargin?: Property$ShapeMargin<TLength> | Array<Property$ShapeMargin<TLength>>,
  2033. shapeOutside?: Property$ShapeOutside | Array<Property$ShapeOutside>,
  2034. tabSize?: Property$TabSize<TLength> | Array<Property$TabSize<TLength>>,
  2035. tableLayout?: Property$TableLayout | Array<Property$TableLayout>,
  2036. textAlign?: Property$TextAlign | Array<Property$TextAlign>,
  2037. textAlignLast?: Property$TextAlignLast | Array<Property$TextAlignLast>,
  2038. textCombineUpright?: Property$TextCombineUpright | Array<Property$TextCombineUpright>,
  2039. textDecorationColor?: Property$TextDecorationColor | Array<Property$TextDecorationColor>,
  2040. textDecorationLine?: Property$TextDecorationLine | Array<Property$TextDecorationLine>,
  2041. textDecorationSkip?: Property$TextDecorationSkip | Array<Property$TextDecorationSkip>,
  2042. textDecorationSkipInk?: Property$TextDecorationSkipInk | Array<Property$TextDecorationSkipInk>,
  2043. textDecorationStyle?: Property$TextDecorationStyle | Array<Property$TextDecorationStyle>,
  2044. textDecorationThickness?: Property$TextDecorationThickness<TLength> | Array<Property$TextDecorationThickness<TLength>>,
  2045. textEmphasisColor?: Property$TextEmphasisColor | Array<Property$TextEmphasisColor>,
  2046. textEmphasisPosition?: Property$TextEmphasisPosition | Array<Property$TextEmphasisPosition>,
  2047. textEmphasisStyle?: Property$TextEmphasisStyle | Array<Property$TextEmphasisStyle>,
  2048. textIndent?: Property$TextIndent<TLength> | Array<Property$TextIndent<TLength>>,
  2049. textJustify?: Property$TextJustify | Array<Property$TextJustify>,
  2050. textOrientation?: Property$TextOrientation | Array<Property$TextOrientation>,
  2051. textOverflow?: Property$TextOverflow | Array<Property$TextOverflow>,
  2052. textRendering?: Property$TextRendering | Array<Property$TextRendering>,
  2053. textShadow?: Property$TextShadow | Array<Property$TextShadow>,
  2054. textSizeAdjust?: Property$TextSizeAdjust | Array<Property$TextSizeAdjust>,
  2055. textTransform?: Property$TextTransform | Array<Property$TextTransform>,
  2056. textUnderlineOffset?: Property$TextUnderlineOffset<TLength> | Array<Property$TextUnderlineOffset<TLength>>,
  2057. textUnderlinePosition?: Property$TextUnderlinePosition | Array<Property$TextUnderlinePosition>,
  2058. top?: Property$Top<TLength> | Array<Property$Top<TLength>>,
  2059. touchAction?: Property$TouchAction | Array<Property$TouchAction>,
  2060. transform?: Property$Transform | Array<Property$Transform>,
  2061. transformBox?: Property$TransformBox | Array<Property$TransformBox>,
  2062. transformOrigin?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  2063. transformStyle?: Property$TransformStyle | Array<Property$TransformStyle>,
  2064. transitionDelay?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  2065. transitionDuration?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  2066. transitionProperty?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  2067. transitionTimingFunction?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  2068. translate?: Property$Translate<TLength> | Array<Property$Translate<TLength>>,
  2069. unicodeBidi?: Property$UnicodeBidi | Array<Property$UnicodeBidi>,
  2070. userSelect?: Property$UserSelect | Array<Property$UserSelect>,
  2071. verticalAlign?: Property$VerticalAlign<TLength> | Array<Property$VerticalAlign<TLength>>,
  2072. viewTransitionName?: Property$ViewTransitionName | Array<Property$ViewTransitionName>,
  2073. visibility?: Property$Visibility | Array<Property$Visibility>,
  2074. whiteSpace?: Property$WhiteSpace | Array<Property$WhiteSpace>,
  2075. widows?: Property$Widows | Array<Property$Widows>,
  2076. width?: Property$Width<TLength> | Array<Property$Width<TLength>>,
  2077. willChange?: Property$WillChange | Array<Property$WillChange>,
  2078. wordBreak?: Property$WordBreak | Array<Property$WordBreak>,
  2079. wordSpacing?: Property$WordSpacing<TLength> | Array<Property$WordSpacing<TLength>>,
  2080. wordWrap?: Property$WordWrap | Array<Property$WordWrap>,
  2081. writingMode?: Property$WritingMode | Array<Property$WritingMode>,
  2082. zIndex?: Property$ZIndex | Array<Property$ZIndex>,
  2083. zoom?: Property$Zoom | Array<Property$Zoom>,
  2084. |};
  2085. export type StandardShorthandPropertiesFallback<TLength = string | 0, TTime = string> = {|
  2086. all?: Property$All | Array<Property$All>,
  2087. animation?: Property$Animation<TTime> | Array<Property$Animation<TTime>>,
  2088. background?: Property$Background<TLength> | Array<Property$Background<TLength>>,
  2089. backgroundPosition?: Property$BackgroundPosition<TLength> | Array<Property$BackgroundPosition<TLength>>,
  2090. border?: Property$Border<TLength> | Array<Property$Border<TLength>>,
  2091. borderBlock?: Property$BorderBlock<TLength> | Array<Property$BorderBlock<TLength>>,
  2092. borderBlockEnd?: Property$BorderBlockEnd<TLength> | Array<Property$BorderBlockEnd<TLength>>,
  2093. borderBlockStart?: Property$BorderBlockStart<TLength> | Array<Property$BorderBlockStart<TLength>>,
  2094. borderBottom?: Property$BorderBottom<TLength> | Array<Property$BorderBottom<TLength>>,
  2095. borderColor?: Property$BorderColor | Array<Property$BorderColor>,
  2096. borderImage?: Property$BorderImage | Array<Property$BorderImage>,
  2097. borderInline?: Property$BorderInline<TLength> | Array<Property$BorderInline<TLength>>,
  2098. borderInlineEnd?: Property$BorderInlineEnd<TLength> | Array<Property$BorderInlineEnd<TLength>>,
  2099. borderInlineStart?: Property$BorderInlineStart<TLength> | Array<Property$BorderInlineStart<TLength>>,
  2100. borderLeft?: Property$BorderLeft<TLength> | Array<Property$BorderLeft<TLength>>,
  2101. borderRadius?: Property$BorderRadius<TLength> | Array<Property$BorderRadius<TLength>>,
  2102. borderRight?: Property$BorderRight<TLength> | Array<Property$BorderRight<TLength>>,
  2103. borderStyle?: Property$BorderStyle | Array<Property$BorderStyle>,
  2104. borderTop?: Property$BorderTop<TLength> | Array<Property$BorderTop<TLength>>,
  2105. borderWidth?: Property$BorderWidth<TLength> | Array<Property$BorderWidth<TLength>>,
  2106. caret?: Property$Caret | Array<Property$Caret>,
  2107. columnRule?: Property$ColumnRule<TLength> | Array<Property$ColumnRule<TLength>>,
  2108. columns?: Property$Columns<TLength> | Array<Property$Columns<TLength>>,
  2109. containIntrinsicSize?: Property$ContainIntrinsicSize<TLength> | Array<Property$ContainIntrinsicSize<TLength>>,
  2110. container?: Property$Container | Array<Property$Container>,
  2111. flex?: Property$Flex<TLength> | Array<Property$Flex<TLength>>,
  2112. flexFlow?: Property$FlexFlow | Array<Property$FlexFlow>,
  2113. font?: Property$Font | Array<Property$Font>,
  2114. gap?: Property$Gap<TLength> | Array<Property$Gap<TLength>>,
  2115. grid?: Property$Grid | Array<Property$Grid>,
  2116. gridArea?: Property$GridArea | Array<Property$GridArea>,
  2117. gridColumn?: Property$GridColumn | Array<Property$GridColumn>,
  2118. gridRow?: Property$GridRow | Array<Property$GridRow>,
  2119. gridTemplate?: Property$GridTemplate | Array<Property$GridTemplate>,
  2120. inset?: Property$Inset<TLength> | Array<Property$Inset<TLength>>,
  2121. insetBlock?: Property$InsetBlock<TLength> | Array<Property$InsetBlock<TLength>>,
  2122. insetInline?: Property$InsetInline<TLength> | Array<Property$InsetInline<TLength>>,
  2123. lineClamp?: Property$LineClamp | Array<Property$LineClamp>,
  2124. listStyle?: Property$ListStyle | Array<Property$ListStyle>,
  2125. margin?: Property$Margin<TLength> | Array<Property$Margin<TLength>>,
  2126. marginBlock?: Property$MarginBlock<TLength> | Array<Property$MarginBlock<TLength>>,
  2127. marginInline?: Property$MarginInline<TLength> | Array<Property$MarginInline<TLength>>,
  2128. mask?: Property$Mask<TLength> | Array<Property$Mask<TLength>>,
  2129. maskBorder?: Property$MaskBorder | Array<Property$MaskBorder>,
  2130. motion?: Property$Offset<TLength> | Array<Property$Offset<TLength>>,
  2131. offset?: Property$Offset<TLength> | Array<Property$Offset<TLength>>,
  2132. outline?: Property$Outline<TLength> | Array<Property$Outline<TLength>>,
  2133. overflow?: Property$Overflow | Array<Property$Overflow>,
  2134. overscrollBehavior?: Property$OverscrollBehavior | Array<Property$OverscrollBehavior>,
  2135. padding?: Property$Padding<TLength> | Array<Property$Padding<TLength>>,
  2136. paddingBlock?: Property$PaddingBlock<TLength> | Array<Property$PaddingBlock<TLength>>,
  2137. paddingInline?: Property$PaddingInline<TLength> | Array<Property$PaddingInline<TLength>>,
  2138. placeContent?: Property$PlaceContent | Array<Property$PlaceContent>,
  2139. placeItems?: Property$PlaceItems | Array<Property$PlaceItems>,
  2140. placeSelf?: Property$PlaceSelf | Array<Property$PlaceSelf>,
  2141. scrollMargin?: Property$ScrollMargin<TLength> | Array<Property$ScrollMargin<TLength>>,
  2142. scrollMarginBlock?: Property$ScrollMarginBlock<TLength> | Array<Property$ScrollMarginBlock<TLength>>,
  2143. scrollMarginInline?: Property$ScrollMarginInline<TLength> | Array<Property$ScrollMarginInline<TLength>>,
  2144. scrollPadding?: Property$ScrollPadding<TLength> | Array<Property$ScrollPadding<TLength>>,
  2145. scrollPaddingBlock?: Property$ScrollPaddingBlock<TLength> | Array<Property$ScrollPaddingBlock<TLength>>,
  2146. scrollPaddingInline?: Property$ScrollPaddingInline<TLength> | Array<Property$ScrollPaddingInline<TLength>>,
  2147. scrollSnapMargin?: Property$ScrollMargin<TLength> | Array<Property$ScrollMargin<TLength>>,
  2148. scrollTimeline?: Property$ScrollTimeline | Array<Property$ScrollTimeline>,
  2149. textDecoration?: Property$TextDecoration<TLength> | Array<Property$TextDecoration<TLength>>,
  2150. textEmphasis?: Property$TextEmphasis | Array<Property$TextEmphasis>,
  2151. transition?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  2152. |};
  2153. export type StandardPropertiesFallback<TLength = string | 0, TTime = string> = {|
  2154. ...StandardLonghandPropertiesFallback<TLength, TTime>,
  2155. ...StandardShorthandPropertiesFallback<TLength, TTime>,
  2156. |};
  2157. export type VendorLonghandPropertiesFallback<TLength = string | 0, TTime = string> = {|
  2158. MozAnimationDelay?: Property$AnimationDelay<TTime> | Array<Property$AnimationDelay<TTime>>,
  2159. MozAnimationDirection?: Property$AnimationDirection | Array<Property$AnimationDirection>,
  2160. MozAnimationDuration?: Property$AnimationDuration<TTime> | Array<Property$AnimationDuration<TTime>>,
  2161. MozAnimationFillMode?: Property$AnimationFillMode | Array<Property$AnimationFillMode>,
  2162. MozAnimationIterationCount?: Property$AnimationIterationCount | Array<Property$AnimationIterationCount>,
  2163. MozAnimationName?: Property$AnimationName | Array<Property$AnimationName>,
  2164. MozAnimationPlayState?: Property$AnimationPlayState | Array<Property$AnimationPlayState>,
  2165. MozAnimationTimingFunction?: Property$AnimationTimingFunction | Array<Property$AnimationTimingFunction>,
  2166. MozAppearance?: Property$MozAppearance | Array<Property$MozAppearance>,
  2167. MozBackfaceVisibility?: Property$BackfaceVisibility | Array<Property$BackfaceVisibility>,
  2168. MozBinding?: Property$MozBinding | Array<Property$MozBinding>,
  2169. MozBorderBottomColors?: Property$MozBorderBottomColors | Array<Property$MozBorderBottomColors>,
  2170. MozBorderEndColor?: Property$BorderInlineEndColor | Array<Property$BorderInlineEndColor>,
  2171. MozBorderEndStyle?: Property$BorderInlineEndStyle | Array<Property$BorderInlineEndStyle>,
  2172. MozBorderEndWidth?: Property$BorderInlineEndWidth<TLength> | Array<Property$BorderInlineEndWidth<TLength>>,
  2173. MozBorderLeftColors?: Property$MozBorderLeftColors | Array<Property$MozBorderLeftColors>,
  2174. MozBorderRightColors?: Property$MozBorderRightColors | Array<Property$MozBorderRightColors>,
  2175. MozBorderStartColor?: Property$BorderInlineStartColor | Array<Property$BorderInlineStartColor>,
  2176. MozBorderStartStyle?: Property$BorderInlineStartStyle | Array<Property$BorderInlineStartStyle>,
  2177. MozBorderTopColors?: Property$MozBorderTopColors | Array<Property$MozBorderTopColors>,
  2178. MozBoxSizing?: Property$BoxSizing | Array<Property$BoxSizing>,
  2179. MozColumnCount?: Property$ColumnCount | Array<Property$ColumnCount>,
  2180. MozColumnFill?: Property$ColumnFill | Array<Property$ColumnFill>,
  2181. MozColumnRuleColor?: Property$ColumnRuleColor | Array<Property$ColumnRuleColor>,
  2182. MozColumnRuleStyle?: Property$ColumnRuleStyle | Array<Property$ColumnRuleStyle>,
  2183. MozColumnRuleWidth?: Property$ColumnRuleWidth<TLength> | Array<Property$ColumnRuleWidth<TLength>>,
  2184. MozColumnWidth?: Property$ColumnWidth<TLength> | Array<Property$ColumnWidth<TLength>>,
  2185. MozContextProperties?: Property$MozContextProperties | Array<Property$MozContextProperties>,
  2186. MozFontFeatureSettings?: Property$FontFeatureSettings | Array<Property$FontFeatureSettings>,
  2187. MozFontLanguageOverride?: Property$FontLanguageOverride | Array<Property$FontLanguageOverride>,
  2188. MozHyphens?: Property$Hyphens | Array<Property$Hyphens>,
  2189. MozImageRegion?: Property$MozImageRegion | Array<Property$MozImageRegion>,
  2190. MozMarginEnd?: Property$MarginInlineEnd<TLength> | Array<Property$MarginInlineEnd<TLength>>,
  2191. MozMarginStart?: Property$MarginInlineStart<TLength> | Array<Property$MarginInlineStart<TLength>>,
  2192. MozOrient?: Property$MozOrient | Array<Property$MozOrient>,
  2193. MozOsxFontSmoothing?: Property$FontSmooth<TLength> | Array<Property$FontSmooth<TLength>>,
  2194. MozPaddingEnd?: Property$PaddingInlineEnd<TLength> | Array<Property$PaddingInlineEnd<TLength>>,
  2195. MozPaddingStart?: Property$PaddingInlineStart<TLength> | Array<Property$PaddingInlineStart<TLength>>,
  2196. MozPerspective?: Property$Perspective<TLength> | Array<Property$Perspective<TLength>>,
  2197. MozPerspectiveOrigin?: Property$PerspectiveOrigin<TLength> | Array<Property$PerspectiveOrigin<TLength>>,
  2198. MozStackSizing?: Property$MozStackSizing | Array<Property$MozStackSizing>,
  2199. MozTabSize?: Property$TabSize<TLength> | Array<Property$TabSize<TLength>>,
  2200. MozTextBlink?: Property$MozTextBlink | Array<Property$MozTextBlink>,
  2201. MozTextSizeAdjust?: Property$TextSizeAdjust | Array<Property$TextSizeAdjust>,
  2202. MozTransformOrigin?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  2203. MozTransformStyle?: Property$TransformStyle | Array<Property$TransformStyle>,
  2204. MozTransitionDelay?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  2205. MozTransitionDuration?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  2206. MozTransitionProperty?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  2207. MozTransitionTimingFunction?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  2208. MozUserFocus?: Property$MozUserFocus | Array<Property$MozUserFocus>,
  2209. MozUserModify?: Property$MozUserModify | Array<Property$MozUserModify>,
  2210. MozUserSelect?: Property$UserSelect | Array<Property$UserSelect>,
  2211. MozWindowDragging?: Property$MozWindowDragging | Array<Property$MozWindowDragging>,
  2212. MozWindowShadow?: Property$MozWindowShadow | Array<Property$MozWindowShadow>,
  2213. msAccelerator?: Property$MsAccelerator | Array<Property$MsAccelerator>,
  2214. msBlockProgression?: Property$MsBlockProgression | Array<Property$MsBlockProgression>,
  2215. msContentZoomChaining?: Property$MsContentZoomChaining | Array<Property$MsContentZoomChaining>,
  2216. msContentZoomLimitMax?: Property$MsContentZoomLimitMax | Array<Property$MsContentZoomLimitMax>,
  2217. msContentZoomLimitMin?: Property$MsContentZoomLimitMin | Array<Property$MsContentZoomLimitMin>,
  2218. msContentZoomSnapPoints?: Property$MsContentZoomSnapPoints | Array<Property$MsContentZoomSnapPoints>,
  2219. msContentZoomSnapType?: Property$MsContentZoomSnapType | Array<Property$MsContentZoomSnapType>,
  2220. msContentZooming?: Property$MsContentZooming | Array<Property$MsContentZooming>,
  2221. msFilter?: Property$MsFilter | Array<Property$MsFilter>,
  2222. msFlexDirection?: Property$FlexDirection | Array<Property$FlexDirection>,
  2223. msFlexPositive?: Property$FlexGrow | Array<Property$FlexGrow>,
  2224. msFlowFrom?: Property$MsFlowFrom | Array<Property$MsFlowFrom>,
  2225. msFlowInto?: Property$MsFlowInto | Array<Property$MsFlowInto>,
  2226. msGridColumns?: Property$MsGridColumns<TLength> | Array<Property$MsGridColumns<TLength>>,
  2227. msGridRows?: Property$MsGridRows<TLength> | Array<Property$MsGridRows<TLength>>,
  2228. msHighContrastAdjust?: Property$MsHighContrastAdjust | Array<Property$MsHighContrastAdjust>,
  2229. msHyphenateLimitChars?: Property$MsHyphenateLimitChars | Array<Property$MsHyphenateLimitChars>,
  2230. msHyphenateLimitLines?: Property$MsHyphenateLimitLines | Array<Property$MsHyphenateLimitLines>,
  2231. msHyphenateLimitZone?: Property$MsHyphenateLimitZone<TLength> | Array<Property$MsHyphenateLimitZone<TLength>>,
  2232. msHyphens?: Property$Hyphens | Array<Property$Hyphens>,
  2233. msImeAlign?: Property$MsImeAlign | Array<Property$MsImeAlign>,
  2234. msLineBreak?: Property$LineBreak | Array<Property$LineBreak>,
  2235. msOrder?: Property$Order | Array<Property$Order>,
  2236. msOverflowStyle?: Property$MsOverflowStyle | Array<Property$MsOverflowStyle>,
  2237. msOverflowX?: Property$OverflowX | Array<Property$OverflowX>,
  2238. msOverflowY?: Property$OverflowY | Array<Property$OverflowY>,
  2239. msScrollChaining?: Property$MsScrollChaining | Array<Property$MsScrollChaining>,
  2240. msScrollLimitXMax?: Property$MsScrollLimitXMax<TLength> | Array<Property$MsScrollLimitXMax<TLength>>,
  2241. msScrollLimitXMin?: Property$MsScrollLimitXMin<TLength> | Array<Property$MsScrollLimitXMin<TLength>>,
  2242. msScrollLimitYMax?: Property$MsScrollLimitYMax<TLength> | Array<Property$MsScrollLimitYMax<TLength>>,
  2243. msScrollLimitYMin?: Property$MsScrollLimitYMin<TLength> | Array<Property$MsScrollLimitYMin<TLength>>,
  2244. msScrollRails?: Property$MsScrollRails | Array<Property$MsScrollRails>,
  2245. msScrollSnapPointsX?: Property$MsScrollSnapPointsX | Array<Property$MsScrollSnapPointsX>,
  2246. msScrollSnapPointsY?: Property$MsScrollSnapPointsY | Array<Property$MsScrollSnapPointsY>,
  2247. msScrollSnapType?: Property$MsScrollSnapType | Array<Property$MsScrollSnapType>,
  2248. msScrollTranslation?: Property$MsScrollTranslation | Array<Property$MsScrollTranslation>,
  2249. msScrollbar3dlightColor?: Property$MsScrollbar3dlightColor | Array<Property$MsScrollbar3dlightColor>,
  2250. msScrollbarArrowColor?: Property$MsScrollbarArrowColor | Array<Property$MsScrollbarArrowColor>,
  2251. msScrollbarBaseColor?: Property$MsScrollbarBaseColor | Array<Property$MsScrollbarBaseColor>,
  2252. msScrollbarDarkshadowColor?: Property$MsScrollbarDarkshadowColor | Array<Property$MsScrollbarDarkshadowColor>,
  2253. msScrollbarFaceColor?: Property$MsScrollbarFaceColor | Array<Property$MsScrollbarFaceColor>,
  2254. msScrollbarHighlightColor?: Property$MsScrollbarHighlightColor | Array<Property$MsScrollbarHighlightColor>,
  2255. msScrollbarShadowColor?: Property$MsScrollbarShadowColor | Array<Property$MsScrollbarShadowColor>,
  2256. msScrollbarTrackColor?: Property$MsScrollbarTrackColor | Array<Property$MsScrollbarTrackColor>,
  2257. msTextAutospace?: Property$MsTextAutospace | Array<Property$MsTextAutospace>,
  2258. msTextCombineHorizontal?: Property$TextCombineUpright | Array<Property$TextCombineUpright>,
  2259. msTextOverflow?: Property$TextOverflow | Array<Property$TextOverflow>,
  2260. msTouchAction?: Property$TouchAction | Array<Property$TouchAction>,
  2261. msTouchSelect?: Property$MsTouchSelect | Array<Property$MsTouchSelect>,
  2262. msTransform?: Property$Transform | Array<Property$Transform>,
  2263. msTransformOrigin?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  2264. msTransitionDelay?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  2265. msTransitionDuration?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  2266. msTransitionProperty?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  2267. msTransitionTimingFunction?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  2268. msUserSelect?: Property$MsUserSelect | Array<Property$MsUserSelect>,
  2269. msWordBreak?: Property$WordBreak | Array<Property$WordBreak>,
  2270. msWrapFlow?: Property$MsWrapFlow | Array<Property$MsWrapFlow>,
  2271. msWrapMargin?: Property$MsWrapMargin<TLength> | Array<Property$MsWrapMargin<TLength>>,
  2272. msWrapThrough?: Property$MsWrapThrough | Array<Property$MsWrapThrough>,
  2273. msWritingMode?: Property$WritingMode | Array<Property$WritingMode>,
  2274. WebkitAlignContent?: Property$AlignContent | Array<Property$AlignContent>,
  2275. WebkitAlignItems?: Property$AlignItems | Array<Property$AlignItems>,
  2276. WebkitAlignSelf?: Property$AlignSelf | Array<Property$AlignSelf>,
  2277. WebkitAnimationDelay?: Property$AnimationDelay<TTime> | Array<Property$AnimationDelay<TTime>>,
  2278. WebkitAnimationDirection?: Property$AnimationDirection | Array<Property$AnimationDirection>,
  2279. WebkitAnimationDuration?: Property$AnimationDuration<TTime> | Array<Property$AnimationDuration<TTime>>,
  2280. WebkitAnimationFillMode?: Property$AnimationFillMode | Array<Property$AnimationFillMode>,
  2281. WebkitAnimationIterationCount?: Property$AnimationIterationCount | Array<Property$AnimationIterationCount>,
  2282. WebkitAnimationName?: Property$AnimationName | Array<Property$AnimationName>,
  2283. WebkitAnimationPlayState?: Property$AnimationPlayState | Array<Property$AnimationPlayState>,
  2284. WebkitAnimationTimingFunction?: Property$AnimationTimingFunction | Array<Property$AnimationTimingFunction>,
  2285. WebkitAppearance?: Property$WebkitAppearance | Array<Property$WebkitAppearance>,
  2286. WebkitBackdropFilter?: Property$BackdropFilter | Array<Property$BackdropFilter>,
  2287. WebkitBackfaceVisibility?: Property$BackfaceVisibility | Array<Property$BackfaceVisibility>,
  2288. WebkitBackgroundClip?: Property$BackgroundClip | Array<Property$BackgroundClip>,
  2289. WebkitBackgroundOrigin?: Property$BackgroundOrigin | Array<Property$BackgroundOrigin>,
  2290. WebkitBackgroundSize?: Property$BackgroundSize<TLength> | Array<Property$BackgroundSize<TLength>>,
  2291. WebkitBorderBeforeColor?: Property$WebkitBorderBeforeColor | Array<Property$WebkitBorderBeforeColor>,
  2292. WebkitBorderBeforeStyle?: Property$WebkitBorderBeforeStyle | Array<Property$WebkitBorderBeforeStyle>,
  2293. WebkitBorderBeforeWidth?: Property$WebkitBorderBeforeWidth<TLength> | Array<Property$WebkitBorderBeforeWidth<TLength>>,
  2294. WebkitBorderBottomLeftRadius?: Property$BorderBottomLeftRadius<TLength> | Array<Property$BorderBottomLeftRadius<TLength>>,
  2295. WebkitBorderBottomRightRadius?: Property$BorderBottomRightRadius<TLength> | Array<Property$BorderBottomRightRadius<TLength>>,
  2296. WebkitBorderImageSlice?: Property$BorderImageSlice | Array<Property$BorderImageSlice>,
  2297. WebkitBorderTopLeftRadius?: Property$BorderTopLeftRadius<TLength> | Array<Property$BorderTopLeftRadius<TLength>>,
  2298. WebkitBorderTopRightRadius?: Property$BorderTopRightRadius<TLength> | Array<Property$BorderTopRightRadius<TLength>>,
  2299. WebkitBoxDecorationBreak?: Property$BoxDecorationBreak | Array<Property$BoxDecorationBreak>,
  2300. WebkitBoxReflect?: Property$WebkitBoxReflect<TLength> | Array<Property$WebkitBoxReflect<TLength>>,
  2301. WebkitBoxShadow?: Property$BoxShadow | Array<Property$BoxShadow>,
  2302. WebkitBoxSizing?: Property$BoxSizing | Array<Property$BoxSizing>,
  2303. WebkitClipPath?: Property$ClipPath | Array<Property$ClipPath>,
  2304. WebkitColumnCount?: Property$ColumnCount | Array<Property$ColumnCount>,
  2305. WebkitColumnFill?: Property$ColumnFill | Array<Property$ColumnFill>,
  2306. WebkitColumnRuleColor?: Property$ColumnRuleColor | Array<Property$ColumnRuleColor>,
  2307. WebkitColumnRuleStyle?: Property$ColumnRuleStyle | Array<Property$ColumnRuleStyle>,
  2308. WebkitColumnRuleWidth?: Property$ColumnRuleWidth<TLength> | Array<Property$ColumnRuleWidth<TLength>>,
  2309. WebkitColumnSpan?: Property$ColumnSpan | Array<Property$ColumnSpan>,
  2310. WebkitColumnWidth?: Property$ColumnWidth<TLength> | Array<Property$ColumnWidth<TLength>>,
  2311. WebkitFilter?: Property$Filter | Array<Property$Filter>,
  2312. WebkitFlexBasis?: Property$FlexBasis<TLength> | Array<Property$FlexBasis<TLength>>,
  2313. WebkitFlexDirection?: Property$FlexDirection | Array<Property$FlexDirection>,
  2314. WebkitFlexGrow?: Property$FlexGrow | Array<Property$FlexGrow>,
  2315. WebkitFlexShrink?: Property$FlexShrink | Array<Property$FlexShrink>,
  2316. WebkitFlexWrap?: Property$FlexWrap | Array<Property$FlexWrap>,
  2317. WebkitFontFeatureSettings?: Property$FontFeatureSettings | Array<Property$FontFeatureSettings>,
  2318. WebkitFontKerning?: Property$FontKerning | Array<Property$FontKerning>,
  2319. WebkitFontSmoothing?: Property$FontSmooth<TLength> | Array<Property$FontSmooth<TLength>>,
  2320. WebkitFontVariantLigatures?: Property$FontVariantLigatures | Array<Property$FontVariantLigatures>,
  2321. WebkitHyphenateCharacter?: Property$HyphenateCharacter | Array<Property$HyphenateCharacter>,
  2322. WebkitHyphens?: Property$Hyphens | Array<Property$Hyphens>,
  2323. WebkitInitialLetter?: Property$InitialLetter | Array<Property$InitialLetter>,
  2324. WebkitJustifyContent?: Property$JustifyContent | Array<Property$JustifyContent>,
  2325. WebkitLineBreak?: Property$LineBreak | Array<Property$LineBreak>,
  2326. WebkitLineClamp?: Property$WebkitLineClamp | Array<Property$WebkitLineClamp>,
  2327. WebkitMarginEnd?: Property$MarginInlineEnd<TLength> | Array<Property$MarginInlineEnd<TLength>>,
  2328. WebkitMarginStart?: Property$MarginInlineStart<TLength> | Array<Property$MarginInlineStart<TLength>>,
  2329. WebkitMaskAttachment?: Property$WebkitMaskAttachment | Array<Property$WebkitMaskAttachment>,
  2330. WebkitMaskBoxImageOutset?: Property$MaskBorderOutset<TLength> | Array<Property$MaskBorderOutset<TLength>>,
  2331. WebkitMaskBoxImageRepeat?: Property$MaskBorderRepeat | Array<Property$MaskBorderRepeat>,
  2332. WebkitMaskBoxImageSlice?: Property$MaskBorderSlice | Array<Property$MaskBorderSlice>,
  2333. WebkitMaskBoxImageSource?: Property$MaskBorderSource | Array<Property$MaskBorderSource>,
  2334. WebkitMaskBoxImageWidth?: Property$MaskBorderWidth<TLength> | Array<Property$MaskBorderWidth<TLength>>,
  2335. WebkitMaskClip?: Property$WebkitMaskClip | Array<Property$WebkitMaskClip>,
  2336. WebkitMaskComposite?: Property$WebkitMaskComposite | Array<Property$WebkitMaskComposite>,
  2337. WebkitMaskImage?: Property$WebkitMaskImage | Array<Property$WebkitMaskImage>,
  2338. WebkitMaskOrigin?: Property$WebkitMaskOrigin | Array<Property$WebkitMaskOrigin>,
  2339. WebkitMaskPosition?: Property$WebkitMaskPosition<TLength> | Array<Property$WebkitMaskPosition<TLength>>,
  2340. WebkitMaskPositionX?: Property$WebkitMaskPositionX<TLength> | Array<Property$WebkitMaskPositionX<TLength>>,
  2341. WebkitMaskPositionY?: Property$WebkitMaskPositionY<TLength> | Array<Property$WebkitMaskPositionY<TLength>>,
  2342. WebkitMaskRepeat?: Property$WebkitMaskRepeat | Array<Property$WebkitMaskRepeat>,
  2343. WebkitMaskRepeatX?: Property$WebkitMaskRepeatX | Array<Property$WebkitMaskRepeatX>,
  2344. WebkitMaskRepeatY?: Property$WebkitMaskRepeatY | Array<Property$WebkitMaskRepeatY>,
  2345. WebkitMaskSize?: Property$WebkitMaskSize<TLength> | Array<Property$WebkitMaskSize<TLength>>,
  2346. WebkitMaxInlineSize?: Property$MaxInlineSize<TLength> | Array<Property$MaxInlineSize<TLength>>,
  2347. WebkitOrder?: Property$Order | Array<Property$Order>,
  2348. WebkitOverflowScrolling?: Property$WebkitOverflowScrolling | Array<Property$WebkitOverflowScrolling>,
  2349. WebkitPaddingEnd?: Property$PaddingInlineEnd<TLength> | Array<Property$PaddingInlineEnd<TLength>>,
  2350. WebkitPaddingStart?: Property$PaddingInlineStart<TLength> | Array<Property$PaddingInlineStart<TLength>>,
  2351. WebkitPerspective?: Property$Perspective<TLength> | Array<Property$Perspective<TLength>>,
  2352. WebkitPerspectiveOrigin?: Property$PerspectiveOrigin<TLength> | Array<Property$PerspectiveOrigin<TLength>>,
  2353. WebkitPrintColorAdjust?: Property$PrintColorAdjust | Array<Property$PrintColorAdjust>,
  2354. WebkitRubyPosition?: Property$RubyPosition | Array<Property$RubyPosition>,
  2355. WebkitScrollSnapType?: Property$ScrollSnapType | Array<Property$ScrollSnapType>,
  2356. WebkitShapeMargin?: Property$ShapeMargin<TLength> | Array<Property$ShapeMargin<TLength>>,
  2357. WebkitTapHighlightColor?: Property$WebkitTapHighlightColor | Array<Property$WebkitTapHighlightColor>,
  2358. WebkitTextCombine?: Property$TextCombineUpright | Array<Property$TextCombineUpright>,
  2359. WebkitTextDecorationColor?: Property$TextDecorationColor | Array<Property$TextDecorationColor>,
  2360. WebkitTextDecorationLine?: Property$TextDecorationLine | Array<Property$TextDecorationLine>,
  2361. WebkitTextDecorationSkip?: Property$TextDecorationSkip | Array<Property$TextDecorationSkip>,
  2362. WebkitTextDecorationStyle?: Property$TextDecorationStyle | Array<Property$TextDecorationStyle>,
  2363. WebkitTextEmphasisColor?: Property$TextEmphasisColor | Array<Property$TextEmphasisColor>,
  2364. WebkitTextEmphasisPosition?: Property$TextEmphasisPosition | Array<Property$TextEmphasisPosition>,
  2365. WebkitTextEmphasisStyle?: Property$TextEmphasisStyle | Array<Property$TextEmphasisStyle>,
  2366. WebkitTextFillColor?: Property$WebkitTextFillColor | Array<Property$WebkitTextFillColor>,
  2367. WebkitTextOrientation?: Property$TextOrientation | Array<Property$TextOrientation>,
  2368. WebkitTextSizeAdjust?: Property$TextSizeAdjust | Array<Property$TextSizeAdjust>,
  2369. WebkitTextStrokeColor?: Property$WebkitTextStrokeColor | Array<Property$WebkitTextStrokeColor>,
  2370. WebkitTextStrokeWidth?: Property$WebkitTextStrokeWidth<TLength> | Array<Property$WebkitTextStrokeWidth<TLength>>,
  2371. WebkitTextUnderlinePosition?: Property$TextUnderlinePosition | Array<Property$TextUnderlinePosition>,
  2372. WebkitTouchCallout?: Property$WebkitTouchCallout | Array<Property$WebkitTouchCallout>,
  2373. WebkitTransform?: Property$Transform | Array<Property$Transform>,
  2374. WebkitTransformOrigin?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  2375. WebkitTransformStyle?: Property$TransformStyle | Array<Property$TransformStyle>,
  2376. WebkitTransitionDelay?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  2377. WebkitTransitionDuration?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  2378. WebkitTransitionProperty?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  2379. WebkitTransitionTimingFunction?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  2380. WebkitUserModify?: Property$WebkitUserModify | Array<Property$WebkitUserModify>,
  2381. WebkitUserSelect?: Property$UserSelect | Array<Property$UserSelect>,
  2382. WebkitWritingMode?: Property$WritingMode | Array<Property$WritingMode>,
  2383. |};
  2384. export type VendorShorthandPropertiesFallback<TLength = string | 0, TTime = string> = {|
  2385. MozAnimation?: Property$Animation<TTime> | Array<Property$Animation<TTime>>,
  2386. MozBorderImage?: Property$BorderImage | Array<Property$BorderImage>,
  2387. MozColumnRule?: Property$ColumnRule<TLength> | Array<Property$ColumnRule<TLength>>,
  2388. MozColumns?: Property$Columns<TLength> | Array<Property$Columns<TLength>>,
  2389. MozTransition?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  2390. msContentZoomLimit?: Property$MsContentZoomLimit | Array<Property$MsContentZoomLimit>,
  2391. msContentZoomSnap?: Property$MsContentZoomSnap | Array<Property$MsContentZoomSnap>,
  2392. msFlex?: Property$Flex<TLength> | Array<Property$Flex<TLength>>,
  2393. msScrollLimit?: Property$MsScrollLimit | Array<Property$MsScrollLimit>,
  2394. msScrollSnapX?: Property$MsScrollSnapX | Array<Property$MsScrollSnapX>,
  2395. msScrollSnapY?: Property$MsScrollSnapY | Array<Property$MsScrollSnapY>,
  2396. msTransition?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  2397. WebkitAnimation?: Property$Animation<TTime> | Array<Property$Animation<TTime>>,
  2398. WebkitBorderBefore?: Property$WebkitBorderBefore<TLength> | Array<Property$WebkitBorderBefore<TLength>>,
  2399. WebkitBorderImage?: Property$BorderImage | Array<Property$BorderImage>,
  2400. WebkitBorderRadius?: Property$BorderRadius<TLength> | Array<Property$BorderRadius<TLength>>,
  2401. WebkitColumnRule?: Property$ColumnRule<TLength> | Array<Property$ColumnRule<TLength>>,
  2402. WebkitColumns?: Property$Columns<TLength> | Array<Property$Columns<TLength>>,
  2403. WebkitFlex?: Property$Flex<TLength> | Array<Property$Flex<TLength>>,
  2404. WebkitFlexFlow?: Property$FlexFlow | Array<Property$FlexFlow>,
  2405. WebkitMask?: Property$WebkitMask<TLength> | Array<Property$WebkitMask<TLength>>,
  2406. WebkitMaskBoxImage?: Property$MaskBorder | Array<Property$MaskBorder>,
  2407. WebkitTextEmphasis?: Property$TextEmphasis | Array<Property$TextEmphasis>,
  2408. WebkitTextStroke?: Property$WebkitTextStroke<TLength> | Array<Property$WebkitTextStroke<TLength>>,
  2409. WebkitTransition?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  2410. |};
  2411. export type VendorPropertiesFallback<TLength = string | 0, TTime = string> = {|
  2412. ...VendorLonghandPropertiesFallback<TLength, TTime>,
  2413. ...VendorShorthandPropertiesFallback<TLength, TTime>,
  2414. |};
  2415. export type ObsoletePropertiesFallback<TLength = string | 0, TTime = string> = {|
  2416. azimuth?: Property$Azimuth | Array<Property$Azimuth>,
  2417. boxAlign?: Property$BoxAlign | Array<Property$BoxAlign>,
  2418. boxDirection?: Property$BoxDirection | Array<Property$BoxDirection>,
  2419. boxFlex?: Property$BoxFlex | Array<Property$BoxFlex>,
  2420. boxFlexGroup?: Property$BoxFlexGroup | Array<Property$BoxFlexGroup>,
  2421. boxLines?: Property$BoxLines | Array<Property$BoxLines>,
  2422. boxOrdinalGroup?: Property$BoxOrdinalGroup | Array<Property$BoxOrdinalGroup>,
  2423. boxOrient?: Property$BoxOrient | Array<Property$BoxOrient>,
  2424. boxPack?: Property$BoxPack | Array<Property$BoxPack>,
  2425. clip?: Property$Clip | Array<Property$Clip>,
  2426. gridColumnGap?: Property$GridColumnGap<TLength> | Array<Property$GridColumnGap<TLength>>,
  2427. gridGap?: Property$GridGap<TLength> | Array<Property$GridGap<TLength>>,
  2428. gridRowGap?: Property$GridRowGap<TLength> | Array<Property$GridRowGap<TLength>>,
  2429. imeMode?: Property$ImeMode | Array<Property$ImeMode>,
  2430. offsetBlock?: Property$InsetBlock<TLength> | Array<Property$InsetBlock<TLength>>,
  2431. offsetBlockEnd?: Property$InsetBlockEnd<TLength> | Array<Property$InsetBlockEnd<TLength>>,
  2432. offsetBlockStart?: Property$InsetBlockStart<TLength> | Array<Property$InsetBlockStart<TLength>>,
  2433. offsetInline?: Property$InsetInline<TLength> | Array<Property$InsetInline<TLength>>,
  2434. offsetInlineEnd?: Property$InsetInlineEnd<TLength> | Array<Property$InsetInlineEnd<TLength>>,
  2435. offsetInlineStart?: Property$InsetInlineStart<TLength> | Array<Property$InsetInlineStart<TLength>>,
  2436. scrollSnapCoordinate?: Property$ScrollSnapCoordinate<TLength> | Array<Property$ScrollSnapCoordinate<TLength>>,
  2437. scrollSnapDestination?: Property$ScrollSnapDestination<TLength> | Array<Property$ScrollSnapDestination<TLength>>,
  2438. scrollSnapPointsX?: Property$ScrollSnapPointsX | Array<Property$ScrollSnapPointsX>,
  2439. scrollSnapPointsY?: Property$ScrollSnapPointsY | Array<Property$ScrollSnapPointsY>,
  2440. scrollSnapTypeX?: Property$ScrollSnapTypeX | Array<Property$ScrollSnapTypeX>,
  2441. scrollSnapTypeY?: Property$ScrollSnapTypeY | Array<Property$ScrollSnapTypeY>,
  2442. KhtmlBoxAlign?: Property$BoxAlign | Array<Property$BoxAlign>,
  2443. KhtmlBoxDirection?: Property$BoxDirection | Array<Property$BoxDirection>,
  2444. KhtmlBoxFlex?: Property$BoxFlex | Array<Property$BoxFlex>,
  2445. KhtmlBoxFlexGroup?: Property$BoxFlexGroup | Array<Property$BoxFlexGroup>,
  2446. KhtmlBoxLines?: Property$BoxLines | Array<Property$BoxLines>,
  2447. KhtmlBoxOrdinalGroup?: Property$BoxOrdinalGroup | Array<Property$BoxOrdinalGroup>,
  2448. KhtmlBoxOrient?: Property$BoxOrient | Array<Property$BoxOrient>,
  2449. KhtmlBoxPack?: Property$BoxPack | Array<Property$BoxPack>,
  2450. KhtmlLineBreak?: Property$LineBreak | Array<Property$LineBreak>,
  2451. KhtmlOpacity?: Property$Opacity | Array<Property$Opacity>,
  2452. KhtmlUserSelect?: Property$UserSelect | Array<Property$UserSelect>,
  2453. MozBackgroundClip?: Property$BackgroundClip | Array<Property$BackgroundClip>,
  2454. MozBackgroundInlinePolicy?: Property$BoxDecorationBreak | Array<Property$BoxDecorationBreak>,
  2455. MozBackgroundOrigin?: Property$BackgroundOrigin | Array<Property$BackgroundOrigin>,
  2456. MozBackgroundSize?: Property$BackgroundSize<TLength> | Array<Property$BackgroundSize<TLength>>,
  2457. MozBorderRadius?: Property$BorderRadius<TLength> | Array<Property$BorderRadius<TLength>>,
  2458. MozBorderRadiusBottomleft?: Property$BorderBottomLeftRadius<TLength> | Array<Property$BorderBottomLeftRadius<TLength>>,
  2459. MozBorderRadiusBottomright?: Property$BorderBottomRightRadius<TLength> | Array<Property$BorderBottomRightRadius<TLength>>,
  2460. MozBorderRadiusTopleft?: Property$BorderTopLeftRadius<TLength> | Array<Property$BorderTopLeftRadius<TLength>>,
  2461. MozBorderRadiusTopright?: Property$BorderTopRightRadius<TLength> | Array<Property$BorderTopRightRadius<TLength>>,
  2462. MozBoxAlign?: Property$BoxAlign | Array<Property$BoxAlign>,
  2463. MozBoxDirection?: Property$BoxDirection | Array<Property$BoxDirection>,
  2464. MozBoxFlex?: Property$BoxFlex | Array<Property$BoxFlex>,
  2465. MozBoxOrdinalGroup?: Property$BoxOrdinalGroup | Array<Property$BoxOrdinalGroup>,
  2466. MozBoxOrient?: Property$BoxOrient | Array<Property$BoxOrient>,
  2467. MozBoxPack?: Property$BoxPack | Array<Property$BoxPack>,
  2468. MozBoxShadow?: Property$BoxShadow | Array<Property$BoxShadow>,
  2469. MozFloatEdge?: Property$MozFloatEdge | Array<Property$MozFloatEdge>,
  2470. MozForceBrokenImageIcon?: Property$MozForceBrokenImageIcon | Array<Property$MozForceBrokenImageIcon>,
  2471. MozOpacity?: Property$Opacity | Array<Property$Opacity>,
  2472. MozOutline?: Property$Outline<TLength> | Array<Property$Outline<TLength>>,
  2473. MozOutlineColor?: Property$OutlineColor | Array<Property$OutlineColor>,
  2474. MozOutlineRadius?: Property$MozOutlineRadius<TLength> | Array<Property$MozOutlineRadius<TLength>>,
  2475. MozOutlineRadiusBottomleft?: Property$MozOutlineRadiusBottomleft<TLength> | Array<Property$MozOutlineRadiusBottomleft<TLength>>,
  2476. MozOutlineRadiusBottomright?: Property$MozOutlineRadiusBottomright<TLength> | Array<Property$MozOutlineRadiusBottomright<TLength>>,
  2477. MozOutlineRadiusTopleft?: Property$MozOutlineRadiusTopleft<TLength> | Array<Property$MozOutlineRadiusTopleft<TLength>>,
  2478. MozOutlineRadiusTopright?: Property$MozOutlineRadiusTopright<TLength> | Array<Property$MozOutlineRadiusTopright<TLength>>,
  2479. MozOutlineStyle?: Property$OutlineStyle | Array<Property$OutlineStyle>,
  2480. MozOutlineWidth?: Property$OutlineWidth<TLength> | Array<Property$OutlineWidth<TLength>>,
  2481. MozTextAlignLast?: Property$TextAlignLast | Array<Property$TextAlignLast>,
  2482. MozTextDecorationColor?: Property$TextDecorationColor | Array<Property$TextDecorationColor>,
  2483. MozTextDecorationLine?: Property$TextDecorationLine | Array<Property$TextDecorationLine>,
  2484. MozTextDecorationStyle?: Property$TextDecorationStyle | Array<Property$TextDecorationStyle>,
  2485. MozUserInput?: Property$MozUserInput | Array<Property$MozUserInput>,
  2486. msImeMode?: Property$ImeMode | Array<Property$ImeMode>,
  2487. OAnimation?: Property$Animation<TTime> | Array<Property$Animation<TTime>>,
  2488. OAnimationDelay?: Property$AnimationDelay<TTime> | Array<Property$AnimationDelay<TTime>>,
  2489. OAnimationDirection?: Property$AnimationDirection | Array<Property$AnimationDirection>,
  2490. OAnimationDuration?: Property$AnimationDuration<TTime> | Array<Property$AnimationDuration<TTime>>,
  2491. OAnimationFillMode?: Property$AnimationFillMode | Array<Property$AnimationFillMode>,
  2492. OAnimationIterationCount?: Property$AnimationIterationCount | Array<Property$AnimationIterationCount>,
  2493. OAnimationName?: Property$AnimationName | Array<Property$AnimationName>,
  2494. OAnimationPlayState?: Property$AnimationPlayState | Array<Property$AnimationPlayState>,
  2495. OAnimationTimingFunction?: Property$AnimationTimingFunction | Array<Property$AnimationTimingFunction>,
  2496. OBackgroundSize?: Property$BackgroundSize<TLength> | Array<Property$BackgroundSize<TLength>>,
  2497. OBorderImage?: Property$BorderImage | Array<Property$BorderImage>,
  2498. OObjectFit?: Property$ObjectFit | Array<Property$ObjectFit>,
  2499. OObjectPosition?: Property$ObjectPosition<TLength> | Array<Property$ObjectPosition<TLength>>,
  2500. OTabSize?: Property$TabSize<TLength> | Array<Property$TabSize<TLength>>,
  2501. OTextOverflow?: Property$TextOverflow | Array<Property$TextOverflow>,
  2502. OTransform?: Property$Transform | Array<Property$Transform>,
  2503. OTransformOrigin?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  2504. OTransition?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  2505. OTransitionDelay?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  2506. OTransitionDuration?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  2507. OTransitionProperty?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  2508. OTransitionTimingFunction?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  2509. WebkitBoxAlign?: Property$BoxAlign | Array<Property$BoxAlign>,
  2510. WebkitBoxDirection?: Property$BoxDirection | Array<Property$BoxDirection>,
  2511. WebkitBoxFlex?: Property$BoxFlex | Array<Property$BoxFlex>,
  2512. WebkitBoxFlexGroup?: Property$BoxFlexGroup | Array<Property$BoxFlexGroup>,
  2513. WebkitBoxLines?: Property$BoxLines | Array<Property$BoxLines>,
  2514. WebkitBoxOrdinalGroup?: Property$BoxOrdinalGroup | Array<Property$BoxOrdinalGroup>,
  2515. WebkitBoxOrient?: Property$BoxOrient | Array<Property$BoxOrient>,
  2516. WebkitBoxPack?: Property$BoxPack | Array<Property$BoxPack>,
  2517. WebkitScrollSnapPointsX?: Property$ScrollSnapPointsX | Array<Property$ScrollSnapPointsX>,
  2518. WebkitScrollSnapPointsY?: Property$ScrollSnapPointsY | Array<Property$ScrollSnapPointsY>,
  2519. |};
  2520. export type SvgPropertiesFallback<TLength = string | 0, TTime = string> = {|
  2521. alignmentBaseline?: Property$AlignmentBaseline | Array<Property$AlignmentBaseline>,
  2522. baselineShift?: Property$BaselineShift<TLength> | Array<Property$BaselineShift<TLength>>,
  2523. clip?: Property$Clip | Array<Property$Clip>,
  2524. clipPath?: Property$ClipPath | Array<Property$ClipPath>,
  2525. clipRule?: Property$ClipRule | Array<Property$ClipRule>,
  2526. color?: Property$Color | Array<Property$Color>,
  2527. colorInterpolation?: Property$ColorInterpolation | Array<Property$ColorInterpolation>,
  2528. colorRendering?: Property$ColorRendering | Array<Property$ColorRendering>,
  2529. cursor?: Property$Cursor | Array<Property$Cursor>,
  2530. direction?: Property$Direction | Array<Property$Direction>,
  2531. display?: Property$Display | Array<Property$Display>,
  2532. dominantBaseline?: Property$DominantBaseline | Array<Property$DominantBaseline>,
  2533. fill?: Property$Fill | Array<Property$Fill>,
  2534. fillOpacity?: Property$FillOpacity | Array<Property$FillOpacity>,
  2535. fillRule?: Property$FillRule | Array<Property$FillRule>,
  2536. filter?: Property$Filter | Array<Property$Filter>,
  2537. floodColor?: Property$FloodColor | Array<Property$FloodColor>,
  2538. floodOpacity?: Property$FloodOpacity | Array<Property$FloodOpacity>,
  2539. font?: Property$Font | Array<Property$Font>,
  2540. fontFamily?: Property$FontFamily | Array<Property$FontFamily>,
  2541. fontSize?: Property$FontSize<TLength> | Array<Property$FontSize<TLength>>,
  2542. fontSizeAdjust?: Property$FontSizeAdjust | Array<Property$FontSizeAdjust>,
  2543. fontStretch?: Property$FontStretch | Array<Property$FontStretch>,
  2544. fontStyle?: Property$FontStyle | Array<Property$FontStyle>,
  2545. fontVariant?: Property$FontVariant | Array<Property$FontVariant>,
  2546. fontWeight?: Property$FontWeight | Array<Property$FontWeight>,
  2547. glyphOrientationVertical?: Property$GlyphOrientationVertical | Array<Property$GlyphOrientationVertical>,
  2548. imageRendering?: Property$ImageRendering | Array<Property$ImageRendering>,
  2549. letterSpacing?: Property$LetterSpacing<TLength> | Array<Property$LetterSpacing<TLength>>,
  2550. lightingColor?: Property$LightingColor | Array<Property$LightingColor>,
  2551. lineHeight?: Property$LineHeight<TLength> | Array<Property$LineHeight<TLength>>,
  2552. marker?: Property$Marker | Array<Property$Marker>,
  2553. markerEnd?: Property$MarkerEnd | Array<Property$MarkerEnd>,
  2554. markerMid?: Property$MarkerMid | Array<Property$MarkerMid>,
  2555. markerStart?: Property$MarkerStart | Array<Property$MarkerStart>,
  2556. mask?: Property$Mask<TLength> | Array<Property$Mask<TLength>>,
  2557. opacity?: Property$Opacity | Array<Property$Opacity>,
  2558. overflow?: Property$Overflow | Array<Property$Overflow>,
  2559. paintOrder?: Property$PaintOrder | Array<Property$PaintOrder>,
  2560. pointerEvents?: Property$PointerEvents | Array<Property$PointerEvents>,
  2561. shapeRendering?: Property$ShapeRendering | Array<Property$ShapeRendering>,
  2562. stopColor?: Property$StopColor | Array<Property$StopColor>,
  2563. stopOpacity?: Property$StopOpacity | Array<Property$StopOpacity>,
  2564. stroke?: Property$Stroke | Array<Property$Stroke>,
  2565. strokeDasharray?: Property$StrokeDasharray<TLength> | Array<Property$StrokeDasharray<TLength>>,
  2566. strokeDashoffset?: Property$StrokeDashoffset<TLength> | Array<Property$StrokeDashoffset<TLength>>,
  2567. strokeLinecap?: Property$StrokeLinecap | Array<Property$StrokeLinecap>,
  2568. strokeLinejoin?: Property$StrokeLinejoin | Array<Property$StrokeLinejoin>,
  2569. strokeMiterlimit?: Property$StrokeMiterlimit | Array<Property$StrokeMiterlimit>,
  2570. strokeOpacity?: Property$StrokeOpacity | Array<Property$StrokeOpacity>,
  2571. strokeWidth?: Property$StrokeWidth<TLength> | Array<Property$StrokeWidth<TLength>>,
  2572. textAnchor?: Property$TextAnchor | Array<Property$TextAnchor>,
  2573. textDecoration?: Property$TextDecoration<TLength> | Array<Property$TextDecoration<TLength>>,
  2574. textRendering?: Property$TextRendering | Array<Property$TextRendering>,
  2575. unicodeBidi?: Property$UnicodeBidi | Array<Property$UnicodeBidi>,
  2576. vectorEffect?: Property$VectorEffect | Array<Property$VectorEffect>,
  2577. visibility?: Property$Visibility | Array<Property$Visibility>,
  2578. whiteSpace?: Property$WhiteSpace | Array<Property$WhiteSpace>,
  2579. wordSpacing?: Property$WordSpacing<TLength> | Array<Property$WordSpacing<TLength>>,
  2580. writingMode?: Property$WritingMode | Array<Property$WritingMode>,
  2581. |};
  2582. export type PropertiesFallback<TLength = string | 0, TTime = string> = {|
  2583. ...StandardPropertiesFallback<TLength, TTime>,
  2584. ...VendorPropertiesFallback<TLength, TTime>,
  2585. ...ObsoletePropertiesFallback<TLength, TTime>,
  2586. ...SvgPropertiesFallback<TLength, TTime>,
  2587. |};
  2588. export type StandardLonghandPropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  2589. "accent-color"?: Property$AccentColor | Array<Property$AccentColor>,
  2590. "align-content"?: Property$AlignContent | Array<Property$AlignContent>,
  2591. "align-items"?: Property$AlignItems | Array<Property$AlignItems>,
  2592. "align-self"?: Property$AlignSelf | Array<Property$AlignSelf>,
  2593. "align-tracks"?: Property$AlignTracks | Array<Property$AlignTracks>,
  2594. "animation-composition"?: Property$AnimationComposition | Array<Property$AnimationComposition>,
  2595. "animation-delay"?: Property$AnimationDelay<TTime> | Array<Property$AnimationDelay<TTime>>,
  2596. "animation-direction"?: Property$AnimationDirection | Array<Property$AnimationDirection>,
  2597. "animation-duration"?: Property$AnimationDuration<TTime> | Array<Property$AnimationDuration<TTime>>,
  2598. "animation-fill-mode"?: Property$AnimationFillMode | Array<Property$AnimationFillMode>,
  2599. "animation-iteration-count"?: Property$AnimationIterationCount | Array<Property$AnimationIterationCount>,
  2600. "animation-name"?: Property$AnimationName | Array<Property$AnimationName>,
  2601. "animation-play-state"?: Property$AnimationPlayState | Array<Property$AnimationPlayState>,
  2602. "animation-timeline"?: Property$AnimationTimeline | Array<Property$AnimationTimeline>,
  2603. "animation-timing-function"?: Property$AnimationTimingFunction | Array<Property$AnimationTimingFunction>,
  2604. appearance?: Property$Appearance | Array<Property$Appearance>,
  2605. "aspect-ratio"?: Property$AspectRatio | Array<Property$AspectRatio>,
  2606. "backdrop-filter"?: Property$BackdropFilter | Array<Property$BackdropFilter>,
  2607. "backface-visibility"?: Property$BackfaceVisibility | Array<Property$BackfaceVisibility>,
  2608. "background-attachment"?: Property$BackgroundAttachment | Array<Property$BackgroundAttachment>,
  2609. "background-blend-mode"?: Property$BackgroundBlendMode | Array<Property$BackgroundBlendMode>,
  2610. "background-clip"?: Property$BackgroundClip | Array<Property$BackgroundClip>,
  2611. "background-color"?: Property$BackgroundColor | Array<Property$BackgroundColor>,
  2612. "background-image"?: Property$BackgroundImage | Array<Property$BackgroundImage>,
  2613. "background-origin"?: Property$BackgroundOrigin | Array<Property$BackgroundOrigin>,
  2614. "background-position-x"?: Property$BackgroundPositionX<TLength> | Array<Property$BackgroundPositionX<TLength>>,
  2615. "background-position-y"?: Property$BackgroundPositionY<TLength> | Array<Property$BackgroundPositionY<TLength>>,
  2616. "background-repeat"?: Property$BackgroundRepeat | Array<Property$BackgroundRepeat>,
  2617. "background-size"?: Property$BackgroundSize<TLength> | Array<Property$BackgroundSize<TLength>>,
  2618. "block-overflow"?: Property$BlockOverflow | Array<Property$BlockOverflow>,
  2619. "block-size"?: Property$BlockSize<TLength> | Array<Property$BlockSize<TLength>>,
  2620. "border-block-color"?: Property$BorderBlockColor | Array<Property$BorderBlockColor>,
  2621. "border-block-end-color"?: Property$BorderBlockEndColor | Array<Property$BorderBlockEndColor>,
  2622. "border-block-end-style"?: Property$BorderBlockEndStyle | Array<Property$BorderBlockEndStyle>,
  2623. "border-block-end-width"?: Property$BorderBlockEndWidth<TLength> | Array<Property$BorderBlockEndWidth<TLength>>,
  2624. "border-block-start-color"?: Property$BorderBlockStartColor | Array<Property$BorderBlockStartColor>,
  2625. "border-block-start-style"?: Property$BorderBlockStartStyle | Array<Property$BorderBlockStartStyle>,
  2626. "border-block-start-width"?: Property$BorderBlockStartWidth<TLength> | Array<Property$BorderBlockStartWidth<TLength>>,
  2627. "border-block-style"?: Property$BorderBlockStyle | Array<Property$BorderBlockStyle>,
  2628. "border-block-width"?: Property$BorderBlockWidth<TLength> | Array<Property$BorderBlockWidth<TLength>>,
  2629. "border-bottom-color"?: Property$BorderBottomColor | Array<Property$BorderBottomColor>,
  2630. "border-bottom-left-radius"?: Property$BorderBottomLeftRadius<TLength> | Array<Property$BorderBottomLeftRadius<TLength>>,
  2631. "border-bottom-right-radius"?: Property$BorderBottomRightRadius<TLength> | Array<Property$BorderBottomRightRadius<TLength>>,
  2632. "border-bottom-style"?: Property$BorderBottomStyle | Array<Property$BorderBottomStyle>,
  2633. "border-bottom-width"?: Property$BorderBottomWidth<TLength> | Array<Property$BorderBottomWidth<TLength>>,
  2634. "border-collapse"?: Property$BorderCollapse | Array<Property$BorderCollapse>,
  2635. "border-end-end-radius"?: Property$BorderEndEndRadius<TLength> | Array<Property$BorderEndEndRadius<TLength>>,
  2636. "border-end-start-radius"?: Property$BorderEndStartRadius<TLength> | Array<Property$BorderEndStartRadius<TLength>>,
  2637. "border-image-outset"?: Property$BorderImageOutset<TLength> | Array<Property$BorderImageOutset<TLength>>,
  2638. "border-image-repeat"?: Property$BorderImageRepeat | Array<Property$BorderImageRepeat>,
  2639. "border-image-slice"?: Property$BorderImageSlice | Array<Property$BorderImageSlice>,
  2640. "border-image-source"?: Property$BorderImageSource | Array<Property$BorderImageSource>,
  2641. "border-image-width"?: Property$BorderImageWidth<TLength> | Array<Property$BorderImageWidth<TLength>>,
  2642. "border-inline-color"?: Property$BorderInlineColor | Array<Property$BorderInlineColor>,
  2643. "border-inline-end-color"?: Property$BorderInlineEndColor | Array<Property$BorderInlineEndColor>,
  2644. "border-inline-end-style"?: Property$BorderInlineEndStyle | Array<Property$BorderInlineEndStyle>,
  2645. "border-inline-end-width"?: Property$BorderInlineEndWidth<TLength> | Array<Property$BorderInlineEndWidth<TLength>>,
  2646. "border-inline-start-color"?: Property$BorderInlineStartColor | Array<Property$BorderInlineStartColor>,
  2647. "border-inline-start-style"?: Property$BorderInlineStartStyle | Array<Property$BorderInlineStartStyle>,
  2648. "border-inline-start-width"?: Property$BorderInlineStartWidth<TLength> | Array<Property$BorderInlineStartWidth<TLength>>,
  2649. "border-inline-style"?: Property$BorderInlineStyle | Array<Property$BorderInlineStyle>,
  2650. "border-inline-width"?: Property$BorderInlineWidth<TLength> | Array<Property$BorderInlineWidth<TLength>>,
  2651. "border-left-color"?: Property$BorderLeftColor | Array<Property$BorderLeftColor>,
  2652. "border-left-style"?: Property$BorderLeftStyle | Array<Property$BorderLeftStyle>,
  2653. "border-left-width"?: Property$BorderLeftWidth<TLength> | Array<Property$BorderLeftWidth<TLength>>,
  2654. "border-right-color"?: Property$BorderRightColor | Array<Property$BorderRightColor>,
  2655. "border-right-style"?: Property$BorderRightStyle | Array<Property$BorderRightStyle>,
  2656. "border-right-width"?: Property$BorderRightWidth<TLength> | Array<Property$BorderRightWidth<TLength>>,
  2657. "border-spacing"?: Property$BorderSpacing<TLength> | Array<Property$BorderSpacing<TLength>>,
  2658. "border-start-end-radius"?: Property$BorderStartEndRadius<TLength> | Array<Property$BorderStartEndRadius<TLength>>,
  2659. "border-start-start-radius"?: Property$BorderStartStartRadius<TLength> | Array<Property$BorderStartStartRadius<TLength>>,
  2660. "border-top-color"?: Property$BorderTopColor | Array<Property$BorderTopColor>,
  2661. "border-top-left-radius"?: Property$BorderTopLeftRadius<TLength> | Array<Property$BorderTopLeftRadius<TLength>>,
  2662. "border-top-right-radius"?: Property$BorderTopRightRadius<TLength> | Array<Property$BorderTopRightRadius<TLength>>,
  2663. "border-top-style"?: Property$BorderTopStyle | Array<Property$BorderTopStyle>,
  2664. "border-top-width"?: Property$BorderTopWidth<TLength> | Array<Property$BorderTopWidth<TLength>>,
  2665. bottom?: Property$Bottom<TLength> | Array<Property$Bottom<TLength>>,
  2666. "box-decoration-break"?: Property$BoxDecorationBreak | Array<Property$BoxDecorationBreak>,
  2667. "box-shadow"?: Property$BoxShadow | Array<Property$BoxShadow>,
  2668. "box-sizing"?: Property$BoxSizing | Array<Property$BoxSizing>,
  2669. "break-after"?: Property$BreakAfter | Array<Property$BreakAfter>,
  2670. "break-before"?: Property$BreakBefore | Array<Property$BreakBefore>,
  2671. "break-inside"?: Property$BreakInside | Array<Property$BreakInside>,
  2672. "caption-side"?: Property$CaptionSide | Array<Property$CaptionSide>,
  2673. "caret-color"?: Property$CaretColor | Array<Property$CaretColor>,
  2674. "caret-shape"?: Property$CaretShape | Array<Property$CaretShape>,
  2675. clear?: Property$Clear | Array<Property$Clear>,
  2676. "clip-path"?: Property$ClipPath | Array<Property$ClipPath>,
  2677. color?: Property$Color | Array<Property$Color>,
  2678. "color-adjust"?: Property$PrintColorAdjust | Array<Property$PrintColorAdjust>,
  2679. "color-scheme"?: Property$ColorScheme | Array<Property$ColorScheme>,
  2680. "column-count"?: Property$ColumnCount | Array<Property$ColumnCount>,
  2681. "column-fill"?: Property$ColumnFill | Array<Property$ColumnFill>,
  2682. "column-gap"?: Property$ColumnGap<TLength> | Array<Property$ColumnGap<TLength>>,
  2683. "column-rule-color"?: Property$ColumnRuleColor | Array<Property$ColumnRuleColor>,
  2684. "column-rule-style"?: Property$ColumnRuleStyle | Array<Property$ColumnRuleStyle>,
  2685. "column-rule-width"?: Property$ColumnRuleWidth<TLength> | Array<Property$ColumnRuleWidth<TLength>>,
  2686. "column-span"?: Property$ColumnSpan | Array<Property$ColumnSpan>,
  2687. "column-width"?: Property$ColumnWidth<TLength> | Array<Property$ColumnWidth<TLength>>,
  2688. contain?: Property$Contain | Array<Property$Contain>,
  2689. "contain-intrinsic-block-size"?: Property$ContainIntrinsicBlockSize<TLength> | Array<Property$ContainIntrinsicBlockSize<TLength>>,
  2690. "contain-intrinsic-height"?: Property$ContainIntrinsicHeight<TLength> | Array<Property$ContainIntrinsicHeight<TLength>>,
  2691. "contain-intrinsic-inline-size"?: Property$ContainIntrinsicInlineSize<TLength> | Array<Property$ContainIntrinsicInlineSize<TLength>>,
  2692. "contain-intrinsic-width"?: Property$ContainIntrinsicWidth<TLength> | Array<Property$ContainIntrinsicWidth<TLength>>,
  2693. "container-name"?: Property$ContainerName | Array<Property$ContainerName>,
  2694. "container-type"?: Property$ContainerType | Array<Property$ContainerType>,
  2695. content?: Property$Content | Array<Property$Content>,
  2696. "content-visibility"?: Property$ContentVisibility | Array<Property$ContentVisibility>,
  2697. "counter-increment"?: Property$CounterIncrement | Array<Property$CounterIncrement>,
  2698. "counter-reset"?: Property$CounterReset | Array<Property$CounterReset>,
  2699. "counter-set"?: Property$CounterSet | Array<Property$CounterSet>,
  2700. cursor?: Property$Cursor | Array<Property$Cursor>,
  2701. direction?: Property$Direction | Array<Property$Direction>,
  2702. display?: Property$Display | Array<Property$Display>,
  2703. "empty-cells"?: Property$EmptyCells | Array<Property$EmptyCells>,
  2704. filter?: Property$Filter | Array<Property$Filter>,
  2705. "flex-basis"?: Property$FlexBasis<TLength> | Array<Property$FlexBasis<TLength>>,
  2706. "flex-direction"?: Property$FlexDirection | Array<Property$FlexDirection>,
  2707. "flex-grow"?: Property$FlexGrow | Array<Property$FlexGrow>,
  2708. "flex-shrink"?: Property$FlexShrink | Array<Property$FlexShrink>,
  2709. "flex-wrap"?: Property$FlexWrap | Array<Property$FlexWrap>,
  2710. float?: Property$Float | Array<Property$Float>,
  2711. "font-family"?: Property$FontFamily | Array<Property$FontFamily>,
  2712. "font-feature-settings"?: Property$FontFeatureSettings | Array<Property$FontFeatureSettings>,
  2713. "font-kerning"?: Property$FontKerning | Array<Property$FontKerning>,
  2714. "font-language-override"?: Property$FontLanguageOverride | Array<Property$FontLanguageOverride>,
  2715. "font-optical-sizing"?: Property$FontOpticalSizing | Array<Property$FontOpticalSizing>,
  2716. "font-palette"?: Property$FontPalette | Array<Property$FontPalette>,
  2717. "font-size"?: Property$FontSize<TLength> | Array<Property$FontSize<TLength>>,
  2718. "font-size-adjust"?: Property$FontSizeAdjust | Array<Property$FontSizeAdjust>,
  2719. "font-smooth"?: Property$FontSmooth<TLength> | Array<Property$FontSmooth<TLength>>,
  2720. "font-stretch"?: Property$FontStretch | Array<Property$FontStretch>,
  2721. "font-style"?: Property$FontStyle | Array<Property$FontStyle>,
  2722. "font-synthesis"?: Property$FontSynthesis | Array<Property$FontSynthesis>,
  2723. "font-variant"?: Property$FontVariant | Array<Property$FontVariant>,
  2724. "font-variant-alternates"?: Property$FontVariantAlternates | Array<Property$FontVariantAlternates>,
  2725. "font-variant-caps"?: Property$FontVariantCaps | Array<Property$FontVariantCaps>,
  2726. "font-variant-east-asian"?: Property$FontVariantEastAsian | Array<Property$FontVariantEastAsian>,
  2727. "font-variant-emoji"?: Property$FontVariantEmoji | Array<Property$FontVariantEmoji>,
  2728. "font-variant-ligatures"?: Property$FontVariantLigatures | Array<Property$FontVariantLigatures>,
  2729. "font-variant-numeric"?: Property$FontVariantNumeric | Array<Property$FontVariantNumeric>,
  2730. "font-variant-position"?: Property$FontVariantPosition | Array<Property$FontVariantPosition>,
  2731. "font-variation-settings"?: Property$FontVariationSettings | Array<Property$FontVariationSettings>,
  2732. "font-weight"?: Property$FontWeight | Array<Property$FontWeight>,
  2733. "forced-color-adjust"?: Property$ForcedColorAdjust | Array<Property$ForcedColorAdjust>,
  2734. "grid-auto-columns"?: Property$GridAutoColumns<TLength> | Array<Property$GridAutoColumns<TLength>>,
  2735. "grid-auto-flow"?: Property$GridAutoFlow | Array<Property$GridAutoFlow>,
  2736. "grid-auto-rows"?: Property$GridAutoRows<TLength> | Array<Property$GridAutoRows<TLength>>,
  2737. "grid-column-end"?: Property$GridColumnEnd | Array<Property$GridColumnEnd>,
  2738. "grid-column-start"?: Property$GridColumnStart | Array<Property$GridColumnStart>,
  2739. "grid-row-end"?: Property$GridRowEnd | Array<Property$GridRowEnd>,
  2740. "grid-row-start"?: Property$GridRowStart | Array<Property$GridRowStart>,
  2741. "grid-template-areas"?: Property$GridTemplateAreas | Array<Property$GridTemplateAreas>,
  2742. "grid-template-columns"?: Property$GridTemplateColumns<TLength> | Array<Property$GridTemplateColumns<TLength>>,
  2743. "grid-template-rows"?: Property$GridTemplateRows<TLength> | Array<Property$GridTemplateRows<TLength>>,
  2744. "hanging-punctuation"?: Property$HangingPunctuation | Array<Property$HangingPunctuation>,
  2745. height?: Property$Height<TLength> | Array<Property$Height<TLength>>,
  2746. "hyphenate-character"?: Property$HyphenateCharacter | Array<Property$HyphenateCharacter>,
  2747. "hyphenate-limit-chars"?: Property$HyphenateLimitChars | Array<Property$HyphenateLimitChars>,
  2748. hyphens?: Property$Hyphens | Array<Property$Hyphens>,
  2749. "image-orientation"?: Property$ImageOrientation | Array<Property$ImageOrientation>,
  2750. "image-rendering"?: Property$ImageRendering | Array<Property$ImageRendering>,
  2751. "image-resolution"?: Property$ImageResolution | Array<Property$ImageResolution>,
  2752. "initial-letter"?: Property$InitialLetter | Array<Property$InitialLetter>,
  2753. "inline-size"?: Property$InlineSize<TLength> | Array<Property$InlineSize<TLength>>,
  2754. "input-security"?: Property$InputSecurity | Array<Property$InputSecurity>,
  2755. "inset-block-end"?: Property$InsetBlockEnd<TLength> | Array<Property$InsetBlockEnd<TLength>>,
  2756. "inset-block-start"?: Property$InsetBlockStart<TLength> | Array<Property$InsetBlockStart<TLength>>,
  2757. "inset-inline-end"?: Property$InsetInlineEnd<TLength> | Array<Property$InsetInlineEnd<TLength>>,
  2758. "inset-inline-start"?: Property$InsetInlineStart<TLength> | Array<Property$InsetInlineStart<TLength>>,
  2759. isolation?: Property$Isolation | Array<Property$Isolation>,
  2760. "justify-content"?: Property$JustifyContent | Array<Property$JustifyContent>,
  2761. "justify-items"?: Property$JustifyItems | Array<Property$JustifyItems>,
  2762. "justify-self"?: Property$JustifySelf | Array<Property$JustifySelf>,
  2763. "justify-tracks"?: Property$JustifyTracks | Array<Property$JustifyTracks>,
  2764. left?: Property$Left<TLength> | Array<Property$Left<TLength>>,
  2765. "letter-spacing"?: Property$LetterSpacing<TLength> | Array<Property$LetterSpacing<TLength>>,
  2766. "line-break"?: Property$LineBreak | Array<Property$LineBreak>,
  2767. "line-height"?: Property$LineHeight<TLength> | Array<Property$LineHeight<TLength>>,
  2768. "line-height-step"?: Property$LineHeightStep<TLength> | Array<Property$LineHeightStep<TLength>>,
  2769. "list-style-image"?: Property$ListStyleImage | Array<Property$ListStyleImage>,
  2770. "list-style-position"?: Property$ListStylePosition | Array<Property$ListStylePosition>,
  2771. "list-style-type"?: Property$ListStyleType | Array<Property$ListStyleType>,
  2772. "margin-block-end"?: Property$MarginBlockEnd<TLength> | Array<Property$MarginBlockEnd<TLength>>,
  2773. "margin-block-start"?: Property$MarginBlockStart<TLength> | Array<Property$MarginBlockStart<TLength>>,
  2774. "margin-bottom"?: Property$MarginBottom<TLength> | Array<Property$MarginBottom<TLength>>,
  2775. "margin-inline-end"?: Property$MarginInlineEnd<TLength> | Array<Property$MarginInlineEnd<TLength>>,
  2776. "margin-inline-start"?: Property$MarginInlineStart<TLength> | Array<Property$MarginInlineStart<TLength>>,
  2777. "margin-left"?: Property$MarginLeft<TLength> | Array<Property$MarginLeft<TLength>>,
  2778. "margin-right"?: Property$MarginRight<TLength> | Array<Property$MarginRight<TLength>>,
  2779. "margin-top"?: Property$MarginTop<TLength> | Array<Property$MarginTop<TLength>>,
  2780. "margin-trim"?: Property$MarginTrim | Array<Property$MarginTrim>,
  2781. "mask-border-mode"?: Property$MaskBorderMode | Array<Property$MaskBorderMode>,
  2782. "mask-border-outset"?: Property$MaskBorderOutset<TLength> | Array<Property$MaskBorderOutset<TLength>>,
  2783. "mask-border-repeat"?: Property$MaskBorderRepeat | Array<Property$MaskBorderRepeat>,
  2784. "mask-border-slice"?: Property$MaskBorderSlice | Array<Property$MaskBorderSlice>,
  2785. "mask-border-source"?: Property$MaskBorderSource | Array<Property$MaskBorderSource>,
  2786. "mask-border-width"?: Property$MaskBorderWidth<TLength> | Array<Property$MaskBorderWidth<TLength>>,
  2787. "mask-clip"?: Property$MaskClip | Array<Property$MaskClip>,
  2788. "mask-composite"?: Property$MaskComposite | Array<Property$MaskComposite>,
  2789. "mask-image"?: Property$MaskImage | Array<Property$MaskImage>,
  2790. "mask-mode"?: Property$MaskMode | Array<Property$MaskMode>,
  2791. "mask-origin"?: Property$MaskOrigin | Array<Property$MaskOrigin>,
  2792. "mask-position"?: Property$MaskPosition<TLength> | Array<Property$MaskPosition<TLength>>,
  2793. "mask-repeat"?: Property$MaskRepeat | Array<Property$MaskRepeat>,
  2794. "mask-size"?: Property$MaskSize<TLength> | Array<Property$MaskSize<TLength>>,
  2795. "mask-type"?: Property$MaskType | Array<Property$MaskType>,
  2796. "math-depth"?: Property$MathDepth | Array<Property$MathDepth>,
  2797. "math-shift"?: Property$MathShift | Array<Property$MathShift>,
  2798. "math-style"?: Property$MathStyle | Array<Property$MathStyle>,
  2799. "max-block-size"?: Property$MaxBlockSize<TLength> | Array<Property$MaxBlockSize<TLength>>,
  2800. "max-height"?: Property$MaxHeight<TLength> | Array<Property$MaxHeight<TLength>>,
  2801. "max-inline-size"?: Property$MaxInlineSize<TLength> | Array<Property$MaxInlineSize<TLength>>,
  2802. "max-lines"?: Property$MaxLines | Array<Property$MaxLines>,
  2803. "max-width"?: Property$MaxWidth<TLength> | Array<Property$MaxWidth<TLength>>,
  2804. "min-block-size"?: Property$MinBlockSize<TLength> | Array<Property$MinBlockSize<TLength>>,
  2805. "min-height"?: Property$MinHeight<TLength> | Array<Property$MinHeight<TLength>>,
  2806. "min-inline-size"?: Property$MinInlineSize<TLength> | Array<Property$MinInlineSize<TLength>>,
  2807. "min-width"?: Property$MinWidth<TLength> | Array<Property$MinWidth<TLength>>,
  2808. "mix-blend-mode"?: Property$MixBlendMode | Array<Property$MixBlendMode>,
  2809. "motion-distance"?: Property$OffsetDistance<TLength> | Array<Property$OffsetDistance<TLength>>,
  2810. "motion-path"?: Property$OffsetPath | Array<Property$OffsetPath>,
  2811. "motion-rotation"?: Property$OffsetRotate | Array<Property$OffsetRotate>,
  2812. "object-fit"?: Property$ObjectFit | Array<Property$ObjectFit>,
  2813. "object-position"?: Property$ObjectPosition<TLength> | Array<Property$ObjectPosition<TLength>>,
  2814. "offset-anchor"?: Property$OffsetAnchor<TLength> | Array<Property$OffsetAnchor<TLength>>,
  2815. "offset-distance"?: Property$OffsetDistance<TLength> | Array<Property$OffsetDistance<TLength>>,
  2816. "offset-path"?: Property$OffsetPath | Array<Property$OffsetPath>,
  2817. "offset-position"?: Property$OffsetPosition<TLength> | Array<Property$OffsetPosition<TLength>>,
  2818. "offset-rotate"?: Property$OffsetRotate | Array<Property$OffsetRotate>,
  2819. "offset-rotation"?: Property$OffsetRotate | Array<Property$OffsetRotate>,
  2820. opacity?: Property$Opacity | Array<Property$Opacity>,
  2821. order?: Property$Order | Array<Property$Order>,
  2822. orphans?: Property$Orphans | Array<Property$Orphans>,
  2823. "outline-color"?: Property$OutlineColor | Array<Property$OutlineColor>,
  2824. "outline-offset"?: Property$OutlineOffset<TLength> | Array<Property$OutlineOffset<TLength>>,
  2825. "outline-style"?: Property$OutlineStyle | Array<Property$OutlineStyle>,
  2826. "outline-width"?: Property$OutlineWidth<TLength> | Array<Property$OutlineWidth<TLength>>,
  2827. "overflow-anchor"?: Property$OverflowAnchor | Array<Property$OverflowAnchor>,
  2828. "overflow-block"?: Property$OverflowBlock | Array<Property$OverflowBlock>,
  2829. "overflow-clip-box"?: Property$OverflowClipBox | Array<Property$OverflowClipBox>,
  2830. "overflow-clip-margin"?: Property$OverflowClipMargin<TLength> | Array<Property$OverflowClipMargin<TLength>>,
  2831. "overflow-inline"?: Property$OverflowInline | Array<Property$OverflowInline>,
  2832. "overflow-wrap"?: Property$OverflowWrap | Array<Property$OverflowWrap>,
  2833. "overflow-x"?: Property$OverflowX | Array<Property$OverflowX>,
  2834. "overflow-y"?: Property$OverflowY | Array<Property$OverflowY>,
  2835. "overscroll-behavior-block"?: Property$OverscrollBehaviorBlock | Array<Property$OverscrollBehaviorBlock>,
  2836. "overscroll-behavior-inline"?: Property$OverscrollBehaviorInline | Array<Property$OverscrollBehaviorInline>,
  2837. "overscroll-behavior-x"?: Property$OverscrollBehaviorX | Array<Property$OverscrollBehaviorX>,
  2838. "overscroll-behavior-y"?: Property$OverscrollBehaviorY | Array<Property$OverscrollBehaviorY>,
  2839. "padding-block-end"?: Property$PaddingBlockEnd<TLength> | Array<Property$PaddingBlockEnd<TLength>>,
  2840. "padding-block-start"?: Property$PaddingBlockStart<TLength> | Array<Property$PaddingBlockStart<TLength>>,
  2841. "padding-bottom"?: Property$PaddingBottom<TLength> | Array<Property$PaddingBottom<TLength>>,
  2842. "padding-inline-end"?: Property$PaddingInlineEnd<TLength> | Array<Property$PaddingInlineEnd<TLength>>,
  2843. "padding-inline-start"?: Property$PaddingInlineStart<TLength> | Array<Property$PaddingInlineStart<TLength>>,
  2844. "padding-left"?: Property$PaddingLeft<TLength> | Array<Property$PaddingLeft<TLength>>,
  2845. "padding-right"?: Property$PaddingRight<TLength> | Array<Property$PaddingRight<TLength>>,
  2846. "padding-top"?: Property$PaddingTop<TLength> | Array<Property$PaddingTop<TLength>>,
  2847. page?: Property$Page | Array<Property$Page>,
  2848. "page-break-after"?: Property$PageBreakAfter | Array<Property$PageBreakAfter>,
  2849. "page-break-before"?: Property$PageBreakBefore | Array<Property$PageBreakBefore>,
  2850. "page-break-inside"?: Property$PageBreakInside | Array<Property$PageBreakInside>,
  2851. "paint-order"?: Property$PaintOrder | Array<Property$PaintOrder>,
  2852. perspective?: Property$Perspective<TLength> | Array<Property$Perspective<TLength>>,
  2853. "perspective-origin"?: Property$PerspectiveOrigin<TLength> | Array<Property$PerspectiveOrigin<TLength>>,
  2854. "pointer-events"?: Property$PointerEvents | Array<Property$PointerEvents>,
  2855. position?: Property$Position | Array<Property$Position>,
  2856. "print-color-adjust"?: Property$PrintColorAdjust | Array<Property$PrintColorAdjust>,
  2857. quotes?: Property$Quotes | Array<Property$Quotes>,
  2858. resize?: Property$Resize | Array<Property$Resize>,
  2859. right?: Property$Right<TLength> | Array<Property$Right<TLength>>,
  2860. rotate?: Property$Rotate | Array<Property$Rotate>,
  2861. "row-gap"?: Property$RowGap<TLength> | Array<Property$RowGap<TLength>>,
  2862. "ruby-align"?: Property$RubyAlign | Array<Property$RubyAlign>,
  2863. "ruby-merge"?: Property$RubyMerge | Array<Property$RubyMerge>,
  2864. "ruby-position"?: Property$RubyPosition | Array<Property$RubyPosition>,
  2865. scale?: Property$Scale | Array<Property$Scale>,
  2866. "scroll-behavior"?: Property$ScrollBehavior | Array<Property$ScrollBehavior>,
  2867. "scroll-margin-block-end"?: Property$ScrollMarginBlockEnd<TLength> | Array<Property$ScrollMarginBlockEnd<TLength>>,
  2868. "scroll-margin-block-start"?: Property$ScrollMarginBlockStart<TLength> | Array<Property$ScrollMarginBlockStart<TLength>>,
  2869. "scroll-margin-bottom"?: Property$ScrollMarginBottom<TLength> | Array<Property$ScrollMarginBottom<TLength>>,
  2870. "scroll-margin-inline-end"?: Property$ScrollMarginInlineEnd<TLength> | Array<Property$ScrollMarginInlineEnd<TLength>>,
  2871. "scroll-margin-inline-start"?: Property$ScrollMarginInlineStart<TLength> | Array<Property$ScrollMarginInlineStart<TLength>>,
  2872. "scroll-margin-left"?: Property$ScrollMarginLeft<TLength> | Array<Property$ScrollMarginLeft<TLength>>,
  2873. "scroll-margin-right"?: Property$ScrollMarginRight<TLength> | Array<Property$ScrollMarginRight<TLength>>,
  2874. "scroll-margin-top"?: Property$ScrollMarginTop<TLength> | Array<Property$ScrollMarginTop<TLength>>,
  2875. "scroll-padding-block-end"?: Property$ScrollPaddingBlockEnd<TLength> | Array<Property$ScrollPaddingBlockEnd<TLength>>,
  2876. "scroll-padding-block-start"?: Property$ScrollPaddingBlockStart<TLength> | Array<Property$ScrollPaddingBlockStart<TLength>>,
  2877. "scroll-padding-bottom"?: Property$ScrollPaddingBottom<TLength> | Array<Property$ScrollPaddingBottom<TLength>>,
  2878. "scroll-padding-inline-end"?: Property$ScrollPaddingInlineEnd<TLength> | Array<Property$ScrollPaddingInlineEnd<TLength>>,
  2879. "scroll-padding-inline-start"?: Property$ScrollPaddingInlineStart<TLength> | Array<Property$ScrollPaddingInlineStart<TLength>>,
  2880. "scroll-padding-left"?: Property$ScrollPaddingLeft<TLength> | Array<Property$ScrollPaddingLeft<TLength>>,
  2881. "scroll-padding-right"?: Property$ScrollPaddingRight<TLength> | Array<Property$ScrollPaddingRight<TLength>>,
  2882. "scroll-padding-top"?: Property$ScrollPaddingTop<TLength> | Array<Property$ScrollPaddingTop<TLength>>,
  2883. "scroll-snap-align"?: Property$ScrollSnapAlign | Array<Property$ScrollSnapAlign>,
  2884. "scroll-snap-margin-bottom"?: Property$ScrollMarginBottom<TLength> | Array<Property$ScrollMarginBottom<TLength>>,
  2885. "scroll-snap-margin-left"?: Property$ScrollMarginLeft<TLength> | Array<Property$ScrollMarginLeft<TLength>>,
  2886. "scroll-snap-margin-right"?: Property$ScrollMarginRight<TLength> | Array<Property$ScrollMarginRight<TLength>>,
  2887. "scroll-snap-margin-top"?: Property$ScrollMarginTop<TLength> | Array<Property$ScrollMarginTop<TLength>>,
  2888. "scroll-snap-stop"?: Property$ScrollSnapStop | Array<Property$ScrollSnapStop>,
  2889. "scroll-snap-type"?: Property$ScrollSnapType | Array<Property$ScrollSnapType>,
  2890. "scroll-timeline-axis"?: Property$ScrollTimelineAxis | Array<Property$ScrollTimelineAxis>,
  2891. "scroll-timeline-name"?: Property$ScrollTimelineName | Array<Property$ScrollTimelineName>,
  2892. "scrollbar-color"?: Property$ScrollbarColor | Array<Property$ScrollbarColor>,
  2893. "scrollbar-gutter"?: Property$ScrollbarGutter | Array<Property$ScrollbarGutter>,
  2894. "scrollbar-width"?: Property$ScrollbarWidth | Array<Property$ScrollbarWidth>,
  2895. "shape-image-threshold"?: Property$ShapeImageThreshold | Array<Property$ShapeImageThreshold>,
  2896. "shape-margin"?: Property$ShapeMargin<TLength> | Array<Property$ShapeMargin<TLength>>,
  2897. "shape-outside"?: Property$ShapeOutside | Array<Property$ShapeOutside>,
  2898. "tab-size"?: Property$TabSize<TLength> | Array<Property$TabSize<TLength>>,
  2899. "table-layout"?: Property$TableLayout | Array<Property$TableLayout>,
  2900. "text-align"?: Property$TextAlign | Array<Property$TextAlign>,
  2901. "text-align-last"?: Property$TextAlignLast | Array<Property$TextAlignLast>,
  2902. "text-combine-upright"?: Property$TextCombineUpright | Array<Property$TextCombineUpright>,
  2903. "text-decoration-color"?: Property$TextDecorationColor | Array<Property$TextDecorationColor>,
  2904. "text-decoration-line"?: Property$TextDecorationLine | Array<Property$TextDecorationLine>,
  2905. "text-decoration-skip"?: Property$TextDecorationSkip | Array<Property$TextDecorationSkip>,
  2906. "text-decoration-skip-ink"?: Property$TextDecorationSkipInk | Array<Property$TextDecorationSkipInk>,
  2907. "text-decoration-style"?: Property$TextDecorationStyle | Array<Property$TextDecorationStyle>,
  2908. "text-decoration-thickness"?: Property$TextDecorationThickness<TLength> | Array<Property$TextDecorationThickness<TLength>>,
  2909. "text-emphasis-color"?: Property$TextEmphasisColor | Array<Property$TextEmphasisColor>,
  2910. "text-emphasis-position"?: Property$TextEmphasisPosition | Array<Property$TextEmphasisPosition>,
  2911. "text-emphasis-style"?: Property$TextEmphasisStyle | Array<Property$TextEmphasisStyle>,
  2912. "text-indent"?: Property$TextIndent<TLength> | Array<Property$TextIndent<TLength>>,
  2913. "text-justify"?: Property$TextJustify | Array<Property$TextJustify>,
  2914. "text-orientation"?: Property$TextOrientation | Array<Property$TextOrientation>,
  2915. "text-overflow"?: Property$TextOverflow | Array<Property$TextOverflow>,
  2916. "text-rendering"?: Property$TextRendering | Array<Property$TextRendering>,
  2917. "text-shadow"?: Property$TextShadow | Array<Property$TextShadow>,
  2918. "text-size-adjust"?: Property$TextSizeAdjust | Array<Property$TextSizeAdjust>,
  2919. "text-transform"?: Property$TextTransform | Array<Property$TextTransform>,
  2920. "text-underline-offset"?: Property$TextUnderlineOffset<TLength> | Array<Property$TextUnderlineOffset<TLength>>,
  2921. "text-underline-position"?: Property$TextUnderlinePosition | Array<Property$TextUnderlinePosition>,
  2922. top?: Property$Top<TLength> | Array<Property$Top<TLength>>,
  2923. "touch-action"?: Property$TouchAction | Array<Property$TouchAction>,
  2924. transform?: Property$Transform | Array<Property$Transform>,
  2925. "transform-box"?: Property$TransformBox | Array<Property$TransformBox>,
  2926. "transform-origin"?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  2927. "transform-style"?: Property$TransformStyle | Array<Property$TransformStyle>,
  2928. "transition-delay"?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  2929. "transition-duration"?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  2930. "transition-property"?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  2931. "transition-timing-function"?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  2932. translate?: Property$Translate<TLength> | Array<Property$Translate<TLength>>,
  2933. "unicode-bidi"?: Property$UnicodeBidi | Array<Property$UnicodeBidi>,
  2934. "user-select"?: Property$UserSelect | Array<Property$UserSelect>,
  2935. "vertical-align"?: Property$VerticalAlign<TLength> | Array<Property$VerticalAlign<TLength>>,
  2936. "view-transition-name"?: Property$ViewTransitionName | Array<Property$ViewTransitionName>,
  2937. visibility?: Property$Visibility | Array<Property$Visibility>,
  2938. "white-space"?: Property$WhiteSpace | Array<Property$WhiteSpace>,
  2939. widows?: Property$Widows | Array<Property$Widows>,
  2940. width?: Property$Width<TLength> | Array<Property$Width<TLength>>,
  2941. "will-change"?: Property$WillChange | Array<Property$WillChange>,
  2942. "word-break"?: Property$WordBreak | Array<Property$WordBreak>,
  2943. "word-spacing"?: Property$WordSpacing<TLength> | Array<Property$WordSpacing<TLength>>,
  2944. "word-wrap"?: Property$WordWrap | Array<Property$WordWrap>,
  2945. "writing-mode"?: Property$WritingMode | Array<Property$WritingMode>,
  2946. "z-index"?: Property$ZIndex | Array<Property$ZIndex>,
  2947. zoom?: Property$Zoom | Array<Property$Zoom>,
  2948. |};
  2949. export type StandardShorthandPropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  2950. all?: Property$All | Array<Property$All>,
  2951. animation?: Property$Animation<TTime> | Array<Property$Animation<TTime>>,
  2952. background?: Property$Background<TLength> | Array<Property$Background<TLength>>,
  2953. "background-position"?: Property$BackgroundPosition<TLength> | Array<Property$BackgroundPosition<TLength>>,
  2954. border?: Property$Border<TLength> | Array<Property$Border<TLength>>,
  2955. "border-block"?: Property$BorderBlock<TLength> | Array<Property$BorderBlock<TLength>>,
  2956. "border-block-end"?: Property$BorderBlockEnd<TLength> | Array<Property$BorderBlockEnd<TLength>>,
  2957. "border-block-start"?: Property$BorderBlockStart<TLength> | Array<Property$BorderBlockStart<TLength>>,
  2958. "border-bottom"?: Property$BorderBottom<TLength> | Array<Property$BorderBottom<TLength>>,
  2959. "border-color"?: Property$BorderColor | Array<Property$BorderColor>,
  2960. "border-image"?: Property$BorderImage | Array<Property$BorderImage>,
  2961. "border-inline"?: Property$BorderInline<TLength> | Array<Property$BorderInline<TLength>>,
  2962. "border-inline-end"?: Property$BorderInlineEnd<TLength> | Array<Property$BorderInlineEnd<TLength>>,
  2963. "border-inline-start"?: Property$BorderInlineStart<TLength> | Array<Property$BorderInlineStart<TLength>>,
  2964. "border-left"?: Property$BorderLeft<TLength> | Array<Property$BorderLeft<TLength>>,
  2965. "border-radius"?: Property$BorderRadius<TLength> | Array<Property$BorderRadius<TLength>>,
  2966. "border-right"?: Property$BorderRight<TLength> | Array<Property$BorderRight<TLength>>,
  2967. "border-style"?: Property$BorderStyle | Array<Property$BorderStyle>,
  2968. "border-top"?: Property$BorderTop<TLength> | Array<Property$BorderTop<TLength>>,
  2969. "border-width"?: Property$BorderWidth<TLength> | Array<Property$BorderWidth<TLength>>,
  2970. caret?: Property$Caret | Array<Property$Caret>,
  2971. "column-rule"?: Property$ColumnRule<TLength> | Array<Property$ColumnRule<TLength>>,
  2972. columns?: Property$Columns<TLength> | Array<Property$Columns<TLength>>,
  2973. "contain-intrinsic-size"?: Property$ContainIntrinsicSize<TLength> | Array<Property$ContainIntrinsicSize<TLength>>,
  2974. container?: Property$Container | Array<Property$Container>,
  2975. flex?: Property$Flex<TLength> | Array<Property$Flex<TLength>>,
  2976. "flex-flow"?: Property$FlexFlow | Array<Property$FlexFlow>,
  2977. font?: Property$Font | Array<Property$Font>,
  2978. gap?: Property$Gap<TLength> | Array<Property$Gap<TLength>>,
  2979. grid?: Property$Grid | Array<Property$Grid>,
  2980. "grid-area"?: Property$GridArea | Array<Property$GridArea>,
  2981. "grid-column"?: Property$GridColumn | Array<Property$GridColumn>,
  2982. "grid-row"?: Property$GridRow | Array<Property$GridRow>,
  2983. "grid-template"?: Property$GridTemplate | Array<Property$GridTemplate>,
  2984. inset?: Property$Inset<TLength> | Array<Property$Inset<TLength>>,
  2985. "inset-block"?: Property$InsetBlock<TLength> | Array<Property$InsetBlock<TLength>>,
  2986. "inset-inline"?: Property$InsetInline<TLength> | Array<Property$InsetInline<TLength>>,
  2987. "line-clamp"?: Property$LineClamp | Array<Property$LineClamp>,
  2988. "list-style"?: Property$ListStyle | Array<Property$ListStyle>,
  2989. margin?: Property$Margin<TLength> | Array<Property$Margin<TLength>>,
  2990. "margin-block"?: Property$MarginBlock<TLength> | Array<Property$MarginBlock<TLength>>,
  2991. "margin-inline"?: Property$MarginInline<TLength> | Array<Property$MarginInline<TLength>>,
  2992. mask?: Property$Mask<TLength> | Array<Property$Mask<TLength>>,
  2993. "mask-border"?: Property$MaskBorder | Array<Property$MaskBorder>,
  2994. motion?: Property$Offset<TLength> | Array<Property$Offset<TLength>>,
  2995. offset?: Property$Offset<TLength> | Array<Property$Offset<TLength>>,
  2996. outline?: Property$Outline<TLength> | Array<Property$Outline<TLength>>,
  2997. overflow?: Property$Overflow | Array<Property$Overflow>,
  2998. "overscroll-behavior"?: Property$OverscrollBehavior | Array<Property$OverscrollBehavior>,
  2999. padding?: Property$Padding<TLength> | Array<Property$Padding<TLength>>,
  3000. "padding-block"?: Property$PaddingBlock<TLength> | Array<Property$PaddingBlock<TLength>>,
  3001. "padding-inline"?: Property$PaddingInline<TLength> | Array<Property$PaddingInline<TLength>>,
  3002. "place-content"?: Property$PlaceContent | Array<Property$PlaceContent>,
  3003. "place-items"?: Property$PlaceItems | Array<Property$PlaceItems>,
  3004. "place-self"?: Property$PlaceSelf | Array<Property$PlaceSelf>,
  3005. "scroll-margin"?: Property$ScrollMargin<TLength> | Array<Property$ScrollMargin<TLength>>,
  3006. "scroll-margin-block"?: Property$ScrollMarginBlock<TLength> | Array<Property$ScrollMarginBlock<TLength>>,
  3007. "scroll-margin-inline"?: Property$ScrollMarginInline<TLength> | Array<Property$ScrollMarginInline<TLength>>,
  3008. "scroll-padding"?: Property$ScrollPadding<TLength> | Array<Property$ScrollPadding<TLength>>,
  3009. "scroll-padding-block"?: Property$ScrollPaddingBlock<TLength> | Array<Property$ScrollPaddingBlock<TLength>>,
  3010. "scroll-padding-inline"?: Property$ScrollPaddingInline<TLength> | Array<Property$ScrollPaddingInline<TLength>>,
  3011. "scroll-snap-margin"?: Property$ScrollMargin<TLength> | Array<Property$ScrollMargin<TLength>>,
  3012. "scroll-timeline"?: Property$ScrollTimeline | Array<Property$ScrollTimeline>,
  3013. "text-decoration"?: Property$TextDecoration<TLength> | Array<Property$TextDecoration<TLength>>,
  3014. "text-emphasis"?: Property$TextEmphasis | Array<Property$TextEmphasis>,
  3015. transition?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  3016. |};
  3017. export type StandardPropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  3018. ...StandardLonghandPropertiesHyphenFallback<TLength, TTime>,
  3019. ...StandardShorthandPropertiesHyphenFallback<TLength, TTime>,
  3020. |};
  3021. export type VendorLonghandPropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  3022. "-moz-animation-delay"?: Property$AnimationDelay<TTime> | Array<Property$AnimationDelay<TTime>>,
  3023. "-moz-animation-direction"?: Property$AnimationDirection | Array<Property$AnimationDirection>,
  3024. "-moz-animation-duration"?: Property$AnimationDuration<TTime> | Array<Property$AnimationDuration<TTime>>,
  3025. "-moz-animation-fill-mode"?: Property$AnimationFillMode | Array<Property$AnimationFillMode>,
  3026. "-moz-animation-iteration-count"?: Property$AnimationIterationCount | Array<Property$AnimationIterationCount>,
  3027. "-moz-animation-name"?: Property$AnimationName | Array<Property$AnimationName>,
  3028. "-moz-animation-play-state"?: Property$AnimationPlayState | Array<Property$AnimationPlayState>,
  3029. "-moz-animation-timing-function"?: Property$AnimationTimingFunction | Array<Property$AnimationTimingFunction>,
  3030. "-moz-appearance"?: Property$MozAppearance | Array<Property$MozAppearance>,
  3031. "-moz-backface-visibility"?: Property$BackfaceVisibility | Array<Property$BackfaceVisibility>,
  3032. "-moz-binding"?: Property$MozBinding | Array<Property$MozBinding>,
  3033. "-moz-border-bottom-colors"?: Property$MozBorderBottomColors | Array<Property$MozBorderBottomColors>,
  3034. "-moz-border-end-color"?: Property$BorderInlineEndColor | Array<Property$BorderInlineEndColor>,
  3035. "-moz-border-end-style"?: Property$BorderInlineEndStyle | Array<Property$BorderInlineEndStyle>,
  3036. "-moz-border-end-width"?: Property$BorderInlineEndWidth<TLength> | Array<Property$BorderInlineEndWidth<TLength>>,
  3037. "-moz-border-left-colors"?: Property$MozBorderLeftColors | Array<Property$MozBorderLeftColors>,
  3038. "-moz-border-right-colors"?: Property$MozBorderRightColors | Array<Property$MozBorderRightColors>,
  3039. "-moz-border-start-color"?: Property$BorderInlineStartColor | Array<Property$BorderInlineStartColor>,
  3040. "-moz-border-start-style"?: Property$BorderInlineStartStyle | Array<Property$BorderInlineStartStyle>,
  3041. "-moz-border-top-colors"?: Property$MozBorderTopColors | Array<Property$MozBorderTopColors>,
  3042. "-moz-box-sizing"?: Property$BoxSizing | Array<Property$BoxSizing>,
  3043. "-moz-column-count"?: Property$ColumnCount | Array<Property$ColumnCount>,
  3044. "-moz-column-fill"?: Property$ColumnFill | Array<Property$ColumnFill>,
  3045. "-moz-column-rule-color"?: Property$ColumnRuleColor | Array<Property$ColumnRuleColor>,
  3046. "-moz-column-rule-style"?: Property$ColumnRuleStyle | Array<Property$ColumnRuleStyle>,
  3047. "-moz-column-rule-width"?: Property$ColumnRuleWidth<TLength> | Array<Property$ColumnRuleWidth<TLength>>,
  3048. "-moz-column-width"?: Property$ColumnWidth<TLength> | Array<Property$ColumnWidth<TLength>>,
  3049. "-moz-context-properties"?: Property$MozContextProperties | Array<Property$MozContextProperties>,
  3050. "-moz-font-feature-settings"?: Property$FontFeatureSettings | Array<Property$FontFeatureSettings>,
  3051. "-moz-font-language-override"?: Property$FontLanguageOverride | Array<Property$FontLanguageOverride>,
  3052. "-moz-hyphens"?: Property$Hyphens | Array<Property$Hyphens>,
  3053. "-moz-image-region"?: Property$MozImageRegion | Array<Property$MozImageRegion>,
  3054. "-moz-margin-end"?: Property$MarginInlineEnd<TLength> | Array<Property$MarginInlineEnd<TLength>>,
  3055. "-moz-margin-start"?: Property$MarginInlineStart<TLength> | Array<Property$MarginInlineStart<TLength>>,
  3056. "-moz-orient"?: Property$MozOrient | Array<Property$MozOrient>,
  3057. "-moz-osx-font-smoothing"?: Property$FontSmooth<TLength> | Array<Property$FontSmooth<TLength>>,
  3058. "-moz-padding-end"?: Property$PaddingInlineEnd<TLength> | Array<Property$PaddingInlineEnd<TLength>>,
  3059. "-moz-padding-start"?: Property$PaddingInlineStart<TLength> | Array<Property$PaddingInlineStart<TLength>>,
  3060. "-moz-perspective"?: Property$Perspective<TLength> | Array<Property$Perspective<TLength>>,
  3061. "-moz-perspective-origin"?: Property$PerspectiveOrigin<TLength> | Array<Property$PerspectiveOrigin<TLength>>,
  3062. "-moz-stack-sizing"?: Property$MozStackSizing | Array<Property$MozStackSizing>,
  3063. "-moz-tab-size"?: Property$TabSize<TLength> | Array<Property$TabSize<TLength>>,
  3064. "-moz-text-blink"?: Property$MozTextBlink | Array<Property$MozTextBlink>,
  3065. "-moz-text-size-adjust"?: Property$TextSizeAdjust | Array<Property$TextSizeAdjust>,
  3066. "-moz-transform-origin"?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  3067. "-moz-transform-style"?: Property$TransformStyle | Array<Property$TransformStyle>,
  3068. "-moz-transition-delay"?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  3069. "-moz-transition-duration"?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  3070. "-moz-transition-property"?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  3071. "-moz-transition-timing-function"?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  3072. "-moz-user-focus"?: Property$MozUserFocus | Array<Property$MozUserFocus>,
  3073. "-moz-user-modify"?: Property$MozUserModify | Array<Property$MozUserModify>,
  3074. "-moz-user-select"?: Property$UserSelect | Array<Property$UserSelect>,
  3075. "-moz-window-dragging"?: Property$MozWindowDragging | Array<Property$MozWindowDragging>,
  3076. "-moz-window-shadow"?: Property$MozWindowShadow | Array<Property$MozWindowShadow>,
  3077. "-ms-accelerator"?: Property$MsAccelerator | Array<Property$MsAccelerator>,
  3078. "-ms-block-progression"?: Property$MsBlockProgression | Array<Property$MsBlockProgression>,
  3079. "-ms-content-zoom-chaining"?: Property$MsContentZoomChaining | Array<Property$MsContentZoomChaining>,
  3080. "-ms-content-zoom-limit-max"?: Property$MsContentZoomLimitMax | Array<Property$MsContentZoomLimitMax>,
  3081. "-ms-content-zoom-limit-min"?: Property$MsContentZoomLimitMin | Array<Property$MsContentZoomLimitMin>,
  3082. "-ms-content-zoom-snap-points"?: Property$MsContentZoomSnapPoints | Array<Property$MsContentZoomSnapPoints>,
  3083. "-ms-content-zoom-snap-type"?: Property$MsContentZoomSnapType | Array<Property$MsContentZoomSnapType>,
  3084. "-ms-content-zooming"?: Property$MsContentZooming | Array<Property$MsContentZooming>,
  3085. "-ms-filter"?: Property$MsFilter | Array<Property$MsFilter>,
  3086. "-ms-flex-direction"?: Property$FlexDirection | Array<Property$FlexDirection>,
  3087. "-ms-flex-positive"?: Property$FlexGrow | Array<Property$FlexGrow>,
  3088. "-ms-flow-from"?: Property$MsFlowFrom | Array<Property$MsFlowFrom>,
  3089. "-ms-flow-into"?: Property$MsFlowInto | Array<Property$MsFlowInto>,
  3090. "-ms-grid-columns"?: Property$MsGridColumns<TLength> | Array<Property$MsGridColumns<TLength>>,
  3091. "-ms-grid-rows"?: Property$MsGridRows<TLength> | Array<Property$MsGridRows<TLength>>,
  3092. "-ms-high-contrast-adjust"?: Property$MsHighContrastAdjust | Array<Property$MsHighContrastAdjust>,
  3093. "-ms-hyphenate-limit-chars"?: Property$MsHyphenateLimitChars | Array<Property$MsHyphenateLimitChars>,
  3094. "-ms-hyphenate-limit-lines"?: Property$MsHyphenateLimitLines | Array<Property$MsHyphenateLimitLines>,
  3095. "-ms-hyphenate-limit-zone"?: Property$MsHyphenateLimitZone<TLength> | Array<Property$MsHyphenateLimitZone<TLength>>,
  3096. "-ms-hyphens"?: Property$Hyphens | Array<Property$Hyphens>,
  3097. "-ms-ime-align"?: Property$MsImeAlign | Array<Property$MsImeAlign>,
  3098. "-ms-line-break"?: Property$LineBreak | Array<Property$LineBreak>,
  3099. "-ms-order"?: Property$Order | Array<Property$Order>,
  3100. "-ms-overflow-style"?: Property$MsOverflowStyle | Array<Property$MsOverflowStyle>,
  3101. "-ms-overflow-x"?: Property$OverflowX | Array<Property$OverflowX>,
  3102. "-ms-overflow-y"?: Property$OverflowY | Array<Property$OverflowY>,
  3103. "-ms-scroll-chaining"?: Property$MsScrollChaining | Array<Property$MsScrollChaining>,
  3104. "-ms-scroll-limit-x-max"?: Property$MsScrollLimitXMax<TLength> | Array<Property$MsScrollLimitXMax<TLength>>,
  3105. "-ms-scroll-limit-x-min"?: Property$MsScrollLimitXMin<TLength> | Array<Property$MsScrollLimitXMin<TLength>>,
  3106. "-ms-scroll-limit-y-max"?: Property$MsScrollLimitYMax<TLength> | Array<Property$MsScrollLimitYMax<TLength>>,
  3107. "-ms-scroll-limit-y-min"?: Property$MsScrollLimitYMin<TLength> | Array<Property$MsScrollLimitYMin<TLength>>,
  3108. "-ms-scroll-rails"?: Property$MsScrollRails | Array<Property$MsScrollRails>,
  3109. "-ms-scroll-snap-points-x"?: Property$MsScrollSnapPointsX | Array<Property$MsScrollSnapPointsX>,
  3110. "-ms-scroll-snap-points-y"?: Property$MsScrollSnapPointsY | Array<Property$MsScrollSnapPointsY>,
  3111. "-ms-scroll-snap-type"?: Property$MsScrollSnapType | Array<Property$MsScrollSnapType>,
  3112. "-ms-scroll-translation"?: Property$MsScrollTranslation | Array<Property$MsScrollTranslation>,
  3113. "-ms-scrollbar-3dlight-color"?: Property$MsScrollbar3dlightColor | Array<Property$MsScrollbar3dlightColor>,
  3114. "-ms-scrollbar-arrow-color"?: Property$MsScrollbarArrowColor | Array<Property$MsScrollbarArrowColor>,
  3115. "-ms-scrollbar-base-color"?: Property$MsScrollbarBaseColor | Array<Property$MsScrollbarBaseColor>,
  3116. "-ms-scrollbar-darkshadow-color"?: Property$MsScrollbarDarkshadowColor | Array<Property$MsScrollbarDarkshadowColor>,
  3117. "-ms-scrollbar-face-color"?: Property$MsScrollbarFaceColor | Array<Property$MsScrollbarFaceColor>,
  3118. "-ms-scrollbar-highlight-color"?: Property$MsScrollbarHighlightColor | Array<Property$MsScrollbarHighlightColor>,
  3119. "-ms-scrollbar-shadow-color"?: Property$MsScrollbarShadowColor | Array<Property$MsScrollbarShadowColor>,
  3120. "-ms-scrollbar-track-color"?: Property$MsScrollbarTrackColor | Array<Property$MsScrollbarTrackColor>,
  3121. "-ms-text-autospace"?: Property$MsTextAutospace | Array<Property$MsTextAutospace>,
  3122. "-ms-text-combine-horizontal"?: Property$TextCombineUpright | Array<Property$TextCombineUpright>,
  3123. "-ms-text-overflow"?: Property$TextOverflow | Array<Property$TextOverflow>,
  3124. "-ms-touch-action"?: Property$TouchAction | Array<Property$TouchAction>,
  3125. "-ms-touch-select"?: Property$MsTouchSelect | Array<Property$MsTouchSelect>,
  3126. "-ms-transform"?: Property$Transform | Array<Property$Transform>,
  3127. "-ms-transform-origin"?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  3128. "-ms-transition-delay"?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  3129. "-ms-transition-duration"?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  3130. "-ms-transition-property"?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  3131. "-ms-transition-timing-function"?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  3132. "-ms-user-select"?: Property$MsUserSelect | Array<Property$MsUserSelect>,
  3133. "-ms-word-break"?: Property$WordBreak | Array<Property$WordBreak>,
  3134. "-ms-wrap-flow"?: Property$MsWrapFlow | Array<Property$MsWrapFlow>,
  3135. "-ms-wrap-margin"?: Property$MsWrapMargin<TLength> | Array<Property$MsWrapMargin<TLength>>,
  3136. "-ms-wrap-through"?: Property$MsWrapThrough | Array<Property$MsWrapThrough>,
  3137. "-ms-writing-mode"?: Property$WritingMode | Array<Property$WritingMode>,
  3138. "-webkit-align-content"?: Property$AlignContent | Array<Property$AlignContent>,
  3139. "-webkit-align-items"?: Property$AlignItems | Array<Property$AlignItems>,
  3140. "-webkit-align-self"?: Property$AlignSelf | Array<Property$AlignSelf>,
  3141. "-webkit-animation-delay"?: Property$AnimationDelay<TTime> | Array<Property$AnimationDelay<TTime>>,
  3142. "-webkit-animation-direction"?: Property$AnimationDirection | Array<Property$AnimationDirection>,
  3143. "-webkit-animation-duration"?: Property$AnimationDuration<TTime> | Array<Property$AnimationDuration<TTime>>,
  3144. "-webkit-animation-fill-mode"?: Property$AnimationFillMode | Array<Property$AnimationFillMode>,
  3145. "-webkit-animation-iteration-count"?: Property$AnimationIterationCount | Array<Property$AnimationIterationCount>,
  3146. "-webkit-animation-name"?: Property$AnimationName | Array<Property$AnimationName>,
  3147. "-webkit-animation-play-state"?: Property$AnimationPlayState | Array<Property$AnimationPlayState>,
  3148. "-webkit-animation-timing-function"?: Property$AnimationTimingFunction | Array<Property$AnimationTimingFunction>,
  3149. "-webkit-appearance"?: Property$WebkitAppearance | Array<Property$WebkitAppearance>,
  3150. "-webkit-backdrop-filter"?: Property$BackdropFilter | Array<Property$BackdropFilter>,
  3151. "-webkit-backface-visibility"?: Property$BackfaceVisibility | Array<Property$BackfaceVisibility>,
  3152. "-webkit-background-clip"?: Property$BackgroundClip | Array<Property$BackgroundClip>,
  3153. "-webkit-background-origin"?: Property$BackgroundOrigin | Array<Property$BackgroundOrigin>,
  3154. "-webkit-background-size"?: Property$BackgroundSize<TLength> | Array<Property$BackgroundSize<TLength>>,
  3155. "-webkit-border-before-color"?: Property$WebkitBorderBeforeColor | Array<Property$WebkitBorderBeforeColor>,
  3156. "-webkit-border-before-style"?: Property$WebkitBorderBeforeStyle | Array<Property$WebkitBorderBeforeStyle>,
  3157. "-webkit-border-before-width"?: Property$WebkitBorderBeforeWidth<TLength> | Array<Property$WebkitBorderBeforeWidth<TLength>>,
  3158. "-webkit-border-bottom-left-radius"?: Property$BorderBottomLeftRadius<TLength> | Array<Property$BorderBottomLeftRadius<TLength>>,
  3159. "-webkit-border-bottom-right-radius"?: Property$BorderBottomRightRadius<TLength> | Array<Property$BorderBottomRightRadius<TLength>>,
  3160. "-webkit-border-image-slice"?: Property$BorderImageSlice | Array<Property$BorderImageSlice>,
  3161. "-webkit-border-top-left-radius"?: Property$BorderTopLeftRadius<TLength> | Array<Property$BorderTopLeftRadius<TLength>>,
  3162. "-webkit-border-top-right-radius"?: Property$BorderTopRightRadius<TLength> | Array<Property$BorderTopRightRadius<TLength>>,
  3163. "-webkit-box-decoration-break"?: Property$BoxDecorationBreak | Array<Property$BoxDecorationBreak>,
  3164. "-webkit-box-reflect"?: Property$WebkitBoxReflect<TLength> | Array<Property$WebkitBoxReflect<TLength>>,
  3165. "-webkit-box-shadow"?: Property$BoxShadow | Array<Property$BoxShadow>,
  3166. "-webkit-box-sizing"?: Property$BoxSizing | Array<Property$BoxSizing>,
  3167. "-webkit-clip-path"?: Property$ClipPath | Array<Property$ClipPath>,
  3168. "-webkit-column-count"?: Property$ColumnCount | Array<Property$ColumnCount>,
  3169. "-webkit-column-fill"?: Property$ColumnFill | Array<Property$ColumnFill>,
  3170. "-webkit-column-rule-color"?: Property$ColumnRuleColor | Array<Property$ColumnRuleColor>,
  3171. "-webkit-column-rule-style"?: Property$ColumnRuleStyle | Array<Property$ColumnRuleStyle>,
  3172. "-webkit-column-rule-width"?: Property$ColumnRuleWidth<TLength> | Array<Property$ColumnRuleWidth<TLength>>,
  3173. "-webkit-column-span"?: Property$ColumnSpan | Array<Property$ColumnSpan>,
  3174. "-webkit-column-width"?: Property$ColumnWidth<TLength> | Array<Property$ColumnWidth<TLength>>,
  3175. "-webkit-filter"?: Property$Filter | Array<Property$Filter>,
  3176. "-webkit-flex-basis"?: Property$FlexBasis<TLength> | Array<Property$FlexBasis<TLength>>,
  3177. "-webkit-flex-direction"?: Property$FlexDirection | Array<Property$FlexDirection>,
  3178. "-webkit-flex-grow"?: Property$FlexGrow | Array<Property$FlexGrow>,
  3179. "-webkit-flex-shrink"?: Property$FlexShrink | Array<Property$FlexShrink>,
  3180. "-webkit-flex-wrap"?: Property$FlexWrap | Array<Property$FlexWrap>,
  3181. "-webkit-font-feature-settings"?: Property$FontFeatureSettings | Array<Property$FontFeatureSettings>,
  3182. "-webkit-font-kerning"?: Property$FontKerning | Array<Property$FontKerning>,
  3183. "-webkit-font-smoothing"?: Property$FontSmooth<TLength> | Array<Property$FontSmooth<TLength>>,
  3184. "-webkit-font-variant-ligatures"?: Property$FontVariantLigatures | Array<Property$FontVariantLigatures>,
  3185. "-webkit-hyphenate-character"?: Property$HyphenateCharacter | Array<Property$HyphenateCharacter>,
  3186. "-webkit-hyphens"?: Property$Hyphens | Array<Property$Hyphens>,
  3187. "-webkit-initial-letter"?: Property$InitialLetter | Array<Property$InitialLetter>,
  3188. "-webkit-justify-content"?: Property$JustifyContent | Array<Property$JustifyContent>,
  3189. "-webkit-line-break"?: Property$LineBreak | Array<Property$LineBreak>,
  3190. "-webkit-line-clamp"?: Property$WebkitLineClamp | Array<Property$WebkitLineClamp>,
  3191. "-webkit-margin-end"?: Property$MarginInlineEnd<TLength> | Array<Property$MarginInlineEnd<TLength>>,
  3192. "-webkit-margin-start"?: Property$MarginInlineStart<TLength> | Array<Property$MarginInlineStart<TLength>>,
  3193. "-webkit-mask-attachment"?: Property$WebkitMaskAttachment | Array<Property$WebkitMaskAttachment>,
  3194. "-webkit-mask-box-image-outset"?: Property$MaskBorderOutset<TLength> | Array<Property$MaskBorderOutset<TLength>>,
  3195. "-webkit-mask-box-image-repeat"?: Property$MaskBorderRepeat | Array<Property$MaskBorderRepeat>,
  3196. "-webkit-mask-box-image-slice"?: Property$MaskBorderSlice | Array<Property$MaskBorderSlice>,
  3197. "-webkit-mask-box-image-source"?: Property$MaskBorderSource | Array<Property$MaskBorderSource>,
  3198. "-webkit-mask-box-image-width"?: Property$MaskBorderWidth<TLength> | Array<Property$MaskBorderWidth<TLength>>,
  3199. "-webkit-mask-clip"?: Property$WebkitMaskClip | Array<Property$WebkitMaskClip>,
  3200. "-webkit-mask-composite"?: Property$WebkitMaskComposite | Array<Property$WebkitMaskComposite>,
  3201. "-webkit-mask-image"?: Property$WebkitMaskImage | Array<Property$WebkitMaskImage>,
  3202. "-webkit-mask-origin"?: Property$WebkitMaskOrigin | Array<Property$WebkitMaskOrigin>,
  3203. "-webkit-mask-position"?: Property$WebkitMaskPosition<TLength> | Array<Property$WebkitMaskPosition<TLength>>,
  3204. "-webkit-mask-position-x"?: Property$WebkitMaskPositionX<TLength> | Array<Property$WebkitMaskPositionX<TLength>>,
  3205. "-webkit-mask-position-y"?: Property$WebkitMaskPositionY<TLength> | Array<Property$WebkitMaskPositionY<TLength>>,
  3206. "-webkit-mask-repeat"?: Property$WebkitMaskRepeat | Array<Property$WebkitMaskRepeat>,
  3207. "-webkit-mask-repeat-x"?: Property$WebkitMaskRepeatX | Array<Property$WebkitMaskRepeatX>,
  3208. "-webkit-mask-repeat-y"?: Property$WebkitMaskRepeatY | Array<Property$WebkitMaskRepeatY>,
  3209. "-webkit-mask-size"?: Property$WebkitMaskSize<TLength> | Array<Property$WebkitMaskSize<TLength>>,
  3210. "-webkit-max-inline-size"?: Property$MaxInlineSize<TLength> | Array<Property$MaxInlineSize<TLength>>,
  3211. "-webkit-order"?: Property$Order | Array<Property$Order>,
  3212. "-webkit-overflow-scrolling"?: Property$WebkitOverflowScrolling | Array<Property$WebkitOverflowScrolling>,
  3213. "-webkit-padding-end"?: Property$PaddingInlineEnd<TLength> | Array<Property$PaddingInlineEnd<TLength>>,
  3214. "-webkit-padding-start"?: Property$PaddingInlineStart<TLength> | Array<Property$PaddingInlineStart<TLength>>,
  3215. "-webkit-perspective"?: Property$Perspective<TLength> | Array<Property$Perspective<TLength>>,
  3216. "-webkit-perspective-origin"?: Property$PerspectiveOrigin<TLength> | Array<Property$PerspectiveOrigin<TLength>>,
  3217. "-webkit-print-color-adjust"?: Property$PrintColorAdjust | Array<Property$PrintColorAdjust>,
  3218. "-webkit-ruby-position"?: Property$RubyPosition | Array<Property$RubyPosition>,
  3219. "-webkit-scroll-snap-type"?: Property$ScrollSnapType | Array<Property$ScrollSnapType>,
  3220. "-webkit-shape-margin"?: Property$ShapeMargin<TLength> | Array<Property$ShapeMargin<TLength>>,
  3221. "-webkit-tap-highlight-color"?: Property$WebkitTapHighlightColor | Array<Property$WebkitTapHighlightColor>,
  3222. "-webkit-text-combine"?: Property$TextCombineUpright | Array<Property$TextCombineUpright>,
  3223. "-webkit-text-decoration-color"?: Property$TextDecorationColor | Array<Property$TextDecorationColor>,
  3224. "-webkit-text-decoration-line"?: Property$TextDecorationLine | Array<Property$TextDecorationLine>,
  3225. "-webkit-text-decoration-skip"?: Property$TextDecorationSkip | Array<Property$TextDecorationSkip>,
  3226. "-webkit-text-decoration-style"?: Property$TextDecorationStyle | Array<Property$TextDecorationStyle>,
  3227. "-webkit-text-emphasis-color"?: Property$TextEmphasisColor | Array<Property$TextEmphasisColor>,
  3228. "-webkit-text-emphasis-position"?: Property$TextEmphasisPosition | Array<Property$TextEmphasisPosition>,
  3229. "-webkit-text-emphasis-style"?: Property$TextEmphasisStyle | Array<Property$TextEmphasisStyle>,
  3230. "-webkit-text-fill-color"?: Property$WebkitTextFillColor | Array<Property$WebkitTextFillColor>,
  3231. "-webkit-text-orientation"?: Property$TextOrientation | Array<Property$TextOrientation>,
  3232. "-webkit-text-size-adjust"?: Property$TextSizeAdjust | Array<Property$TextSizeAdjust>,
  3233. "-webkit-text-stroke-color"?: Property$WebkitTextStrokeColor | Array<Property$WebkitTextStrokeColor>,
  3234. "-webkit-text-stroke-width"?: Property$WebkitTextStrokeWidth<TLength> | Array<Property$WebkitTextStrokeWidth<TLength>>,
  3235. "-webkit-text-underline-position"?: Property$TextUnderlinePosition | Array<Property$TextUnderlinePosition>,
  3236. "-webkit-touch-callout"?: Property$WebkitTouchCallout | Array<Property$WebkitTouchCallout>,
  3237. "-webkit-transform"?: Property$Transform | Array<Property$Transform>,
  3238. "-webkit-transform-origin"?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  3239. "-webkit-transform-style"?: Property$TransformStyle | Array<Property$TransformStyle>,
  3240. "-webkit-transition-delay"?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  3241. "-webkit-transition-duration"?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  3242. "-webkit-transition-property"?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  3243. "-webkit-transition-timing-function"?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  3244. "-webkit-user-modify"?: Property$WebkitUserModify | Array<Property$WebkitUserModify>,
  3245. "-webkit-user-select"?: Property$UserSelect | Array<Property$UserSelect>,
  3246. "-webkit-writing-mode"?: Property$WritingMode | Array<Property$WritingMode>,
  3247. |};
  3248. export type VendorShorthandPropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  3249. "-moz-animation"?: Property$Animation<TTime> | Array<Property$Animation<TTime>>,
  3250. "-moz-border-image"?: Property$BorderImage | Array<Property$BorderImage>,
  3251. "-moz-column-rule"?: Property$ColumnRule<TLength> | Array<Property$ColumnRule<TLength>>,
  3252. "-moz-columns"?: Property$Columns<TLength> | Array<Property$Columns<TLength>>,
  3253. "-moz-transition"?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  3254. "-ms-content-zoom-limit"?: Property$MsContentZoomLimit | Array<Property$MsContentZoomLimit>,
  3255. "-ms-content-zoom-snap"?: Property$MsContentZoomSnap | Array<Property$MsContentZoomSnap>,
  3256. "-ms-flex"?: Property$Flex<TLength> | Array<Property$Flex<TLength>>,
  3257. "-ms-scroll-limit"?: Property$MsScrollLimit | Array<Property$MsScrollLimit>,
  3258. "-ms-scroll-snap-x"?: Property$MsScrollSnapX | Array<Property$MsScrollSnapX>,
  3259. "-ms-scroll-snap-y"?: Property$MsScrollSnapY | Array<Property$MsScrollSnapY>,
  3260. "-ms-transition"?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  3261. "-webkit-animation"?: Property$Animation<TTime> | Array<Property$Animation<TTime>>,
  3262. "-webkit-border-before"?: Property$WebkitBorderBefore<TLength> | Array<Property$WebkitBorderBefore<TLength>>,
  3263. "-webkit-border-image"?: Property$BorderImage | Array<Property$BorderImage>,
  3264. "-webkit-border-radius"?: Property$BorderRadius<TLength> | Array<Property$BorderRadius<TLength>>,
  3265. "-webkit-column-rule"?: Property$ColumnRule<TLength> | Array<Property$ColumnRule<TLength>>,
  3266. "-webkit-columns"?: Property$Columns<TLength> | Array<Property$Columns<TLength>>,
  3267. "-webkit-flex"?: Property$Flex<TLength> | Array<Property$Flex<TLength>>,
  3268. "-webkit-flex-flow"?: Property$FlexFlow | Array<Property$FlexFlow>,
  3269. "-webkit-mask"?: Property$WebkitMask<TLength> | Array<Property$WebkitMask<TLength>>,
  3270. "-webkit-mask-box-image"?: Property$MaskBorder | Array<Property$MaskBorder>,
  3271. "-webkit-text-emphasis"?: Property$TextEmphasis | Array<Property$TextEmphasis>,
  3272. "-webkit-text-stroke"?: Property$WebkitTextStroke<TLength> | Array<Property$WebkitTextStroke<TLength>>,
  3273. "-webkit-transition"?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  3274. |};
  3275. export type VendorPropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  3276. ...VendorLonghandPropertiesHyphenFallback<TLength, TTime>,
  3277. ...VendorShorthandPropertiesHyphenFallback<TLength, TTime>,
  3278. |};
  3279. export type ObsoletePropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  3280. azimuth?: Property$Azimuth | Array<Property$Azimuth>,
  3281. "box-align"?: Property$BoxAlign | Array<Property$BoxAlign>,
  3282. "box-direction"?: Property$BoxDirection | Array<Property$BoxDirection>,
  3283. "box-flex"?: Property$BoxFlex | Array<Property$BoxFlex>,
  3284. "box-flex-group"?: Property$BoxFlexGroup | Array<Property$BoxFlexGroup>,
  3285. "box-lines"?: Property$BoxLines | Array<Property$BoxLines>,
  3286. "box-ordinal-group"?: Property$BoxOrdinalGroup | Array<Property$BoxOrdinalGroup>,
  3287. "box-orient"?: Property$BoxOrient | Array<Property$BoxOrient>,
  3288. "box-pack"?: Property$BoxPack | Array<Property$BoxPack>,
  3289. clip?: Property$Clip | Array<Property$Clip>,
  3290. "grid-column-gap"?: Property$GridColumnGap<TLength> | Array<Property$GridColumnGap<TLength>>,
  3291. "grid-gap"?: Property$GridGap<TLength> | Array<Property$GridGap<TLength>>,
  3292. "grid-row-gap"?: Property$GridRowGap<TLength> | Array<Property$GridRowGap<TLength>>,
  3293. "ime-mode"?: Property$ImeMode | Array<Property$ImeMode>,
  3294. "offset-block"?: Property$InsetBlock<TLength> | Array<Property$InsetBlock<TLength>>,
  3295. "offset-block-end"?: Property$InsetBlockEnd<TLength> | Array<Property$InsetBlockEnd<TLength>>,
  3296. "offset-block-start"?: Property$InsetBlockStart<TLength> | Array<Property$InsetBlockStart<TLength>>,
  3297. "offset-inline"?: Property$InsetInline<TLength> | Array<Property$InsetInline<TLength>>,
  3298. "offset-inline-end"?: Property$InsetInlineEnd<TLength> | Array<Property$InsetInlineEnd<TLength>>,
  3299. "offset-inline-start"?: Property$InsetInlineStart<TLength> | Array<Property$InsetInlineStart<TLength>>,
  3300. "scroll-snap-coordinate"?: Property$ScrollSnapCoordinate<TLength> | Array<Property$ScrollSnapCoordinate<TLength>>,
  3301. "scroll-snap-destination"?: Property$ScrollSnapDestination<TLength> | Array<Property$ScrollSnapDestination<TLength>>,
  3302. "scroll-snap-points-x"?: Property$ScrollSnapPointsX | Array<Property$ScrollSnapPointsX>,
  3303. "scroll-snap-points-y"?: Property$ScrollSnapPointsY | Array<Property$ScrollSnapPointsY>,
  3304. "scroll-snap-type-x"?: Property$ScrollSnapTypeX | Array<Property$ScrollSnapTypeX>,
  3305. "scroll-snap-type-y"?: Property$ScrollSnapTypeY | Array<Property$ScrollSnapTypeY>,
  3306. "-khtml-box-align"?: Property$BoxAlign | Array<Property$BoxAlign>,
  3307. "-khtml-box-direction"?: Property$BoxDirection | Array<Property$BoxDirection>,
  3308. "-khtml-box-flex"?: Property$BoxFlex | Array<Property$BoxFlex>,
  3309. "-khtml-box-flex-group"?: Property$BoxFlexGroup | Array<Property$BoxFlexGroup>,
  3310. "-khtml-box-lines"?: Property$BoxLines | Array<Property$BoxLines>,
  3311. "-khtml-box-ordinal-group"?: Property$BoxOrdinalGroup | Array<Property$BoxOrdinalGroup>,
  3312. "-khtml-box-orient"?: Property$BoxOrient | Array<Property$BoxOrient>,
  3313. "-khtml-box-pack"?: Property$BoxPack | Array<Property$BoxPack>,
  3314. "-khtml-line-break"?: Property$LineBreak | Array<Property$LineBreak>,
  3315. "-khtml-opacity"?: Property$Opacity | Array<Property$Opacity>,
  3316. "-khtml-user-select"?: Property$UserSelect | Array<Property$UserSelect>,
  3317. "-moz-background-clip"?: Property$BackgroundClip | Array<Property$BackgroundClip>,
  3318. "-moz-background-inline-policy"?: Property$BoxDecorationBreak | Array<Property$BoxDecorationBreak>,
  3319. "-moz-background-origin"?: Property$BackgroundOrigin | Array<Property$BackgroundOrigin>,
  3320. "-moz-background-size"?: Property$BackgroundSize<TLength> | Array<Property$BackgroundSize<TLength>>,
  3321. "-moz-border-radius"?: Property$BorderRadius<TLength> | Array<Property$BorderRadius<TLength>>,
  3322. "-moz-border-radius-bottomleft"?: Property$BorderBottomLeftRadius<TLength> | Array<Property$BorderBottomLeftRadius<TLength>>,
  3323. "-moz-border-radius-bottomright"?: Property$BorderBottomRightRadius<TLength> | Array<Property$BorderBottomRightRadius<TLength>>,
  3324. "-moz-border-radius-topleft"?: Property$BorderTopLeftRadius<TLength> | Array<Property$BorderTopLeftRadius<TLength>>,
  3325. "-moz-border-radius-topright"?: Property$BorderTopRightRadius<TLength> | Array<Property$BorderTopRightRadius<TLength>>,
  3326. "-moz-box-align"?: Property$BoxAlign | Array<Property$BoxAlign>,
  3327. "-moz-box-direction"?: Property$BoxDirection | Array<Property$BoxDirection>,
  3328. "-moz-box-flex"?: Property$BoxFlex | Array<Property$BoxFlex>,
  3329. "-moz-box-ordinal-group"?: Property$BoxOrdinalGroup | Array<Property$BoxOrdinalGroup>,
  3330. "-moz-box-orient"?: Property$BoxOrient | Array<Property$BoxOrient>,
  3331. "-moz-box-pack"?: Property$BoxPack | Array<Property$BoxPack>,
  3332. "-moz-box-shadow"?: Property$BoxShadow | Array<Property$BoxShadow>,
  3333. "-moz-float-edge"?: Property$MozFloatEdge | Array<Property$MozFloatEdge>,
  3334. "-moz-force-broken-image-icon"?: Property$MozForceBrokenImageIcon | Array<Property$MozForceBrokenImageIcon>,
  3335. "-moz-opacity"?: Property$Opacity | Array<Property$Opacity>,
  3336. "-moz-outline"?: Property$Outline<TLength> | Array<Property$Outline<TLength>>,
  3337. "-moz-outline-color"?: Property$OutlineColor | Array<Property$OutlineColor>,
  3338. "-moz-outline-radius"?: Property$MozOutlineRadius<TLength> | Array<Property$MozOutlineRadius<TLength>>,
  3339. "-moz-outline-radius-bottomleft"?: Property$MozOutlineRadiusBottomleft<TLength> | Array<Property$MozOutlineRadiusBottomleft<TLength>>,
  3340. "-moz-outline-radius-bottomright"?: Property$MozOutlineRadiusBottomright<TLength> | Array<Property$MozOutlineRadiusBottomright<TLength>>,
  3341. "-moz-outline-radius-topleft"?: Property$MozOutlineRadiusTopleft<TLength> | Array<Property$MozOutlineRadiusTopleft<TLength>>,
  3342. "-moz-outline-radius-topright"?: Property$MozOutlineRadiusTopright<TLength> | Array<Property$MozOutlineRadiusTopright<TLength>>,
  3343. "-moz-outline-style"?: Property$OutlineStyle | Array<Property$OutlineStyle>,
  3344. "-moz-outline-width"?: Property$OutlineWidth<TLength> | Array<Property$OutlineWidth<TLength>>,
  3345. "-moz-text-align-last"?: Property$TextAlignLast | Array<Property$TextAlignLast>,
  3346. "-moz-text-decoration-color"?: Property$TextDecorationColor | Array<Property$TextDecorationColor>,
  3347. "-moz-text-decoration-line"?: Property$TextDecorationLine | Array<Property$TextDecorationLine>,
  3348. "-moz-text-decoration-style"?: Property$TextDecorationStyle | Array<Property$TextDecorationStyle>,
  3349. "-moz-user-input"?: Property$MozUserInput | Array<Property$MozUserInput>,
  3350. "-ms-ime-mode"?: Property$ImeMode | Array<Property$ImeMode>,
  3351. "-o-animation"?: Property$Animation<TTime> | Array<Property$Animation<TTime>>,
  3352. "-o-animation-delay"?: Property$AnimationDelay<TTime> | Array<Property$AnimationDelay<TTime>>,
  3353. "-o-animation-direction"?: Property$AnimationDirection | Array<Property$AnimationDirection>,
  3354. "-o-animation-duration"?: Property$AnimationDuration<TTime> | Array<Property$AnimationDuration<TTime>>,
  3355. "-o-animation-fill-mode"?: Property$AnimationFillMode | Array<Property$AnimationFillMode>,
  3356. "-o-animation-iteration-count"?: Property$AnimationIterationCount | Array<Property$AnimationIterationCount>,
  3357. "-o-animation-name"?: Property$AnimationName | Array<Property$AnimationName>,
  3358. "-o-animation-play-state"?: Property$AnimationPlayState | Array<Property$AnimationPlayState>,
  3359. "-o-animation-timing-function"?: Property$AnimationTimingFunction | Array<Property$AnimationTimingFunction>,
  3360. "-o-background-size"?: Property$BackgroundSize<TLength> | Array<Property$BackgroundSize<TLength>>,
  3361. "-o-border-image"?: Property$BorderImage | Array<Property$BorderImage>,
  3362. "-o-object-fit"?: Property$ObjectFit | Array<Property$ObjectFit>,
  3363. "-o-object-position"?: Property$ObjectPosition<TLength> | Array<Property$ObjectPosition<TLength>>,
  3364. "-o-tab-size"?: Property$TabSize<TLength> | Array<Property$TabSize<TLength>>,
  3365. "-o-text-overflow"?: Property$TextOverflow | Array<Property$TextOverflow>,
  3366. "-o-transform"?: Property$Transform | Array<Property$Transform>,
  3367. "-o-transform-origin"?: Property$TransformOrigin<TLength> | Array<Property$TransformOrigin<TLength>>,
  3368. "-o-transition"?: Property$Transition<TTime> | Array<Property$Transition<TTime>>,
  3369. "-o-transition-delay"?: Property$TransitionDelay<TTime> | Array<Property$TransitionDelay<TTime>>,
  3370. "-o-transition-duration"?: Property$TransitionDuration<TTime> | Array<Property$TransitionDuration<TTime>>,
  3371. "-o-transition-property"?: Property$TransitionProperty | Array<Property$TransitionProperty>,
  3372. "-o-transition-timing-function"?: Property$TransitionTimingFunction | Array<Property$TransitionTimingFunction>,
  3373. "-webkit-box-align"?: Property$BoxAlign | Array<Property$BoxAlign>,
  3374. "-webkit-box-direction"?: Property$BoxDirection | Array<Property$BoxDirection>,
  3375. "-webkit-box-flex"?: Property$BoxFlex | Array<Property$BoxFlex>,
  3376. "-webkit-box-flex-group"?: Property$BoxFlexGroup | Array<Property$BoxFlexGroup>,
  3377. "-webkit-box-lines"?: Property$BoxLines | Array<Property$BoxLines>,
  3378. "-webkit-box-ordinal-group"?: Property$BoxOrdinalGroup | Array<Property$BoxOrdinalGroup>,
  3379. "-webkit-box-orient"?: Property$BoxOrient | Array<Property$BoxOrient>,
  3380. "-webkit-box-pack"?: Property$BoxPack | Array<Property$BoxPack>,
  3381. "-webkit-scroll-snap-points-x"?: Property$ScrollSnapPointsX | Array<Property$ScrollSnapPointsX>,
  3382. "-webkit-scroll-snap-points-y"?: Property$ScrollSnapPointsY | Array<Property$ScrollSnapPointsY>,
  3383. |};
  3384. export type SvgPropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  3385. "alignment-baseline"?: Property$AlignmentBaseline | Array<Property$AlignmentBaseline>,
  3386. "baseline-shift"?: Property$BaselineShift<TLength> | Array<Property$BaselineShift<TLength>>,
  3387. clip?: Property$Clip | Array<Property$Clip>,
  3388. "clip-path"?: Property$ClipPath | Array<Property$ClipPath>,
  3389. "clip-rule"?: Property$ClipRule | Array<Property$ClipRule>,
  3390. color?: Property$Color | Array<Property$Color>,
  3391. "color-interpolation"?: Property$ColorInterpolation | Array<Property$ColorInterpolation>,
  3392. "color-rendering"?: Property$ColorRendering | Array<Property$ColorRendering>,
  3393. cursor?: Property$Cursor | Array<Property$Cursor>,
  3394. direction?: Property$Direction | Array<Property$Direction>,
  3395. display?: Property$Display | Array<Property$Display>,
  3396. "dominant-baseline"?: Property$DominantBaseline | Array<Property$DominantBaseline>,
  3397. fill?: Property$Fill | Array<Property$Fill>,
  3398. "fill-opacity"?: Property$FillOpacity | Array<Property$FillOpacity>,
  3399. "fill-rule"?: Property$FillRule | Array<Property$FillRule>,
  3400. filter?: Property$Filter | Array<Property$Filter>,
  3401. "flood-color"?: Property$FloodColor | Array<Property$FloodColor>,
  3402. "flood-opacity"?: Property$FloodOpacity | Array<Property$FloodOpacity>,
  3403. font?: Property$Font | Array<Property$Font>,
  3404. "font-family"?: Property$FontFamily | Array<Property$FontFamily>,
  3405. "font-size"?: Property$FontSize<TLength> | Array<Property$FontSize<TLength>>,
  3406. "font-size-adjust"?: Property$FontSizeAdjust | Array<Property$FontSizeAdjust>,
  3407. "font-stretch"?: Property$FontStretch | Array<Property$FontStretch>,
  3408. "font-style"?: Property$FontStyle | Array<Property$FontStyle>,
  3409. "font-variant"?: Property$FontVariant | Array<Property$FontVariant>,
  3410. "font-weight"?: Property$FontWeight | Array<Property$FontWeight>,
  3411. "glyph-orientation-vertical"?: Property$GlyphOrientationVertical | Array<Property$GlyphOrientationVertical>,
  3412. "image-rendering"?: Property$ImageRendering | Array<Property$ImageRendering>,
  3413. "letter-spacing"?: Property$LetterSpacing<TLength> | Array<Property$LetterSpacing<TLength>>,
  3414. "lighting-color"?: Property$LightingColor | Array<Property$LightingColor>,
  3415. "line-height"?: Property$LineHeight<TLength> | Array<Property$LineHeight<TLength>>,
  3416. marker?: Property$Marker | Array<Property$Marker>,
  3417. "marker-end"?: Property$MarkerEnd | Array<Property$MarkerEnd>,
  3418. "marker-mid"?: Property$MarkerMid | Array<Property$MarkerMid>,
  3419. "marker-start"?: Property$MarkerStart | Array<Property$MarkerStart>,
  3420. mask?: Property$Mask<TLength> | Array<Property$Mask<TLength>>,
  3421. opacity?: Property$Opacity | Array<Property$Opacity>,
  3422. overflow?: Property$Overflow | Array<Property$Overflow>,
  3423. "paint-order"?: Property$PaintOrder | Array<Property$PaintOrder>,
  3424. "pointer-events"?: Property$PointerEvents | Array<Property$PointerEvents>,
  3425. "shape-rendering"?: Property$ShapeRendering | Array<Property$ShapeRendering>,
  3426. "stop-color"?: Property$StopColor | Array<Property$StopColor>,
  3427. "stop-opacity"?: Property$StopOpacity | Array<Property$StopOpacity>,
  3428. stroke?: Property$Stroke | Array<Property$Stroke>,
  3429. "stroke-dasharray"?: Property$StrokeDasharray<TLength> | Array<Property$StrokeDasharray<TLength>>,
  3430. "stroke-dashoffset"?: Property$StrokeDashoffset<TLength> | Array<Property$StrokeDashoffset<TLength>>,
  3431. "stroke-linecap"?: Property$StrokeLinecap | Array<Property$StrokeLinecap>,
  3432. "stroke-linejoin"?: Property$StrokeLinejoin | Array<Property$StrokeLinejoin>,
  3433. "stroke-miterlimit"?: Property$StrokeMiterlimit | Array<Property$StrokeMiterlimit>,
  3434. "stroke-opacity"?: Property$StrokeOpacity | Array<Property$StrokeOpacity>,
  3435. "stroke-width"?: Property$StrokeWidth<TLength> | Array<Property$StrokeWidth<TLength>>,
  3436. "text-anchor"?: Property$TextAnchor | Array<Property$TextAnchor>,
  3437. "text-decoration"?: Property$TextDecoration<TLength> | Array<Property$TextDecoration<TLength>>,
  3438. "text-rendering"?: Property$TextRendering | Array<Property$TextRendering>,
  3439. "unicode-bidi"?: Property$UnicodeBidi | Array<Property$UnicodeBidi>,
  3440. "vector-effect"?: Property$VectorEffect | Array<Property$VectorEffect>,
  3441. visibility?: Property$Visibility | Array<Property$Visibility>,
  3442. "white-space"?: Property$WhiteSpace | Array<Property$WhiteSpace>,
  3443. "word-spacing"?: Property$WordSpacing<TLength> | Array<Property$WordSpacing<TLength>>,
  3444. "writing-mode"?: Property$WritingMode | Array<Property$WritingMode>,
  3445. |};
  3446. export type PropertiesHyphenFallback<TLength = string | 0, TTime = string> = {|
  3447. ...StandardPropertiesHyphenFallback<TLength, TTime>,
  3448. ...VendorPropertiesHyphenFallback<TLength, TTime>,
  3449. ...ObsoletePropertiesHyphenFallback<TLength, TTime>,
  3450. ...SvgPropertiesHyphenFallback<TLength, TTime>,
  3451. |};
  3452. export type AtRules =
  3453. | "@charset"
  3454. | "@counter-style"
  3455. | "@document"
  3456. | "@font-face"
  3457. | "@font-feature-values"
  3458. | "@font-palette-values"
  3459. | "@import"
  3460. | "@keyframes"
  3461. | "@layer"
  3462. | "@media"
  3463. | "@namespace"
  3464. | "@page"
  3465. | "@property"
  3466. | "@scroll-timeline"
  3467. | "@supports"
  3468. | "@viewport";
  3469. export type AdvancedPseudos =
  3470. | ":-moz-any()"
  3471. | ":-moz-dir"
  3472. | ":-webkit-any()"
  3473. | "::cue"
  3474. | "::cue-region"
  3475. | "::part"
  3476. | "::slotted"
  3477. | "::view-transition-group"
  3478. | "::view-transition-image-pair"
  3479. | "::view-transition-new"
  3480. | "::view-transition-old"
  3481. | ":dir"
  3482. | ":has"
  3483. | ":host"
  3484. | ":host-context"
  3485. | ":is"
  3486. | ":lang"
  3487. | ":matches()"
  3488. | ":not"
  3489. | ":nth-child"
  3490. | ":nth-last-child"
  3491. | ":nth-last-of-type"
  3492. | ":nth-of-type"
  3493. | ":where";
  3494. export type SimplePseudos =
  3495. | ":-khtml-any-link"
  3496. | ":-moz-any-link"
  3497. | ":-moz-focusring"
  3498. | ":-moz-full-screen"
  3499. | ":-moz-placeholder"
  3500. | ":-moz-read-only"
  3501. | ":-moz-read-write"
  3502. | ":-moz-ui-invalid"
  3503. | ":-moz-ui-valid"
  3504. | ":-ms-fullscreen"
  3505. | ":-ms-input-placeholder"
  3506. | ":-webkit-any-link"
  3507. | ":-webkit-full-screen"
  3508. | "::-moz-placeholder"
  3509. | "::-moz-progress-bar"
  3510. | "::-moz-range-progress"
  3511. | "::-moz-range-thumb"
  3512. | "::-moz-range-track"
  3513. | "::-moz-selection"
  3514. | "::-ms-backdrop"
  3515. | "::-ms-browse"
  3516. | "::-ms-check"
  3517. | "::-ms-clear"
  3518. | "::-ms-expand"
  3519. | "::-ms-fill"
  3520. | "::-ms-fill-lower"
  3521. | "::-ms-fill-upper"
  3522. | "::-ms-input-placeholder"
  3523. | "::-ms-reveal"
  3524. | "::-ms-thumb"
  3525. | "::-ms-ticks-after"
  3526. | "::-ms-ticks-before"
  3527. | "::-ms-tooltip"
  3528. | "::-ms-track"
  3529. | "::-ms-value"
  3530. | "::-webkit-backdrop"
  3531. | "::-webkit-input-placeholder"
  3532. | "::-webkit-progress-bar"
  3533. | "::-webkit-progress-inner-value"
  3534. | "::-webkit-progress-value"
  3535. | "::-webkit-slider-runnable-track"
  3536. | "::-webkit-slider-thumb"
  3537. | "::after"
  3538. | "::backdrop"
  3539. | "::before"
  3540. | "::cue"
  3541. | "::cue-region"
  3542. | "::first-letter"
  3543. | "::first-line"
  3544. | "::grammar-error"
  3545. | "::marker"
  3546. | "::placeholder"
  3547. | "::selection"
  3548. | "::spelling-error"
  3549. | "::target-text"
  3550. | "::view-transition"
  3551. | ":active"
  3552. | ":after"
  3553. | ":any-link"
  3554. | ":before"
  3555. | ":blank"
  3556. | ":checked"
  3557. | ":current"
  3558. | ":default"
  3559. | ":defined"
  3560. | ":disabled"
  3561. | ":empty"
  3562. | ":enabled"
  3563. | ":first"
  3564. | ":first-child"
  3565. | ":first-letter"
  3566. | ":first-line"
  3567. | ":first-of-type"
  3568. | ":focus"
  3569. | ":focus-visible"
  3570. | ":focus-within"
  3571. | ":fullscreen"
  3572. | ":future"
  3573. | ":hover"
  3574. | ":in-range"
  3575. | ":indeterminate"
  3576. | ":invalid"
  3577. | ":last-child"
  3578. | ":last-of-type"
  3579. | ":left"
  3580. | ":link"
  3581. | ":local-link"
  3582. | ":nth-col"
  3583. | ":nth-last-col"
  3584. | ":only-child"
  3585. | ":only-of-type"
  3586. | ":optional"
  3587. | ":out-of-range"
  3588. | ":past"
  3589. | ":paused"
  3590. | ":picture-in-picture"
  3591. | ":placeholder-shown"
  3592. | ":playing"
  3593. | ":read-only"
  3594. | ":read-write"
  3595. | ":required"
  3596. | ":right"
  3597. | ":root"
  3598. | ":scope"
  3599. | ":target"
  3600. | ":target-within"
  3601. | ":user-invalid"
  3602. | ":user-valid"
  3603. | ":valid"
  3604. | ":visited";
  3605. export type Pseudos = AdvancedPseudos | SimplePseudos;
  3606. export type HtmlAttributes =
  3607. | "[abbr]"
  3608. | "[accept-charset]"
  3609. | "[accept]"
  3610. | "[accesskey]"
  3611. | "[action]"
  3612. | "[align]"
  3613. | "[alink]"
  3614. | "[allow]"
  3615. | "[allowfullscreen]"
  3616. | "[allowpaymentrequest]"
  3617. | "[alt]"
  3618. | "[archive]"
  3619. | "[async]"
  3620. | "[autobuffer]"
  3621. | "[autocapitalize]"
  3622. | "[autocomplete]"
  3623. | "[autofocus]"
  3624. | "[autoplay]"
  3625. | "[axis]"
  3626. | "[background]"
  3627. | "[behavior]"
  3628. | "[bgcolor]"
  3629. | "[border]"
  3630. | "[bottommargin]"
  3631. | "[capture]"
  3632. | "[cellpadding]"
  3633. | "[cellspacing]"
  3634. | "[char]"
  3635. | "[charoff]"
  3636. | "[charset]"
  3637. | "[checked]"
  3638. | "[cite]"
  3639. | "[class]"
  3640. | "[classid]"
  3641. | "[clear]"
  3642. | "[code]"
  3643. | "[codebase]"
  3644. | "[codetype]"
  3645. | "[color]"
  3646. | "[cols]"
  3647. | "[colspan]"
  3648. | "[compact]"
  3649. | "[content]"
  3650. | "[contenteditable]"
  3651. | "[contextmenu]"
  3652. | "[controls]"
  3653. | "[coords]"
  3654. | "[credentialless]"
  3655. | "[crossorigin]"
  3656. | "[data]"
  3657. | "[datafld]"
  3658. | "[datasrc]"
  3659. | "[datetime]"
  3660. | "[declare]"
  3661. | "[decoding]"
  3662. | "[default]"
  3663. | "[defer]"
  3664. | "[dir]"
  3665. | "[direction]"
  3666. | "[dirname]"
  3667. | "[disabled]"
  3668. | "[download]"
  3669. | "[draggable]"
  3670. | "[enctype]"
  3671. | "[enterkeyhint]"
  3672. | "[exportparts]"
  3673. | "[face]"
  3674. | "[fetchpriority]"
  3675. | "[for]"
  3676. | "[form]"
  3677. | "[formaction]"
  3678. | "[formenctype]"
  3679. | "[formmethod]"
  3680. | "[formnovalidate]"
  3681. | "[formtarget]"
  3682. | "[frame]"
  3683. | "[frameborder]"
  3684. | "[headers]"
  3685. | "[height]"
  3686. | "[hidden]"
  3687. | "[high]"
  3688. | "[href]"
  3689. | "[hreflang]"
  3690. | "[hspace]"
  3691. | "[http-equiv]"
  3692. | "[id]"
  3693. | "[imagesizes]"
  3694. | "[imagesrcset]"
  3695. | "[inert]"
  3696. | "[inputmode]"
  3697. | "[integrity]"
  3698. | "[is]"
  3699. | "[ismap]"
  3700. | "[itemid]"
  3701. | "[itemprop]"
  3702. | "[itemref]"
  3703. | "[itemscope]"
  3704. | "[itemtype]"
  3705. | "[kind]"
  3706. | "[label]"
  3707. | "[lang]"
  3708. | "[language]"
  3709. | "[leftmargin]"
  3710. | "[link]"
  3711. | "[list]"
  3712. | "[loading]"
  3713. | "[longdesc]"
  3714. | "[loop]"
  3715. | "[low]"
  3716. | "[manifest]"
  3717. | "[marginheight]"
  3718. | "[marginwidth]"
  3719. | "[max]"
  3720. | "[maxlength]"
  3721. | "[mayscript]"
  3722. | "[media]"
  3723. | "[method]"
  3724. | "[methods]"
  3725. | "[min]"
  3726. | "[minlength]"
  3727. | "[moz-opaque]"
  3728. | "[mozallowfullscreen]"
  3729. | "[msallowfullscreen]"
  3730. | "[multiple]"
  3731. | "[muted]"
  3732. | "[name]"
  3733. | "[nohref]"
  3734. | "[nomodule]"
  3735. | "[nonce]"
  3736. | "[noresize]"
  3737. | "[noshade]"
  3738. | "[novalidate]"
  3739. | "[nowrap]"
  3740. | "[object]"
  3741. | "[onerror]"
  3742. | "[open]"
  3743. | "[optimum]"
  3744. | "[part]"
  3745. | "[pattern]"
  3746. | "[ping]"
  3747. | "[placeholder]"
  3748. | "[poster]"
  3749. | "[prefetch]"
  3750. | "[preload]"
  3751. | "[profile]"
  3752. | "[readonly]"
  3753. | "[referrerpolicy]"
  3754. | "[rel]"
  3755. | "[required]"
  3756. | "[rev]"
  3757. | "[reversed]"
  3758. | "[rightmargin]"
  3759. | "[rows]"
  3760. | "[rowspan]"
  3761. | "[rules]"
  3762. | "[sandbox-allow-downloads]"
  3763. | "[sandbox-allow-modals]"
  3764. | "[sandbox-allow-popups-to-escape-sandbox]"
  3765. | "[sandbox-allow-popups]"
  3766. | "[sandbox-allow-presentation]"
  3767. | "[sandbox-allow-same-origin]"
  3768. | "[sandbox-allow-storage-access-by-user-activation]"
  3769. | "[sandbox-allow-top-navigation-by-user-activation]"
  3770. | "[sandbox]"
  3771. | "[scope]"
  3772. | "[scrollamount]"
  3773. | "[scrolldelay]"
  3774. | "[scrolling]"
  3775. | "[selected]"
  3776. | "[shadowroot]"
  3777. | "[shadowrootmode]"
  3778. | "[shape]"
  3779. | "[size]"
  3780. | "[sizes]"
  3781. | "[slot]"
  3782. | "[span]"
  3783. | "[spellcheck]"
  3784. | "[src]"
  3785. | "[srcdoc]"
  3786. | "[srclang]"
  3787. | "[srcset]"
  3788. | "[standby]"
  3789. | "[start]"
  3790. | "[step]"
  3791. | "[style]"
  3792. | "[summary]"
  3793. | "[tabindex]"
  3794. | "[target]"
  3795. | "[text]"
  3796. | "[title]"
  3797. | "[topmargin]"
  3798. | "[translate]"
  3799. | "[truespeed]"
  3800. | "[type]"
  3801. | "[usemap]"
  3802. | "[valign]"
  3803. | "[value]"
  3804. | "[valuetype]"
  3805. | "[version]"
  3806. | "[virtualkeyboardpolicy]"
  3807. | "[vlink]"
  3808. | "[vspace]"
  3809. | "[webkitallowfullscreen]"
  3810. | "[width]"
  3811. | "[wrap]"
  3812. | "[x-moz-errormessage]"
  3813. | "[xmlns]";
  3814. export type SvgAttributes =
  3815. | "[accent-height]"
  3816. | "[alignment-baseline]"
  3817. | "[allowReorder]"
  3818. | "[alphabetic]"
  3819. | "[animation]"
  3820. | "[arabic-form]"
  3821. | "[ascent]"
  3822. | "[attributeName]"
  3823. | "[attributeType]"
  3824. | "[azimuth]"
  3825. | "[baseFrequency]"
  3826. | "[baseProfile]"
  3827. | "[baseline-shift]"
  3828. | "[bbox]"
  3829. | "[bias]"
  3830. | "[by]"
  3831. | "[calcMode]"
  3832. | "[cap-height]"
  3833. | "[class]"
  3834. | "[clip-path]"
  3835. | "[clip-rule]"
  3836. | "[clipPathUnits]"
  3837. | "[clip]"
  3838. | "[color-interpolation-filters]"
  3839. | "[color-interpolation]"
  3840. | "[color-profile]"
  3841. | "[color]"
  3842. | "[contentScriptType]"
  3843. | "[contentStyleType]"
  3844. | "[cursor]"
  3845. | "[cx]"
  3846. | "[cy]"
  3847. | "[d]"
  3848. | "[descent]"
  3849. | "[diffuseConstant]"
  3850. | "[direction]"
  3851. | "[display]"
  3852. | "[divisor]"
  3853. | "[document]"
  3854. | "[dominant-baseline]"
  3855. | "[download]"
  3856. | "[dur]"
  3857. | "[dx]"
  3858. | "[dy]"
  3859. | "[edgeMode]"
  3860. | "[elevation]"
  3861. | "[enable-background]"
  3862. | "[fill-opacity]"
  3863. | "[fill-rule]"
  3864. | "[fill]"
  3865. | "[filterRes]"
  3866. | "[filterUnits]"
  3867. | "[filter]"
  3868. | "[flood-color]"
  3869. | "[flood-opacity]"
  3870. | "[font-family]"
  3871. | "[font-size-adjust]"
  3872. | "[font-size]"
  3873. | "[font-stretch]"
  3874. | "[font-style]"
  3875. | "[font-variant]"
  3876. | "[font-weight]"
  3877. | "[format]"
  3878. | "[fr]"
  3879. | "[from]"
  3880. | "[fx]"
  3881. | "[fy]"
  3882. | "[g1]"
  3883. | "[g2]"
  3884. | "[global]"
  3885. | "[glyph-name]"
  3886. | "[glyph-orientation-horizontal]"
  3887. | "[glyph-orientation-vertical]"
  3888. | "[glyphRef]"
  3889. | "[gradientTransform]"
  3890. | "[gradientUnits]"
  3891. | "[graphical]"
  3892. | "[hanging]"
  3893. | "[height]"
  3894. | "[horiz-adv-x]"
  3895. | "[horiz-origin-x]"
  3896. | "[horiz-origin-y]"
  3897. | "[href]"
  3898. | "[hreflang]"
  3899. | "[id]"
  3900. | "[ideographic]"
  3901. | "[image-rendering]"
  3902. | "[in2]"
  3903. | "[in]"
  3904. | "[k1]"
  3905. | "[k2]"
  3906. | "[k3]"
  3907. | "[k4]"
  3908. | "[k]"
  3909. | "[kernelMatrix]"
  3910. | "[kernelUnitLength]"
  3911. | "[kerning]"
  3912. | "[keyPoints]"
  3913. | "[lang]"
  3914. | "[lengthAdjust]"
  3915. | "[letter-spacing]"
  3916. | "[lighting-color]"
  3917. | "[limitingConeAngle]"
  3918. | "[marker-end]"
  3919. | "[marker-mid]"
  3920. | "[marker-start]"
  3921. | "[markerHeight]"
  3922. | "[markerUnits]"
  3923. | "[markerWidth]"
  3924. | "[maskContentUnits]"
  3925. | "[maskUnits]"
  3926. | "[mask]"
  3927. | "[mathematical]"
  3928. | "[media]"
  3929. | "[mode]"
  3930. | "[name]"
  3931. | "[numOctaves]"
  3932. | "[offset]"
  3933. | "[opacity]"
  3934. | "[operator]"
  3935. | "[order]"
  3936. | "[orient]"
  3937. | "[orientation]"
  3938. | "[origin]"
  3939. | "[overflow]"
  3940. | "[overline-position]"
  3941. | "[overline-thickness]"
  3942. | "[paint-order]"
  3943. | "[panose-1]"
  3944. | "[path]"
  3945. | "[patternContentUnits]"
  3946. | "[patternTransform]"
  3947. | "[patternUnits]"
  3948. | "[ping]"
  3949. | "[pointer-events]"
  3950. | "[pointsAtX]"
  3951. | "[pointsAtY]"
  3952. | "[pointsAtZ]"
  3953. | "[points]"
  3954. | "[preserveAlpha]"
  3955. | "[preserveAspectRatio]"
  3956. | "[primitiveUnits]"
  3957. | "[r]"
  3958. | "[radius]"
  3959. | "[refX]"
  3960. | "[refY]"
  3961. | "[referrerpolicy]"
  3962. | "[rel]"
  3963. | "[repeatCount]"
  3964. | "[requiredExtensions]"
  3965. | "[requiredFeatures]"
  3966. | "[rotate]"
  3967. | "[rx]"
  3968. | "[ry]"
  3969. | "[scale]"
  3970. | "[seed]"
  3971. | "[shape-rendering]"
  3972. | "[side]"
  3973. | "[slope]"
  3974. | "[solid-color]"
  3975. | "[solid-opacity]"
  3976. | "[spacing]"
  3977. | "[specularConstant]"
  3978. | "[specularExponent]"
  3979. | "[spreadMethod]"
  3980. | "[startOffset]"
  3981. | "[stdDeviation]"
  3982. | "[stemh]"
  3983. | "[stemv]"
  3984. | "[stitchTiles]"
  3985. | "[stop-color]"
  3986. | "[stop-opacity]"
  3987. | "[strikethrough-position]"
  3988. | "[strikethrough-thickness]"
  3989. | "[string]"
  3990. | "[stroke-dasharray]"
  3991. | "[stroke-dashoffset]"
  3992. | "[stroke-linecap]"
  3993. | "[stroke-linejoin]"
  3994. | "[stroke-miterlimit]"
  3995. | "[stroke-opacity]"
  3996. | "[stroke-width]"
  3997. | "[stroke]"
  3998. | "[style]"
  3999. | "[surfaceScale]"
  4000. | "[systemLanguage]"
  4001. | "[tabindex]"
  4002. | "[targetX]"
  4003. | "[targetY]"
  4004. | "[target]"
  4005. | "[text-anchor]"
  4006. | "[text-decoration]"
  4007. | "[text-overflow]"
  4008. | "[text-rendering]"
  4009. | "[textLength]"
  4010. | "[title]"
  4011. | "[to]"
  4012. | "[transform-origin]"
  4013. | "[transform]"
  4014. | "[type]"
  4015. | "[u1]"
  4016. | "[u2]"
  4017. | "[underline-position]"
  4018. | "[underline-thickness]"
  4019. | "[unicode-bidi]"
  4020. | "[unicode-range]"
  4021. | "[unicode]"
  4022. | "[units-per-em]"
  4023. | "[v-alphabetic]"
  4024. | "[v-hanging]"
  4025. | "[v-ideographic]"
  4026. | "[v-mathematical]"
  4027. | "[values]"
  4028. | "[vector-effect]"
  4029. | "[version]"
  4030. | "[vert-adv-y]"
  4031. | "[vert-origin-x]"
  4032. | "[vert-origin-y]"
  4033. | "[viewBox]"
  4034. | "[viewTarget]"
  4035. | "[visibility]"
  4036. | "[white-space]"
  4037. | "[width]"
  4038. | "[widths]"
  4039. | "[word-spacing]"
  4040. | "[writing-mode]"
  4041. | "[x-height]"
  4042. | "[x1]"
  4043. | "[x2]"
  4044. | "[xChannelSelector]"
  4045. | "[x]"
  4046. | "[y1]"
  4047. | "[y2]"
  4048. | "[yChannelSelector]"
  4049. | "[y]"
  4050. | "[z]"
  4051. | "[zoomAndPan]";
  4052. export type Globals = "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset";
  4053. export type Property$AccentColor = Globals | DataType$Color | "auto";
  4054. export type Property$AlignContent = Globals | DataType$ContentDistribution | DataType$ContentPosition | "baseline" | "normal" | string;
  4055. export type Property$AlignItems = Globals | DataType$SelfPosition | "baseline" | "normal" | "stretch" | string;
  4056. export type Property$AlignSelf = Globals | DataType$SelfPosition | "auto" | "baseline" | "normal" | "stretch" | string;
  4057. export type Property$AlignTracks = Globals | DataType$ContentDistribution | DataType$ContentPosition | "baseline" | "normal" | string;
  4058. export type Property$All = Globals;
  4059. export type Property$Animation<TTime = string> = Globals | DataType$SingleAnimation<TTime> | string;
  4060. export type Property$AnimationComposition = Globals | DataType$SingleAnimationComposition | string;
  4061. export type Property$AnimationDelay<TTime = string> = Globals | TTime | string;
  4062. export type Property$AnimationDirection = Globals | DataType$SingleAnimationDirection | string;
  4063. export type Property$AnimationDuration<TTime = string> = Globals | TTime | string;
  4064. export type Property$AnimationFillMode = Globals | DataType$SingleAnimationFillMode | string;
  4065. export type Property$AnimationIterationCount = Globals | "infinite" | string | number;
  4066. export type Property$AnimationName = Globals | "none" | string;
  4067. export type Property$AnimationPlayState = Globals | "paused" | "running" | string;
  4068. export type Property$AnimationTimeline = Globals | DataType$SingleAnimationTimeline | string;
  4069. export type Property$AnimationTimingFunction = Globals | DataType$EasingFunction | string;
  4070. export type Property$Appearance = Globals | DataType$CompatAuto | "auto" | "menulist-button" | "none" | "textfield";
  4071. export type Property$AspectRatio = Globals | "auto" | string | number;
  4072. export type Property$Azimuth =
  4073. | Globals
  4074. | "behind"
  4075. | "center"
  4076. | "center-left"
  4077. | "center-right"
  4078. | "far-left"
  4079. | "far-right"
  4080. | "left"
  4081. | "left-side"
  4082. | "leftwards"
  4083. | "right"
  4084. | "right-side"
  4085. | "rightwards"
  4086. | string;
  4087. export type Property$BackdropFilter = Globals | "none" | string;
  4088. export type Property$BackfaceVisibility = Globals | "hidden" | "visible";
  4089. export type Property$Background<TLength = string | 0> = Globals | DataType$FinalBgLayer<TLength> | string;
  4090. export type Property$BackgroundAttachment = Globals | DataType$Attachment | string;
  4091. export type Property$BackgroundBlendMode = Globals | DataType$BlendMode | string;
  4092. export type Property$BackgroundClip = Globals | DataType$Box | string;
  4093. export type Property$BackgroundColor = Globals | DataType$Color;
  4094. export type Property$BackgroundImage = Globals | "none" | string;
  4095. export type Property$BackgroundOrigin = Globals | DataType$Box | string;
  4096. export type Property$BackgroundPosition<TLength = string | 0> = Globals | DataType$BgPosition<TLength> | string;
  4097. export type Property$BackgroundPositionX<TLength = string | 0> = Globals | TLength | "center" | "left" | "right" | "x-end" | "x-start" | string;
  4098. export type Property$BackgroundPositionY<TLength = string | 0> = Globals | TLength | "bottom" | "center" | "top" | "y-end" | "y-start" | string;
  4099. export type Property$BackgroundRepeat = Globals | DataType$RepeatStyle | string;
  4100. export type Property$BackgroundSize<TLength = string | 0> = Globals | DataType$BgSize<TLength> | string;
  4101. export type Property$BlockOverflow = Globals | "clip" | "ellipsis" | string;
  4102. export type Property$BlockSize<TLength = string | 0> =
  4103. | Globals
  4104. | TLength
  4105. | "-moz-fit-content"
  4106. | "-moz-max-content"
  4107. | "-moz-min-content"
  4108. | "-webkit-fill-available"
  4109. | "auto"
  4110. | "fit-content"
  4111. | "max-content"
  4112. | "min-content"
  4113. | string;
  4114. export type Property$Border<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4115. export type Property$BorderBlock<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4116. export type Property$BorderBlockColor = Globals | DataType$Color | string;
  4117. export type Property$BorderBlockEnd<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4118. export type Property$BorderBlockEndColor = Globals | DataType$Color;
  4119. export type Property$BorderBlockEndStyle = Globals | DataType$LineStyle;
  4120. export type Property$BorderBlockEndWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4121. export type Property$BorderBlockStart<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4122. export type Property$BorderBlockStartColor = Globals | DataType$Color;
  4123. export type Property$BorderBlockStartStyle = Globals | DataType$LineStyle;
  4124. export type Property$BorderBlockStartWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4125. export type Property$BorderBlockStyle = Globals | DataType$LineStyle;
  4126. export type Property$BorderBlockWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4127. export type Property$BorderBottom<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4128. export type Property$BorderBottomColor = Globals | DataType$Color;
  4129. export type Property$BorderBottomLeftRadius<TLength = string | 0> = Globals | TLength | string;
  4130. export type Property$BorderBottomRightRadius<TLength = string | 0> = Globals | TLength | string;
  4131. export type Property$BorderBottomStyle = Globals | DataType$LineStyle;
  4132. export type Property$BorderBottomWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4133. export type Property$BorderCollapse = Globals | "collapse" | "separate";
  4134. export type Property$BorderColor = Globals | DataType$Color | string;
  4135. export type Property$BorderEndEndRadius<TLength = string | 0> = Globals | TLength | string;
  4136. export type Property$BorderEndStartRadius<TLength = string | 0> = Globals | TLength | string;
  4137. export type Property$BorderImage = Globals | "none" | "repeat" | "round" | "space" | "stretch" | string | number;
  4138. export type Property$BorderImageOutset<TLength = string | 0> = Globals | TLength | string | number;
  4139. export type Property$BorderImageRepeat = Globals | "repeat" | "round" | "space" | "stretch" | string;
  4140. export type Property$BorderImageSlice = Globals | string | number;
  4141. export type Property$BorderImageSource = Globals | "none" | string;
  4142. export type Property$BorderImageWidth<TLength = string | 0> = Globals | TLength | "auto" | string | number;
  4143. export type Property$BorderInline<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4144. export type Property$BorderInlineColor = Globals | DataType$Color | string;
  4145. export type Property$BorderInlineEnd<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4146. export type Property$BorderInlineEndColor = Globals | DataType$Color;
  4147. export type Property$BorderInlineEndStyle = Globals | DataType$LineStyle;
  4148. export type Property$BorderInlineEndWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4149. export type Property$BorderInlineStart<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4150. export type Property$BorderInlineStartColor = Globals | DataType$Color;
  4151. export type Property$BorderInlineStartStyle = Globals | DataType$LineStyle;
  4152. export type Property$BorderInlineStartWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4153. export type Property$BorderInlineStyle = Globals | DataType$LineStyle;
  4154. export type Property$BorderInlineWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4155. export type Property$BorderLeft<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4156. export type Property$BorderLeftColor = Globals | DataType$Color;
  4157. export type Property$BorderLeftStyle = Globals | DataType$LineStyle;
  4158. export type Property$BorderLeftWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4159. export type Property$BorderRadius<TLength = string | 0> = Globals | TLength | string;
  4160. export type Property$BorderRight<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4161. export type Property$BorderRightColor = Globals | DataType$Color;
  4162. export type Property$BorderRightStyle = Globals | DataType$LineStyle;
  4163. export type Property$BorderRightWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4164. export type Property$BorderSpacing<TLength = string | 0> = Globals | TLength | string;
  4165. export type Property$BorderStartEndRadius<TLength = string | 0> = Globals | TLength | string;
  4166. export type Property$BorderStartStartRadius<TLength = string | 0> = Globals | TLength | string;
  4167. export type Property$BorderStyle = Globals | DataType$LineStyle | string;
  4168. export type Property$BorderTop<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4169. export type Property$BorderTopColor = Globals | DataType$Color;
  4170. export type Property$BorderTopLeftRadius<TLength = string | 0> = Globals | TLength | string;
  4171. export type Property$BorderTopRightRadius<TLength = string | 0> = Globals | TLength | string;
  4172. export type Property$BorderTopStyle = Globals | DataType$LineStyle;
  4173. export type Property$BorderTopWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4174. export type Property$BorderWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | string;
  4175. export type Property$Bottom<TLength = string | 0> = Globals | TLength | "auto" | string;
  4176. export type Property$BoxAlign = Globals | "baseline" | "center" | "end" | "start" | "stretch";
  4177. export type Property$BoxDecorationBreak = Globals | "clone" | "slice";
  4178. export type Property$BoxDirection = Globals | "inherit" | "normal" | "reverse";
  4179. export type Property$BoxFlex = Globals | number;
  4180. export type Property$BoxFlexGroup = Globals | number;
  4181. export type Property$BoxLines = Globals | "multiple" | "single";
  4182. export type Property$BoxOrdinalGroup = Globals | number;
  4183. export type Property$BoxOrient = Globals | "block-axis" | "horizontal" | "inherit" | "inline-axis" | "vertical";
  4184. export type Property$BoxPack = Globals | "center" | "end" | "justify" | "start";
  4185. export type Property$BoxShadow = Globals | "none" | string;
  4186. export type Property$BoxSizing = Globals | "border-box" | "content-box";
  4187. export type Property$BreakAfter =
  4188. | Globals
  4189. | "all"
  4190. | "always"
  4191. | "auto"
  4192. | "avoid"
  4193. | "avoid-column"
  4194. | "avoid-page"
  4195. | "avoid-region"
  4196. | "column"
  4197. | "left"
  4198. | "page"
  4199. | "recto"
  4200. | "region"
  4201. | "right"
  4202. | "verso";
  4203. export type Property$BreakBefore =
  4204. | Globals
  4205. | "all"
  4206. | "always"
  4207. | "auto"
  4208. | "avoid"
  4209. | "avoid-column"
  4210. | "avoid-page"
  4211. | "avoid-region"
  4212. | "column"
  4213. | "left"
  4214. | "page"
  4215. | "recto"
  4216. | "region"
  4217. | "right"
  4218. | "verso";
  4219. export type Property$BreakInside = Globals | "auto" | "avoid" | "avoid-column" | "avoid-page" | "avoid-region";
  4220. export type Property$CaptionSide = Globals | "block-end" | "block-start" | "bottom" | "inline-end" | "inline-start" | "top";
  4221. export type Property$Caret = Globals | DataType$Color | "auto" | "bar" | "block" | "underscore" | string;
  4222. export type Property$CaretColor = Globals | DataType$Color | "auto";
  4223. export type Property$CaretShape = Globals | "auto" | "bar" | "block" | "underscore";
  4224. export type Property$Clear = Globals | "both" | "inline-end" | "inline-start" | "left" | "none" | "right";
  4225. export type Property$Clip = Globals | "auto" | string;
  4226. export type Property$ClipPath = Globals | DataType$GeometryBox | "none" | string;
  4227. export type Property$Color = Globals | DataType$Color;
  4228. export type Property$PrintColorAdjust = Globals | "economy" | "exact";
  4229. export type Property$ColorScheme = Globals | "dark" | "light" | "normal" | string;
  4230. export type Property$ColumnCount = Globals | "auto" | number;
  4231. export type Property$ColumnFill = Globals | "auto" | "balance" | "balance-all";
  4232. export type Property$ColumnGap<TLength = string | 0> = Globals | TLength | "normal" | string;
  4233. export type Property$ColumnRule<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  4234. export type Property$ColumnRuleColor = Globals | DataType$Color;
  4235. export type Property$ColumnRuleStyle = Globals | DataType$LineStyle | string;
  4236. export type Property$ColumnRuleWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | string;
  4237. export type Property$ColumnSpan = Globals | "all" | "none";
  4238. export type Property$ColumnWidth<TLength = string | 0> = Globals | TLength | "auto";
  4239. export type Property$Columns<TLength = string | 0> = Globals | TLength | "auto" | string | number;
  4240. export type Property$Contain = Globals | "content" | "inline-size" | "layout" | "none" | "paint" | "size" | "strict" | "style" | string;
  4241. export type Property$ContainIntrinsicBlockSize<TLength = string | 0> = Globals | TLength | "none" | string;
  4242. export type Property$ContainIntrinsicHeight<TLength = string | 0> = Globals | TLength | "none" | string;
  4243. export type Property$ContainIntrinsicInlineSize<TLength = string | 0> = Globals | TLength | "none" | string;
  4244. export type Property$ContainIntrinsicSize<TLength = string | 0> = Globals | TLength | "none" | string;
  4245. export type Property$ContainIntrinsicWidth<TLength = string | 0> = Globals | TLength | "none" | string;
  4246. export type Property$Container = Globals | "none" | string;
  4247. export type Property$ContainerName = Globals | "none" | string;
  4248. export type Property$ContainerType = Globals | "inline-size" | "normal" | "size";
  4249. export type Property$Content = Globals | DataType$ContentList | "none" | "normal" | string;
  4250. export type Property$ContentVisibility = Globals | "auto" | "hidden" | "visible";
  4251. export type Property$CounterIncrement = Globals | "none" | string;
  4252. export type Property$CounterReset = Globals | "none" | string;
  4253. export type Property$CounterSet = Globals | "none" | string;
  4254. export type Property$Cursor =
  4255. | Globals
  4256. | "-moz-grab"
  4257. | "-webkit-grab"
  4258. | "alias"
  4259. | "all-scroll"
  4260. | "auto"
  4261. | "cell"
  4262. | "col-resize"
  4263. | "context-menu"
  4264. | "copy"
  4265. | "crosshair"
  4266. | "default"
  4267. | "e-resize"
  4268. | "ew-resize"
  4269. | "grab"
  4270. | "grabbing"
  4271. | "help"
  4272. | "move"
  4273. | "n-resize"
  4274. | "ne-resize"
  4275. | "nesw-resize"
  4276. | "no-drop"
  4277. | "none"
  4278. | "not-allowed"
  4279. | "ns-resize"
  4280. | "nw-resize"
  4281. | "nwse-resize"
  4282. | "pointer"
  4283. | "progress"
  4284. | "row-resize"
  4285. | "s-resize"
  4286. | "se-resize"
  4287. | "sw-resize"
  4288. | "text"
  4289. | "vertical-text"
  4290. | "w-resize"
  4291. | "wait"
  4292. | "zoom-in"
  4293. | "zoom-out"
  4294. | string;
  4295. export type Property$Direction = Globals | "ltr" | "rtl";
  4296. export type Property$Display =
  4297. | Globals
  4298. | DataType$DisplayOutside
  4299. | DataType$DisplayInside
  4300. | DataType$DisplayInternal
  4301. | DataType$DisplayLegacy
  4302. | "contents"
  4303. | "list-item"
  4304. | "none"
  4305. | string;
  4306. export type Property$EmptyCells = Globals | "hide" | "show";
  4307. export type Property$Filter = Globals | "none" | string;
  4308. export type Property$Flex<TLength = string | 0> = Globals | TLength | "auto" | "content" | "fit-content" | "max-content" | "min-content" | "none" | string | number;
  4309. export type Property$FlexBasis<TLength = string | 0> =
  4310. | Globals
  4311. | TLength
  4312. | "-moz-fit-content"
  4313. | "-moz-max-content"
  4314. | "-moz-min-content"
  4315. | "-webkit-auto"
  4316. | "auto"
  4317. | "content"
  4318. | "fit-content"
  4319. | "max-content"
  4320. | "min-content"
  4321. | string;
  4322. export type Property$FlexDirection = Globals | "column" | "column-reverse" | "row" | "row-reverse";
  4323. export type Property$FlexFlow = Globals | "column" | "column-reverse" | "nowrap" | "row" | "row-reverse" | "wrap" | "wrap-reverse" | string;
  4324. export type Property$FlexGrow = Globals | number;
  4325. export type Property$FlexShrink = Globals | number;
  4326. export type Property$FlexWrap = Globals | "nowrap" | "wrap" | "wrap-reverse";
  4327. export type Property$Float = Globals | "inline-end" | "inline-start" | "left" | "none" | "right";
  4328. export type Property$Font = Globals | "caption" | "icon" | "menu" | "message-box" | "small-caption" | "status-bar" | string;
  4329. export type Property$FontFamily = Globals | DataType$GenericFamily | string;
  4330. export type Property$FontFeatureSettings = Globals | "normal" | string;
  4331. export type Property$FontKerning = Globals | "auto" | "none" | "normal";
  4332. export type Property$FontLanguageOverride = Globals | "normal" | string;
  4333. export type Property$FontOpticalSizing = Globals | "auto" | "none";
  4334. export type Property$FontPalette = Globals | "dark" | "light" | "normal" | string;
  4335. export type Property$FontSize<TLength = string | 0> = Globals | DataType$AbsoluteSize | TLength | "larger" | "smaller" | string;
  4336. export type Property$FontSizeAdjust = Globals | "from-font" | "none" | string | number;
  4337. export type Property$FontSmooth<TLength = string | 0> = Globals | DataType$AbsoluteSize | TLength | "always" | "auto" | "never";
  4338. export type Property$FontStretch = Globals | DataType$FontStretchAbsolute;
  4339. export type Property$FontStyle = Globals | "italic" | "normal" | "oblique" | string;
  4340. export type Property$FontSynthesis = Globals | "none" | "small-caps" | "style" | "weight" | string;
  4341. export type Property$FontVariant =
  4342. | Globals
  4343. | DataType$EastAsianVariantValues
  4344. | "all-petite-caps"
  4345. | "all-small-caps"
  4346. | "common-ligatures"
  4347. | "contextual"
  4348. | "diagonal-fractions"
  4349. | "discretionary-ligatures"
  4350. | "full-width"
  4351. | "historical-forms"
  4352. | "historical-ligatures"
  4353. | "lining-nums"
  4354. | "no-common-ligatures"
  4355. | "no-contextual"
  4356. | "no-discretionary-ligatures"
  4357. | "no-historical-ligatures"
  4358. | "none"
  4359. | "normal"
  4360. | "oldstyle-nums"
  4361. | "ordinal"
  4362. | "petite-caps"
  4363. | "proportional-nums"
  4364. | "proportional-width"
  4365. | "ruby"
  4366. | "slashed-zero"
  4367. | "small-caps"
  4368. | "stacked-fractions"
  4369. | "tabular-nums"
  4370. | "titling-caps"
  4371. | "unicase"
  4372. | string;
  4373. export type Property$FontVariantAlternates = Globals | "historical-forms" | "normal" | string;
  4374. export type Property$FontVariantCaps = Globals | "all-petite-caps" | "all-small-caps" | "normal" | "petite-caps" | "small-caps" | "titling-caps" | "unicase";
  4375. export type Property$FontVariantEastAsian = Globals | DataType$EastAsianVariantValues | "full-width" | "normal" | "proportional-width" | "ruby" | string;
  4376. export type Property$FontVariantEmoji = Globals | "emoji" | "normal" | "text" | "unicode";
  4377. export type Property$FontVariantLigatures =
  4378. | Globals
  4379. | "common-ligatures"
  4380. | "contextual"
  4381. | "discretionary-ligatures"
  4382. | "historical-ligatures"
  4383. | "no-common-ligatures"
  4384. | "no-contextual"
  4385. | "no-discretionary-ligatures"
  4386. | "no-historical-ligatures"
  4387. | "none"
  4388. | "normal"
  4389. | string;
  4390. export type Property$FontVariantNumeric =
  4391. | Globals
  4392. | "diagonal-fractions"
  4393. | "lining-nums"
  4394. | "normal"
  4395. | "oldstyle-nums"
  4396. | "ordinal"
  4397. | "proportional-nums"
  4398. | "slashed-zero"
  4399. | "stacked-fractions"
  4400. | "tabular-nums"
  4401. | string;
  4402. export type Property$FontVariantPosition = Globals | "normal" | "sub" | "super";
  4403. export type Property$FontVariationSettings = Globals | "normal" | string;
  4404. export type Property$FontWeight = Globals | DataType$FontWeightAbsolute | "bolder" | "lighter";
  4405. export type Property$ForcedColorAdjust = Globals | "auto" | "none";
  4406. export type Property$Gap<TLength = string | 0> = Globals | TLength | "normal" | string;
  4407. export type Property$Grid = Globals | "none" | string;
  4408. export type Property$GridArea = Globals | DataType$GridLine | string;
  4409. export type Property$GridAutoColumns<TLength = string | 0> = Globals | DataType$TrackBreadth<TLength> | string;
  4410. export type Property$GridAutoFlow = Globals | "column" | "dense" | "row" | string;
  4411. export type Property$GridAutoRows<TLength = string | 0> = Globals | DataType$TrackBreadth<TLength> | string;
  4412. export type Property$GridColumn = Globals | DataType$GridLine | string;
  4413. export type Property$GridColumnEnd = Globals | DataType$GridLine;
  4414. export type Property$GridColumnGap<TLength = string | 0> = Globals | TLength | string;
  4415. export type Property$GridColumnStart = Globals | DataType$GridLine;
  4416. export type Property$GridGap<TLength = string | 0> = Globals | TLength | string;
  4417. export type Property$GridRow = Globals | DataType$GridLine | string;
  4418. export type Property$GridRowEnd = Globals | DataType$GridLine;
  4419. export type Property$GridRowGap<TLength = string | 0> = Globals | TLength | string;
  4420. export type Property$GridRowStart = Globals | DataType$GridLine;
  4421. export type Property$GridTemplate = Globals | "none" | string;
  4422. export type Property$GridTemplateAreas = Globals | "none" | string;
  4423. export type Property$GridTemplateColumns<TLength = string | 0> = Globals | DataType$TrackBreadth<TLength> | "none" | "subgrid" | string;
  4424. export type Property$GridTemplateRows<TLength = string | 0> = Globals | DataType$TrackBreadth<TLength> | "none" | "subgrid" | string;
  4425. export type Property$HangingPunctuation = Globals | "allow-end" | "first" | "force-end" | "last" | "none" | string;
  4426. export type Property$Height<TLength = string | 0> =
  4427. | Globals
  4428. | TLength
  4429. | "-moz-max-content"
  4430. | "-moz-min-content"
  4431. | "-webkit-fit-content"
  4432. | "auto"
  4433. | "fit-content"
  4434. | "max-content"
  4435. | "min-content"
  4436. | string;
  4437. export type Property$HyphenateCharacter = Globals | "auto" | string;
  4438. export type Property$HyphenateLimitChars = Globals | "auto" | string | number;
  4439. export type Property$Hyphens = Globals | "auto" | "manual" | "none";
  4440. export type Property$ImageOrientation = Globals | "flip" | "from-image" | string;
  4441. export type Property$ImageRendering = Globals | "-moz-crisp-edges" | "-webkit-optimize-contrast" | "auto" | "crisp-edges" | "pixelated";
  4442. export type Property$ImageResolution = Globals | "from-image" | string;
  4443. export type Property$ImeMode = Globals | "active" | "auto" | "disabled" | "inactive" | "normal";
  4444. export type Property$InitialLetter = Globals | "normal" | string | number;
  4445. export type Property$InlineSize<TLength = string | 0> =
  4446. | Globals
  4447. | TLength
  4448. | "-moz-fit-content"
  4449. | "-moz-max-content"
  4450. | "-moz-min-content"
  4451. | "-webkit-fill-available"
  4452. | "auto"
  4453. | "fit-content"
  4454. | "max-content"
  4455. | "min-content"
  4456. | string;
  4457. export type Property$InputSecurity = Globals | "auto" | "none";
  4458. export type Property$Inset<TLength = string | 0> = Globals | TLength | "auto" | string;
  4459. export type Property$InsetBlock<TLength = string | 0> = Globals | TLength | "auto" | string;
  4460. export type Property$InsetBlockEnd<TLength = string | 0> = Globals | TLength | "auto" | string;
  4461. export type Property$InsetBlockStart<TLength = string | 0> = Globals | TLength | "auto" | string;
  4462. export type Property$InsetInline<TLength = string | 0> = Globals | TLength | "auto" | string;
  4463. export type Property$InsetInlineEnd<TLength = string | 0> = Globals | TLength | "auto" | string;
  4464. export type Property$InsetInlineStart<TLength = string | 0> = Globals | TLength | "auto" | string;
  4465. export type Property$Isolation = Globals | "auto" | "isolate";
  4466. export type Property$JustifyContent = Globals | DataType$ContentDistribution | DataType$ContentPosition | "left" | "normal" | "right" | string;
  4467. export type Property$JustifyItems = Globals | DataType$SelfPosition | "baseline" | "left" | "legacy" | "normal" | "right" | "stretch" | string;
  4468. export type Property$JustifySelf = Globals | DataType$SelfPosition | "auto" | "baseline" | "left" | "normal" | "right" | "stretch" | string;
  4469. export type Property$JustifyTracks = Globals | DataType$ContentDistribution | DataType$ContentPosition | "left" | "normal" | "right" | string;
  4470. export type Property$Left<TLength = string | 0> = Globals | TLength | "auto" | string;
  4471. export type Property$LetterSpacing<TLength = string | 0> = Globals | TLength | "normal";
  4472. export type Property$LineBreak = Globals | "anywhere" | "auto" | "loose" | "normal" | "strict";
  4473. export type Property$LineClamp = Globals | "none" | number;
  4474. export type Property$LineHeight<TLength = string | 0> = Globals | TLength | "normal" | string | number;
  4475. export type Property$LineHeightStep<TLength = string | 0> = Globals | TLength;
  4476. export type Property$ListStyle = Globals | "inside" | "none" | "outside" | string;
  4477. export type Property$ListStyleImage = Globals | "none" | string;
  4478. export type Property$ListStylePosition = Globals | "inside" | "outside";
  4479. export type Property$ListStyleType = Globals | "none" | string;
  4480. export type Property$Margin<TLength = string | 0> = Globals | TLength | "auto" | string;
  4481. export type Property$MarginBlock<TLength = string | 0> = Globals | TLength | "auto" | string;
  4482. export type Property$MarginBlockEnd<TLength = string | 0> = Globals | TLength | "auto" | string;
  4483. export type Property$MarginBlockStart<TLength = string | 0> = Globals | TLength | "auto" | string;
  4484. export type Property$MarginBottom<TLength = string | 0> = Globals | TLength | "auto" | string;
  4485. export type Property$MarginInline<TLength = string | 0> = Globals | TLength | "auto" | string;
  4486. export type Property$MarginInlineEnd<TLength = string | 0> = Globals | TLength | "auto" | string;
  4487. export type Property$MarginInlineStart<TLength = string | 0> = Globals | TLength | "auto" | string;
  4488. export type Property$MarginLeft<TLength = string | 0> = Globals | TLength | "auto" | string;
  4489. export type Property$MarginRight<TLength = string | 0> = Globals | TLength | "auto" | string;
  4490. export type Property$MarginTop<TLength = string | 0> = Globals | TLength | "auto" | string;
  4491. export type Property$MarginTrim = Globals | "all" | "in-flow" | "none";
  4492. export type Property$Mask<TLength = string | 0> = Globals | DataType$MaskLayer<TLength> | string;
  4493. export type Property$MaskBorder = Globals | "alpha" | "luminance" | "none" | "repeat" | "round" | "space" | "stretch" | string | number;
  4494. export type Property$MaskBorderMode = Globals | "alpha" | "luminance";
  4495. export type Property$MaskBorderOutset<TLength = string | 0> = Globals | TLength | string | number;
  4496. export type Property$MaskBorderRepeat = Globals | "repeat" | "round" | "space" | "stretch" | string;
  4497. export type Property$MaskBorderSlice = Globals | string | number;
  4498. export type Property$MaskBorderSource = Globals | "none" | string;
  4499. export type Property$MaskBorderWidth<TLength = string | 0> = Globals | TLength | "auto" | string | number;
  4500. export type Property$MaskClip = Globals | DataType$GeometryBox | "no-clip" | string;
  4501. export type Property$MaskComposite = Globals | DataType$CompositingOperator | string;
  4502. export type Property$MaskImage = Globals | "none" | string;
  4503. export type Property$MaskMode = Globals | DataType$MaskingMode | string;
  4504. export type Property$MaskOrigin = Globals | DataType$GeometryBox | string;
  4505. export type Property$MaskPosition<TLength = string | 0> = Globals | DataType$Position<TLength> | string;
  4506. export type Property$MaskRepeat = Globals | DataType$RepeatStyle | string;
  4507. export type Property$MaskSize<TLength = string | 0> = Globals | DataType$BgSize<TLength> | string;
  4508. export type Property$MaskType = Globals | "alpha" | "luminance";
  4509. export type Property$MathDepth = Globals | "auto-add" | string | number;
  4510. export type Property$MathShift = Globals | "compact" | "normal";
  4511. export type Property$MathStyle = Globals | "compact" | "normal";
  4512. export type Property$MaxBlockSize<TLength = string | 0> =
  4513. | Globals
  4514. | TLength
  4515. | "-moz-max-content"
  4516. | "-moz-min-content"
  4517. | "-webkit-fill-available"
  4518. | "fit-content"
  4519. | "max-content"
  4520. | "min-content"
  4521. | "none"
  4522. | string;
  4523. export type Property$MaxHeight<TLength = string | 0> =
  4524. | Globals
  4525. | TLength
  4526. | "-moz-fit-content"
  4527. | "-moz-max-content"
  4528. | "-moz-min-content"
  4529. | "-webkit-fit-content"
  4530. | "-webkit-max-content"
  4531. | "-webkit-min-content"
  4532. | "fit-content"
  4533. | "intrinsic"
  4534. | "max-content"
  4535. | "min-content"
  4536. | "none"
  4537. | string;
  4538. export type Property$MaxInlineSize<TLength = string | 0> =
  4539. | Globals
  4540. | TLength
  4541. | "-moz-fit-content"
  4542. | "-moz-max-content"
  4543. | "-moz-min-content"
  4544. | "-webkit-fill-available"
  4545. | "fit-content"
  4546. | "max-content"
  4547. | "min-content"
  4548. | "none"
  4549. | string;
  4550. export type Property$MaxLines = Globals | "none" | number;
  4551. export type Property$MaxWidth<TLength = string | 0> =
  4552. | Globals
  4553. | TLength
  4554. | "-moz-fit-content"
  4555. | "-moz-max-content"
  4556. | "-moz-min-content"
  4557. | "-webkit-fit-content"
  4558. | "-webkit-max-content"
  4559. | "-webkit-min-content"
  4560. | "fit-content"
  4561. | "intrinsic"
  4562. | "max-content"
  4563. | "min-content"
  4564. | "none"
  4565. | string;
  4566. export type Property$MinBlockSize<TLength = string | 0> =
  4567. | Globals
  4568. | TLength
  4569. | "-moz-max-content"
  4570. | "-moz-min-content"
  4571. | "-webkit-fill-available"
  4572. | "auto"
  4573. | "fit-content"
  4574. | "max-content"
  4575. | "min-content"
  4576. | string;
  4577. export type Property$MinHeight<TLength = string | 0> =
  4578. | Globals
  4579. | TLength
  4580. | "-moz-fit-content"
  4581. | "-moz-max-content"
  4582. | "-moz-min-content"
  4583. | "-webkit-fit-content"
  4584. | "-webkit-max-content"
  4585. | "-webkit-min-content"
  4586. | "auto"
  4587. | "fit-content"
  4588. | "intrinsic"
  4589. | "max-content"
  4590. | "min-content"
  4591. | string;
  4592. export type Property$MinInlineSize<TLength = string | 0> =
  4593. | Globals
  4594. | TLength
  4595. | "-moz-fit-content"
  4596. | "-moz-max-content"
  4597. | "-moz-min-content"
  4598. | "-webkit-fill-available"
  4599. | "auto"
  4600. | "fit-content"
  4601. | "max-content"
  4602. | "min-content"
  4603. | string;
  4604. export type Property$MinWidth<TLength = string | 0> =
  4605. | Globals
  4606. | TLength
  4607. | "-moz-fit-content"
  4608. | "-moz-max-content"
  4609. | "-moz-min-content"
  4610. | "-webkit-fill-available"
  4611. | "-webkit-fit-content"
  4612. | "-webkit-max-content"
  4613. | "-webkit-min-content"
  4614. | "auto"
  4615. | "fit-content"
  4616. | "intrinsic"
  4617. | "max-content"
  4618. | "min-content"
  4619. | "min-intrinsic"
  4620. | string;
  4621. export type Property$MixBlendMode = Globals | DataType$BlendMode | "plus-lighter";
  4622. export type Property$Offset<TLength = string | 0> = Globals | DataType$Position<TLength> | DataType$GeometryBox | "auto" | "none" | string;
  4623. export type Property$OffsetDistance<TLength = string | 0> = Globals | TLength | string;
  4624. export type Property$OffsetPath = Globals | DataType$GeometryBox | "none" | string;
  4625. export type Property$OffsetRotate = Globals | "auto" | "reverse" | string;
  4626. export type Property$ObjectFit = Globals | "contain" | "cover" | "fill" | "none" | "scale-down";
  4627. export type Property$ObjectPosition<TLength = string | 0> = Globals | DataType$Position<TLength>;
  4628. export type Property$OffsetAnchor<TLength = string | 0> = Globals | DataType$Position<TLength> | "auto";
  4629. export type Property$OffsetPosition<TLength = string | 0> = Globals | DataType$Position<TLength> | "auto";
  4630. export type Property$Opacity = Globals | string | number;
  4631. export type Property$Order = Globals | number;
  4632. export type Property$Orphans = Globals | number;
  4633. export type Property$Outline<TLength = string | 0> = Globals | DataType$Color | DataType$LineStyle | DataType$LineWidth<TLength> | "auto" | "invert" | string;
  4634. export type Property$OutlineColor = Globals | DataType$Color | "invert";
  4635. export type Property$OutlineOffset<TLength = string | 0> = Globals | TLength;
  4636. export type Property$OutlineStyle = Globals | DataType$LineStyle | "auto" | string;
  4637. export type Property$OutlineWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength>;
  4638. export type Property$Overflow = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible" | string;
  4639. export type Property$OverflowAnchor = Globals | "auto" | "none";
  4640. export type Property$OverflowBlock = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
  4641. export type Property$OverflowClipBox = Globals | "content-box" | "padding-box";
  4642. export type Property$OverflowClipMargin<TLength = string | 0> = Globals | DataType$VisualBox | TLength | string;
  4643. export type Property$OverflowInline = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
  4644. export type Property$OverflowWrap = Globals | "anywhere" | "break-word" | "normal";
  4645. export type Property$OverflowX = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
  4646. export type Property$OverflowY = Globals | "-moz-hidden-unscrollable" | "auto" | "clip" | "hidden" | "scroll" | "visible";
  4647. export type Property$OverscrollBehavior = Globals | "auto" | "contain" | "none" | string;
  4648. export type Property$OverscrollBehaviorBlock = Globals | "auto" | "contain" | "none";
  4649. export type Property$OverscrollBehaviorInline = Globals | "auto" | "contain" | "none";
  4650. export type Property$OverscrollBehaviorX = Globals | "auto" | "contain" | "none";
  4651. export type Property$OverscrollBehaviorY = Globals | "auto" | "contain" | "none";
  4652. export type Property$Padding<TLength = string | 0> = Globals | TLength | string;
  4653. export type Property$PaddingBlock<TLength = string | 0> = Globals | TLength | string;
  4654. export type Property$PaddingBlockEnd<TLength = string | 0> = Globals | TLength | string;
  4655. export type Property$PaddingBlockStart<TLength = string | 0> = Globals | TLength | string;
  4656. export type Property$PaddingBottom<TLength = string | 0> = Globals | TLength | string;
  4657. export type Property$PaddingInline<TLength = string | 0> = Globals | TLength | string;
  4658. export type Property$PaddingInlineEnd<TLength = string | 0> = Globals | TLength | string;
  4659. export type Property$PaddingInlineStart<TLength = string | 0> = Globals | TLength | string;
  4660. export type Property$PaddingLeft<TLength = string | 0> = Globals | TLength | string;
  4661. export type Property$PaddingRight<TLength = string | 0> = Globals | TLength | string;
  4662. export type Property$PaddingTop<TLength = string | 0> = Globals | TLength | string;
  4663. export type Property$Page = Globals | "auto" | string;
  4664. export type Property$PageBreakAfter = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
  4665. export type Property$PageBreakBefore = Globals | "always" | "auto" | "avoid" | "left" | "recto" | "right" | "verso";
  4666. export type Property$PageBreakInside = Globals | "auto" | "avoid";
  4667. export type Property$PaintOrder = Globals | "fill" | "markers" | "normal" | "stroke" | string;
  4668. export type Property$Perspective<TLength = string | 0> = Globals | TLength | "none";
  4669. export type Property$PerspectiveOrigin<TLength = string | 0> = Globals | DataType$Position<TLength>;
  4670. export type Property$PlaceContent = Globals | DataType$ContentDistribution | DataType$ContentPosition | "baseline" | "normal" | string;
  4671. export type Property$PlaceItems = Globals | DataType$SelfPosition | "baseline" | "normal" | "stretch" | string;
  4672. export type Property$PlaceSelf = Globals | DataType$SelfPosition | "auto" | "baseline" | "normal" | "stretch" | string;
  4673. export type Property$PointerEvents = Globals | "all" | "auto" | "fill" | "inherit" | "none" | "painted" | "stroke" | "visible" | "visibleFill" | "visiblePainted" | "visibleStroke";
  4674. export type Property$Position = Globals | "-webkit-sticky" | "absolute" | "fixed" | "relative" | "static" | "sticky";
  4675. export type Property$Quotes = Globals | "auto" | "none" | string;
  4676. export type Property$Resize = Globals | "block" | "both" | "horizontal" | "inline" | "none" | "vertical";
  4677. export type Property$Right<TLength = string | 0> = Globals | TLength | "auto" | string;
  4678. export type Property$Rotate = Globals | "none" | string;
  4679. export type Property$RowGap<TLength = string | 0> = Globals | TLength | "normal" | string;
  4680. export type Property$RubyAlign = Globals | "center" | "space-around" | "space-between" | "start";
  4681. export type Property$RubyMerge = Globals | "auto" | "collapse" | "separate";
  4682. export type Property$RubyPosition = Globals | "alternate" | "inter-character" | "over" | "under" | string;
  4683. export type Property$Scale = Globals | "none" | string | number;
  4684. export type Property$ScrollBehavior = Globals | "auto" | "smooth";
  4685. export type Property$ScrollMargin<TLength = string | 0> = Globals | TLength | string;
  4686. export type Property$ScrollMarginBlock<TLength = string | 0> = Globals | TLength | string;
  4687. export type Property$ScrollMarginBlockEnd<TLength = string | 0> = Globals | TLength;
  4688. export type Property$ScrollMarginBlockStart<TLength = string | 0> = Globals | TLength;
  4689. export type Property$ScrollMarginBottom<TLength = string | 0> = Globals | TLength;
  4690. export type Property$ScrollMarginInline<TLength = string | 0> = Globals | TLength | string;
  4691. export type Property$ScrollMarginInlineEnd<TLength = string | 0> = Globals | TLength;
  4692. export type Property$ScrollMarginInlineStart<TLength = string | 0> = Globals | TLength;
  4693. export type Property$ScrollMarginLeft<TLength = string | 0> = Globals | TLength;
  4694. export type Property$ScrollMarginRight<TLength = string | 0> = Globals | TLength;
  4695. export type Property$ScrollMarginTop<TLength = string | 0> = Globals | TLength;
  4696. export type Property$ScrollPadding<TLength = string | 0> = Globals | TLength | "auto" | string;
  4697. export type Property$ScrollPaddingBlock<TLength = string | 0> = Globals | TLength | "auto" | string;
  4698. export type Property$ScrollPaddingBlockEnd<TLength = string | 0> = Globals | TLength | "auto" | string;
  4699. export type Property$ScrollPaddingBlockStart<TLength = string | 0> = Globals | TLength | "auto" | string;
  4700. export type Property$ScrollPaddingBottom<TLength = string | 0> = Globals | TLength | "auto" | string;
  4701. export type Property$ScrollPaddingInline<TLength = string | 0> = Globals | TLength | "auto" | string;
  4702. export type Property$ScrollPaddingInlineEnd<TLength = string | 0> = Globals | TLength | "auto" | string;
  4703. export type Property$ScrollPaddingInlineStart<TLength = string | 0> = Globals | TLength | "auto" | string;
  4704. export type Property$ScrollPaddingLeft<TLength = string | 0> = Globals | TLength | "auto" | string;
  4705. export type Property$ScrollPaddingRight<TLength = string | 0> = Globals | TLength | "auto" | string;
  4706. export type Property$ScrollPaddingTop<TLength = string | 0> = Globals | TLength | "auto" | string;
  4707. export type Property$ScrollSnapAlign = Globals | "center" | "end" | "none" | "start" | string;
  4708. export type Property$ScrollSnapCoordinate<TLength = string | 0> = Globals | DataType$Position<TLength> | "none" | string;
  4709. export type Property$ScrollSnapDestination<TLength = string | 0> = Globals | DataType$Position<TLength>;
  4710. export type Property$ScrollSnapPointsX = Globals | "none" | string;
  4711. export type Property$ScrollSnapPointsY = Globals | "none" | string;
  4712. export type Property$ScrollSnapStop = Globals | "always" | "normal";
  4713. export type Property$ScrollSnapType = Globals | "block" | "both" | "inline" | "none" | "x" | "y" | string;
  4714. export type Property$ScrollSnapTypeX = Globals | "mandatory" | "none" | "proximity";
  4715. export type Property$ScrollSnapTypeY = Globals | "mandatory" | "none" | "proximity";
  4716. export type Property$ScrollTimeline = Globals | "none" | string;
  4717. export type Property$ScrollTimelineAxis = Globals | "block" | "horizontal" | "inline" | "vertical" | string;
  4718. export type Property$ScrollTimelineName = Globals | "none" | string;
  4719. export type Property$ScrollbarColor = Globals | "auto" | string;
  4720. export type Property$ScrollbarGutter = Globals | "auto" | "stable" | string;
  4721. export type Property$ScrollbarWidth = Globals | "auto" | "none" | "thin";
  4722. export type Property$ShapeImageThreshold = Globals | string | number;
  4723. export type Property$ShapeMargin<TLength = string | 0> = Globals | TLength | string;
  4724. export type Property$ShapeOutside = Globals | DataType$Box | "margin-box" | "none" | string;
  4725. export type Property$TabSize<TLength = string | 0> = Globals | TLength | number;
  4726. export type Property$TableLayout = Globals | "auto" | "fixed";
  4727. export type Property$TextAlign = Globals | "center" | "end" | "justify" | "left" | "match-parent" | "right" | "start";
  4728. export type Property$TextAlignLast = Globals | "auto" | "center" | "end" | "justify" | "left" | "right" | "start";
  4729. export type Property$TextCombineUpright = Globals | "all" | "none" | string;
  4730. export type Property$TextDecoration<TLength = string | 0> =
  4731. | Globals
  4732. | DataType$Color
  4733. | TLength
  4734. | "auto"
  4735. | "blink"
  4736. | "dashed"
  4737. | "dotted"
  4738. | "double"
  4739. | "from-font"
  4740. | "grammar-error"
  4741. | "line-through"
  4742. | "none"
  4743. | "overline"
  4744. | "solid"
  4745. | "spelling-error"
  4746. | "underline"
  4747. | "wavy"
  4748. | string;
  4749. export type Property$TextDecorationColor = Globals | DataType$Color;
  4750. export type Property$TextDecorationLine = Globals | "blink" | "grammar-error" | "line-through" | "none" | "overline" | "spelling-error" | "underline" | string;
  4751. export type Property$TextDecorationSkip = Globals | "box-decoration" | "edges" | "leading-spaces" | "none" | "objects" | "spaces" | "trailing-spaces" | string;
  4752. export type Property$TextDecorationSkipInk = Globals | "all" | "auto" | "none";
  4753. export type Property$TextDecorationStyle = Globals | "dashed" | "dotted" | "double" | "solid" | "wavy";
  4754. export type Property$TextDecorationThickness<TLength = string | 0> = Globals | TLength | "auto" | "from-font" | string;
  4755. export type Property$TextEmphasis = Globals | DataType$Color | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | string;
  4756. export type Property$TextEmphasisColor = Globals | DataType$Color;
  4757. export type Property$TextEmphasisPosition = Globals | string;
  4758. export type Property$TextEmphasisStyle = Globals | "circle" | "dot" | "double-circle" | "filled" | "none" | "open" | "sesame" | "triangle" | string;
  4759. export type Property$TextIndent<TLength = string | 0> = Globals | TLength | string;
  4760. export type Property$TextJustify = Globals | "auto" | "inter-character" | "inter-word" | "none";
  4761. export type Property$TextOrientation = Globals | "mixed" | "sideways" | "upright";
  4762. export type Property$TextOverflow = Globals | "clip" | "ellipsis" | string;
  4763. export type Property$TextRendering = Globals | "auto" | "geometricPrecision" | "optimizeLegibility" | "optimizeSpeed";
  4764. export type Property$TextShadow = Globals | "none" | string;
  4765. export type Property$TextSizeAdjust = Globals | "auto" | "none" | string;
  4766. export type Property$TextTransform = Globals | "capitalize" | "full-size-kana" | "full-width" | "lowercase" | "none" | "uppercase";
  4767. export type Property$TextUnderlineOffset<TLength = string | 0> = Globals | TLength | "auto" | string;
  4768. export type Property$TextUnderlinePosition = Globals | "auto" | "from-font" | "left" | "right" | "under" | string;
  4769. export type Property$Top<TLength = string | 0> = Globals | TLength | "auto" | string;
  4770. export type Property$TouchAction =
  4771. | Globals
  4772. | "-ms-manipulation"
  4773. | "-ms-none"
  4774. | "-ms-pinch-zoom"
  4775. | "auto"
  4776. | "manipulation"
  4777. | "none"
  4778. | "pan-down"
  4779. | "pan-left"
  4780. | "pan-right"
  4781. | "pan-up"
  4782. | "pan-x"
  4783. | "pan-y"
  4784. | "pinch-zoom"
  4785. | string;
  4786. export type Property$Transform = Globals | "none" | string;
  4787. export type Property$TransformBox = Globals | "border-box" | "content-box" | "fill-box" | "stroke-box" | "view-box";
  4788. export type Property$TransformOrigin<TLength = string | 0> = Globals | TLength | "bottom" | "center" | "left" | "right" | "top" | string;
  4789. export type Property$TransformStyle = Globals | "flat" | "preserve-3d";
  4790. export type Property$Transition<TTime = string> = Globals | DataType$SingleTransition<TTime> | string;
  4791. export type Property$TransitionDelay<TTime = string> = Globals | TTime | string;
  4792. export type Property$TransitionDuration<TTime = string> = Globals | TTime | string;
  4793. export type Property$TransitionProperty = Globals | "all" | "none" | string;
  4794. export type Property$TransitionTimingFunction = Globals | DataType$EasingFunction | string;
  4795. export type Property$Translate<TLength = string | 0> = Globals | TLength | "none" | string;
  4796. export type Property$UnicodeBidi =
  4797. | Globals
  4798. | "-moz-isolate"
  4799. | "-moz-isolate-override"
  4800. | "-moz-plaintext"
  4801. | "-webkit-isolate"
  4802. | "-webkit-isolate-override"
  4803. | "-webkit-plaintext"
  4804. | "bidi-override"
  4805. | "embed"
  4806. | "isolate"
  4807. | "isolate-override"
  4808. | "normal"
  4809. | "plaintext";
  4810. export type Property$UserSelect = Globals | "-moz-none" | "all" | "auto" | "contain" | "element" | "none" | "text";
  4811. export type Property$VerticalAlign<TLength = string | 0> = Globals | TLength | "baseline" | "bottom" | "middle" | "sub" | "super" | "text-bottom" | "text-top" | "top" | string;
  4812. export type Property$ViewTransitionName = Globals | "none" | string;
  4813. export type Property$Visibility = Globals | "collapse" | "hidden" | "visible";
  4814. export type Property$WhiteSpace = Globals | "-moz-pre-wrap" | "break-spaces" | "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
  4815. export type Property$Widows = Globals | number;
  4816. export type Property$Width<TLength = string | 0> =
  4817. | Globals
  4818. | TLength
  4819. | "-moz-fit-content"
  4820. | "-moz-max-content"
  4821. | "-moz-min-content"
  4822. | "-webkit-fit-content"
  4823. | "-webkit-max-content"
  4824. | "auto"
  4825. | "fit-content"
  4826. | "intrinsic"
  4827. | "max-content"
  4828. | "min-content"
  4829. | "min-intrinsic"
  4830. | string;
  4831. export type Property$WillChange = Globals | DataType$AnimateableFeature | "auto" | string;
  4832. export type Property$WordBreak = Globals | "break-all" | "break-word" | "keep-all" | "normal";
  4833. export type Property$WordSpacing<TLength = string | 0> = Globals | TLength | "normal";
  4834. export type Property$WordWrap = Globals | "break-word" | "normal";
  4835. export type Property$WritingMode = Globals | "horizontal-tb" | "sideways-lr" | "sideways-rl" | "vertical-lr" | "vertical-rl";
  4836. export type Property$ZIndex = Globals | "auto" | number;
  4837. export type Property$Zoom = Globals | "normal" | "reset" | string | number;
  4838. export type Property$MozAppearance =
  4839. | Globals
  4840. | "-moz-mac-unified-toolbar"
  4841. | "-moz-win-borderless-glass"
  4842. | "-moz-win-browsertabbar-toolbox"
  4843. | "-moz-win-communications-toolbox"
  4844. | "-moz-win-communicationstext"
  4845. | "-moz-win-exclude-glass"
  4846. | "-moz-win-glass"
  4847. | "-moz-win-media-toolbox"
  4848. | "-moz-win-mediatext"
  4849. | "-moz-window-button-box"
  4850. | "-moz-window-button-box-maximized"
  4851. | "-moz-window-button-close"
  4852. | "-moz-window-button-maximize"
  4853. | "-moz-window-button-minimize"
  4854. | "-moz-window-button-restore"
  4855. | "-moz-window-frame-bottom"
  4856. | "-moz-window-frame-left"
  4857. | "-moz-window-frame-right"
  4858. | "-moz-window-titlebar"
  4859. | "-moz-window-titlebar-maximized"
  4860. | "button"
  4861. | "button-arrow-down"
  4862. | "button-arrow-next"
  4863. | "button-arrow-previous"
  4864. | "button-arrow-up"
  4865. | "button-bevel"
  4866. | "button-focus"
  4867. | "caret"
  4868. | "checkbox"
  4869. | "checkbox-container"
  4870. | "checkbox-label"
  4871. | "checkmenuitem"
  4872. | "dualbutton"
  4873. | "groupbox"
  4874. | "listbox"
  4875. | "listitem"
  4876. | "menuarrow"
  4877. | "menubar"
  4878. | "menucheckbox"
  4879. | "menuimage"
  4880. | "menuitem"
  4881. | "menuitemtext"
  4882. | "menulist"
  4883. | "menulist-button"
  4884. | "menulist-text"
  4885. | "menulist-textfield"
  4886. | "menupopup"
  4887. | "menuradio"
  4888. | "menuseparator"
  4889. | "meterbar"
  4890. | "meterchunk"
  4891. | "none"
  4892. | "progressbar"
  4893. | "progressbar-vertical"
  4894. | "progresschunk"
  4895. | "progresschunk-vertical"
  4896. | "radio"
  4897. | "radio-container"
  4898. | "radio-label"
  4899. | "radiomenuitem"
  4900. | "range"
  4901. | "range-thumb"
  4902. | "resizer"
  4903. | "resizerpanel"
  4904. | "scale-horizontal"
  4905. | "scale-vertical"
  4906. | "scalethumb-horizontal"
  4907. | "scalethumb-vertical"
  4908. | "scalethumbend"
  4909. | "scalethumbstart"
  4910. | "scalethumbtick"
  4911. | "scrollbarbutton-down"
  4912. | "scrollbarbutton-left"
  4913. | "scrollbarbutton-right"
  4914. | "scrollbarbutton-up"
  4915. | "scrollbarthumb-horizontal"
  4916. | "scrollbarthumb-vertical"
  4917. | "scrollbartrack-horizontal"
  4918. | "scrollbartrack-vertical"
  4919. | "searchfield"
  4920. | "separator"
  4921. | "sheet"
  4922. | "spinner"
  4923. | "spinner-downbutton"
  4924. | "spinner-textfield"
  4925. | "spinner-upbutton"
  4926. | "splitter"
  4927. | "statusbar"
  4928. | "statusbarpanel"
  4929. | "tab"
  4930. | "tab-scroll-arrow-back"
  4931. | "tab-scroll-arrow-forward"
  4932. | "tabpanel"
  4933. | "tabpanels"
  4934. | "textfield"
  4935. | "textfield-multiline"
  4936. | "toolbar"
  4937. | "toolbarbutton"
  4938. | "toolbarbutton-dropdown"
  4939. | "toolbargripper"
  4940. | "toolbox"
  4941. | "tooltip"
  4942. | "treeheader"
  4943. | "treeheadercell"
  4944. | "treeheadersortarrow"
  4945. | "treeitem"
  4946. | "treeline"
  4947. | "treetwisty"
  4948. | "treetwistyopen"
  4949. | "treeview";
  4950. export type Property$MozBinding = Globals | "none" | string;
  4951. export type Property$MozBorderBottomColors = Globals | DataType$Color | "none" | string;
  4952. export type Property$MozBorderLeftColors = Globals | DataType$Color | "none" | string;
  4953. export type Property$MozBorderRightColors = Globals | DataType$Color | "none" | string;
  4954. export type Property$MozBorderTopColors = Globals | DataType$Color | "none" | string;
  4955. export type Property$MozContextProperties = Globals | "fill" | "fill-opacity" | "none" | "stroke" | "stroke-opacity" | string;
  4956. export type Property$MozFloatEdge = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";
  4957. export type Property$MozForceBrokenImageIcon = Globals | 0 | 1;
  4958. export type Property$MozImageRegion = Globals | "auto" | string;
  4959. export type Property$MozOrient = Globals | "block" | "horizontal" | "inline" | "vertical";
  4960. export type Property$MozOutlineRadius<TLength = string | 0> = Globals | TLength | string;
  4961. export type Property$MozOutlineRadiusBottomleft<TLength = string | 0> = Globals | TLength | string;
  4962. export type Property$MozOutlineRadiusBottomright<TLength = string | 0> = Globals | TLength | string;
  4963. export type Property$MozOutlineRadiusTopleft<TLength = string | 0> = Globals | TLength | string;
  4964. export type Property$MozOutlineRadiusTopright<TLength = string | 0> = Globals | TLength | string;
  4965. export type Property$MozStackSizing = Globals | "ignore" | "stretch-to-fit";
  4966. export type Property$MozTextBlink = Globals | "blink" | "none";
  4967. export type Property$MozUserFocus = Globals | "ignore" | "none" | "normal" | "select-after" | "select-all" | "select-before" | "select-menu" | "select-same";
  4968. export type Property$MozUserInput = Globals | "auto" | "disabled" | "enabled" | "none";
  4969. export type Property$MozUserModify = Globals | "read-only" | "read-write" | "write-only";
  4970. export type Property$MozWindowDragging = Globals | "drag" | "no-drag";
  4971. export type Property$MozWindowShadow = Globals | "default" | "menu" | "none" | "sheet" | "tooltip";
  4972. export type Property$MsAccelerator = Globals | "false" | "true";
  4973. export type Property$MsBlockProgression = Globals | "bt" | "lr" | "rl" | "tb";
  4974. export type Property$MsContentZoomChaining = Globals | "chained" | "none";
  4975. export type Property$MsContentZoomLimit = Globals | string;
  4976. export type Property$MsContentZoomLimitMax = Globals | string;
  4977. export type Property$MsContentZoomLimitMin = Globals | string;
  4978. export type Property$MsContentZoomSnap = Globals | "mandatory" | "none" | "proximity" | string;
  4979. export type Property$MsContentZoomSnapPoints = Globals | string;
  4980. export type Property$MsContentZoomSnapType = Globals | "mandatory" | "none" | "proximity";
  4981. export type Property$MsContentZooming = Globals | "none" | "zoom";
  4982. export type Property$MsFilter = Globals | string;
  4983. export type Property$MsFlowFrom = Globals | "none" | string;
  4984. export type Property$MsFlowInto = Globals | "none" | string;
  4985. export type Property$MsGridColumns<TLength = string | 0> = Globals | DataType$TrackBreadth<TLength> | "none" | string;
  4986. export type Property$MsGridRows<TLength = string | 0> = Globals | DataType$TrackBreadth<TLength> | "none" | string;
  4987. export type Property$MsHighContrastAdjust = Globals | "auto" | "none";
  4988. export type Property$MsHyphenateLimitChars = Globals | "auto" | string | number;
  4989. export type Property$MsHyphenateLimitLines = Globals | "no-limit" | number;
  4990. export type Property$MsHyphenateLimitZone<TLength = string | 0> = Globals | TLength | string;
  4991. export type Property$MsImeAlign = Globals | "after" | "auto";
  4992. export type Property$MsOverflowStyle = Globals | "-ms-autohiding-scrollbar" | "auto" | "none" | "scrollbar";
  4993. export type Property$MsScrollChaining = Globals | "chained" | "none";
  4994. export type Property$MsScrollLimit = Globals | string;
  4995. export type Property$MsScrollLimitXMax<TLength = string | 0> = Globals | TLength | "auto";
  4996. export type Property$MsScrollLimitXMin<TLength = string | 0> = Globals | TLength;
  4997. export type Property$MsScrollLimitYMax<TLength = string | 0> = Globals | TLength | "auto";
  4998. export type Property$MsScrollLimitYMin<TLength = string | 0> = Globals | TLength;
  4999. export type Property$MsScrollRails = Globals | "none" | "railed";
  5000. export type Property$MsScrollSnapPointsX = Globals | string;
  5001. export type Property$MsScrollSnapPointsY = Globals | string;
  5002. export type Property$MsScrollSnapType = Globals | "mandatory" | "none" | "proximity";
  5003. export type Property$MsScrollSnapX = Globals | string;
  5004. export type Property$MsScrollSnapY = Globals | string;
  5005. export type Property$MsScrollTranslation = Globals | "none" | "vertical-to-horizontal";
  5006. export type Property$MsScrollbar3dlightColor = Globals | DataType$Color;
  5007. export type Property$MsScrollbarArrowColor = Globals | DataType$Color;
  5008. export type Property$MsScrollbarBaseColor = Globals | DataType$Color;
  5009. export type Property$MsScrollbarDarkshadowColor = Globals | DataType$Color;
  5010. export type Property$MsScrollbarFaceColor = Globals | DataType$Color;
  5011. export type Property$MsScrollbarHighlightColor = Globals | DataType$Color;
  5012. export type Property$MsScrollbarShadowColor = Globals | DataType$Color;
  5013. export type Property$MsScrollbarTrackColor = Globals | DataType$Color;
  5014. export type Property$MsTextAutospace = Globals | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space" | "none";
  5015. export type Property$MsTouchSelect = Globals | "grippers" | "none";
  5016. export type Property$MsUserSelect = Globals | "element" | "none" | "text";
  5017. export type Property$MsWrapFlow = Globals | "auto" | "both" | "clear" | "end" | "maximum" | "start";
  5018. export type Property$MsWrapMargin<TLength = string | 0> = Globals | TLength;
  5019. export type Property$MsWrapThrough = Globals | "none" | "wrap";
  5020. export type Property$WebkitAppearance =
  5021. | Globals
  5022. | "-apple-pay-button"
  5023. | "button"
  5024. | "button-bevel"
  5025. | "caret"
  5026. | "checkbox"
  5027. | "default-button"
  5028. | "inner-spin-button"
  5029. | "listbox"
  5030. | "listitem"
  5031. | "media-controls-background"
  5032. | "media-controls-fullscreen-background"
  5033. | "media-current-time-display"
  5034. | "media-enter-fullscreen-button"
  5035. | "media-exit-fullscreen-button"
  5036. | "media-fullscreen-button"
  5037. | "media-mute-button"
  5038. | "media-overlay-play-button"
  5039. | "media-play-button"
  5040. | "media-seek-back-button"
  5041. | "media-seek-forward-button"
  5042. | "media-slider"
  5043. | "media-sliderthumb"
  5044. | "media-time-remaining-display"
  5045. | "media-toggle-closed-captions-button"
  5046. | "media-volume-slider"
  5047. | "media-volume-slider-container"
  5048. | "media-volume-sliderthumb"
  5049. | "menulist"
  5050. | "menulist-button"
  5051. | "menulist-text"
  5052. | "menulist-textfield"
  5053. | "meter"
  5054. | "none"
  5055. | "progress-bar"
  5056. | "progress-bar-value"
  5057. | "push-button"
  5058. | "radio"
  5059. | "searchfield"
  5060. | "searchfield-cancel-button"
  5061. | "searchfield-decoration"
  5062. | "searchfield-results-button"
  5063. | "searchfield-results-decoration"
  5064. | "slider-horizontal"
  5065. | "slider-vertical"
  5066. | "sliderthumb-horizontal"
  5067. | "sliderthumb-vertical"
  5068. | "square-button"
  5069. | "textarea"
  5070. | "textfield";
  5071. export type Property$WebkitBorderBefore<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | DataType$LineStyle | DataType$Color | string;
  5072. export type Property$WebkitBorderBeforeColor = Globals | DataType$Color;
  5073. export type Property$WebkitBorderBeforeStyle = Globals | DataType$LineStyle | string;
  5074. export type Property$WebkitBorderBeforeWidth<TLength = string | 0> = Globals | DataType$LineWidth<TLength> | string;
  5075. export type Property$WebkitBoxReflect<TLength = string | 0> = Globals | TLength | "above" | "below" | "left" | "right" | string;
  5076. export type Property$WebkitLineClamp = Globals | "none" | number;
  5077. export type Property$WebkitMask<TLength = string | 0> =
  5078. | Globals
  5079. | DataType$Position<TLength>
  5080. | DataType$RepeatStyle
  5081. | DataType$Box
  5082. | "border"
  5083. | "content"
  5084. | "none"
  5085. | "padding"
  5086. | "text"
  5087. | string;
  5088. export type Property$WebkitMaskAttachment = Globals | DataType$Attachment | string;
  5089. export type Property$WebkitMaskClip = Globals | DataType$Box | "border" | "content" | "padding" | "text" | string;
  5090. export type Property$WebkitMaskComposite = Globals | DataType$CompositeStyle | string;
  5091. export type Property$WebkitMaskImage = Globals | "none" | string;
  5092. export type Property$WebkitMaskOrigin = Globals | DataType$Box | "border" | "content" | "padding" | string;
  5093. export type Property$WebkitMaskPosition<TLength = string | 0> = Globals | DataType$Position<TLength> | string;
  5094. export type Property$WebkitMaskPositionX<TLength = string | 0> = Globals | TLength | "center" | "left" | "right" | string;
  5095. export type Property$WebkitMaskPositionY<TLength = string | 0> = Globals | TLength | "bottom" | "center" | "top" | string;
  5096. export type Property$WebkitMaskRepeat = Globals | DataType$RepeatStyle | string;
  5097. export type Property$WebkitMaskRepeatX = Globals | "no-repeat" | "repeat" | "round" | "space";
  5098. export type Property$WebkitMaskRepeatY = Globals | "no-repeat" | "repeat" | "round" | "space";
  5099. export type Property$WebkitMaskSize<TLength = string | 0> = Globals | DataType$BgSize<TLength> | string;
  5100. export type Property$WebkitOverflowScrolling = Globals | "auto" | "touch";
  5101. export type Property$WebkitTapHighlightColor = Globals | DataType$Color;
  5102. export type Property$WebkitTextFillColor = Globals | DataType$Color;
  5103. export type Property$WebkitTextStroke<TLength = string | 0> = Globals | DataType$Color | TLength | string;
  5104. export type Property$WebkitTextStrokeColor = Globals | DataType$Color;
  5105. export type Property$WebkitTextStrokeWidth<TLength = string | 0> = Globals | TLength;
  5106. export type Property$WebkitTouchCallout = Globals | "default" | "none";
  5107. export type Property$WebkitUserModify = Globals | "read-only" | "read-write" | "read-write-plaintext-only";
  5108. export type Property$AlignmentBaseline =
  5109. | Globals
  5110. | "after-edge"
  5111. | "alphabetic"
  5112. | "auto"
  5113. | "baseline"
  5114. | "before-edge"
  5115. | "central"
  5116. | "hanging"
  5117. | "ideographic"
  5118. | "mathematical"
  5119. | "middle"
  5120. | "text-after-edge"
  5121. | "text-before-edge";
  5122. export type Property$BaselineShift<TLength = string | 0> = Globals | TLength | "baseline" | "sub" | "super" | string;
  5123. export type Property$ClipRule = Globals | "evenodd" | "nonzero";
  5124. export type Property$ColorInterpolation = Globals | "auto" | "linearRGB" | "sRGB";
  5125. export type Property$ColorRendering = Globals | "auto" | "optimizeQuality" | "optimizeSpeed";
  5126. export type Property$DominantBaseline =
  5127. | Globals
  5128. | "alphabetic"
  5129. | "auto"
  5130. | "central"
  5131. | "hanging"
  5132. | "ideographic"
  5133. | "mathematical"
  5134. | "middle"
  5135. | "no-change"
  5136. | "reset-size"
  5137. | "text-after-edge"
  5138. | "text-before-edge"
  5139. | "use-script";
  5140. export type Property$Fill = Globals | DataType$Paint;
  5141. export type Property$FillOpacity = Globals | number;
  5142. export type Property$FillRule = Globals | "evenodd" | "nonzero";
  5143. export type Property$FloodColor = Globals | DataType$Color | "currentColor";
  5144. export type Property$FloodOpacity = Globals | number;
  5145. export type Property$GlyphOrientationVertical = Globals | "auto" | string | number;
  5146. export type Property$LightingColor = Globals | DataType$Color | "currentColor";
  5147. export type Property$Marker = Globals | "none" | string;
  5148. export type Property$MarkerEnd = Globals | "none" | string;
  5149. export type Property$MarkerMid = Globals | "none" | string;
  5150. export type Property$MarkerStart = Globals | "none" | string;
  5151. export type Property$ShapeRendering = Globals | "auto" | "crispEdges" | "geometricPrecision" | "optimizeSpeed";
  5152. export type Property$StopColor = Globals | DataType$Color | "currentColor";
  5153. export type Property$StopOpacity = Globals | number;
  5154. export type Property$Stroke = Globals | DataType$Paint;
  5155. export type Property$StrokeDasharray<TLength = string | 0> = Globals | DataType$Dasharray<TLength> | "none";
  5156. export type Property$StrokeDashoffset<TLength = string | 0> = Globals | TLength | string;
  5157. export type Property$StrokeLinecap = Globals | "butt" | "round" | "square";
  5158. export type Property$StrokeLinejoin = Globals | "bevel" | "miter" | "round";
  5159. export type Property$StrokeMiterlimit = Globals | number;
  5160. export type Property$StrokeOpacity = Globals | number;
  5161. export type Property$StrokeWidth<TLength = string | 0> = Globals | TLength | string;
  5162. export type Property$TextAnchor = Globals | "end" | "middle" | "start";
  5163. export type Property$VectorEffect = Globals | "non-scaling-stroke" | "none";
  5164. export type AtRule$CounterStyle<TLength = string | 0, TTime = string> = {|
  5165. additiveSymbols?: string,
  5166. fallback?: string,
  5167. negative?: string,
  5168. pad?: string,
  5169. prefix?: string,
  5170. range?: AtRule$Range,
  5171. speakAs?: AtRule$SpeakAs,
  5172. suffix?: string,
  5173. symbols?: string,
  5174. system?: AtRule$System,
  5175. |};
  5176. export type AtRule$CounterStyleHyphen<TLength = string | 0, TTime = string> = {|
  5177. "additive-symbols"?: string,
  5178. fallback?: string,
  5179. negative?: string,
  5180. pad?: string,
  5181. prefix?: string,
  5182. range?: AtRule$Range,
  5183. "speak-as"?: AtRule$SpeakAs,
  5184. suffix?: string,
  5185. symbols?: string,
  5186. system?: AtRule$System,
  5187. |};
  5188. export type AtRule$CounterStyleFallback<TLength = string | 0, TTime = string> = {|
  5189. additiveSymbols?: string | Array<string>,
  5190. fallback?: string | Array<string>,
  5191. negative?: string | Array<string>,
  5192. pad?: string | Array<string>,
  5193. prefix?: string | Array<string>,
  5194. range?: AtRule$Range | Array<AtRule$Range>,
  5195. speakAs?: AtRule$SpeakAs | Array<AtRule$SpeakAs>,
  5196. suffix?: string | Array<string>,
  5197. symbols?: string | Array<string>,
  5198. system?: AtRule$System | Array<AtRule$System>,
  5199. |};
  5200. export type AtRule$CounterStyleHyphenFallback<TLength = string | 0, TTime = string> = {|
  5201. "additive-symbols"?: string | Array<string>,
  5202. fallback?: string | Array<string>,
  5203. negative?: string | Array<string>,
  5204. pad?: string | Array<string>,
  5205. prefix?: string | Array<string>,
  5206. range?: AtRule$Range | Array<AtRule$Range>,
  5207. "speak-as"?: AtRule$SpeakAs | Array<AtRule$SpeakAs>,
  5208. suffix?: string | Array<string>,
  5209. symbols?: string | Array<string>,
  5210. system?: AtRule$System | Array<AtRule$System>,
  5211. |};
  5212. export type AtRule$FontFace<TLength = string | 0, TTime = string> = {|
  5213. MozFontFeatureSettings?: AtRule$FontFeatureSettings,
  5214. ascentOverride?: AtRule$AscentOverride,
  5215. descentOverride?: AtRule$DescentOverride,
  5216. fontDisplay?: AtRule$FontDisplay,
  5217. fontFamily?: string,
  5218. fontFeatureSettings?: AtRule$FontFeatureSettings,
  5219. fontStretch?: AtRule$FontStretch,
  5220. fontStyle?: AtRule$FontStyle,
  5221. fontVariant?: AtRule$FontVariant,
  5222. fontVariationSettings?: AtRule$FontVariationSettings,
  5223. fontWeight?: AtRule$FontWeight,
  5224. lineGapOverride?: AtRule$LineGapOverride,
  5225. sizeAdjust?: string,
  5226. src?: string,
  5227. unicodeRange?: string,
  5228. |};
  5229. export type AtRule$FontFaceHyphen<TLength = string | 0, TTime = string> = {|
  5230. "-moz-font-feature-settings"?: AtRule$FontFeatureSettings,
  5231. "ascent-override"?: AtRule$AscentOverride,
  5232. "descent-override"?: AtRule$DescentOverride,
  5233. "font-display"?: AtRule$FontDisplay,
  5234. "font-family"?: string,
  5235. "font-feature-settings"?: AtRule$FontFeatureSettings,
  5236. "font-stretch"?: AtRule$FontStretch,
  5237. "font-style"?: AtRule$FontStyle,
  5238. "font-variant"?: AtRule$FontVariant,
  5239. "font-variation-settings"?: AtRule$FontVariationSettings,
  5240. "font-weight"?: AtRule$FontWeight,
  5241. "line-gap-override"?: AtRule$LineGapOverride,
  5242. "size-adjust"?: string,
  5243. src?: string,
  5244. "unicode-range"?: string,
  5245. |};
  5246. export type AtRule$FontFaceFallback<TLength = string | 0, TTime = string> = {|
  5247. MozFontFeatureSettings?: AtRule$FontFeatureSettings | Array<AtRule$FontFeatureSettings>,
  5248. ascentOverride?: AtRule$AscentOverride | Array<AtRule$AscentOverride>,
  5249. descentOverride?: AtRule$DescentOverride | Array<AtRule$DescentOverride>,
  5250. fontDisplay?: AtRule$FontDisplay | Array<AtRule$FontDisplay>,
  5251. fontFamily?: string | Array<string>,
  5252. fontFeatureSettings?: AtRule$FontFeatureSettings | Array<AtRule$FontFeatureSettings>,
  5253. fontStretch?: AtRule$FontStretch | Array<AtRule$FontStretch>,
  5254. fontStyle?: AtRule$FontStyle | Array<AtRule$FontStyle>,
  5255. fontVariant?: AtRule$FontVariant | Array<AtRule$FontVariant>,
  5256. fontVariationSettings?: AtRule$FontVariationSettings | Array<AtRule$FontVariationSettings>,
  5257. fontWeight?: AtRule$FontWeight | Array<AtRule$FontWeight>,
  5258. lineGapOverride?: AtRule$LineGapOverride | Array<AtRule$LineGapOverride>,
  5259. sizeAdjust?: string | Array<string>,
  5260. src?: string | Array<string>,
  5261. unicodeRange?: string | Array<string>,
  5262. |};
  5263. export type AtRule$FontFaceHyphenFallback<TLength = string | 0, TTime = string> = {|
  5264. "-moz-font-feature-settings"?: AtRule$FontFeatureSettings | Array<AtRule$FontFeatureSettings>,
  5265. "ascent-override"?: AtRule$AscentOverride | Array<AtRule$AscentOverride>,
  5266. "descent-override"?: AtRule$DescentOverride | Array<AtRule$DescentOverride>,
  5267. "font-display"?: AtRule$FontDisplay | Array<AtRule$FontDisplay>,
  5268. "font-family"?: string | Array<string>,
  5269. "font-feature-settings"?: AtRule$FontFeatureSettings | Array<AtRule$FontFeatureSettings>,
  5270. "font-stretch"?: AtRule$FontStretch | Array<AtRule$FontStretch>,
  5271. "font-style"?: AtRule$FontStyle | Array<AtRule$FontStyle>,
  5272. "font-variant"?: AtRule$FontVariant | Array<AtRule$FontVariant>,
  5273. "font-variation-settings"?: AtRule$FontVariationSettings | Array<AtRule$FontVariationSettings>,
  5274. "font-weight"?: AtRule$FontWeight | Array<AtRule$FontWeight>,
  5275. "line-gap-override"?: AtRule$LineGapOverride | Array<AtRule$LineGapOverride>,
  5276. "size-adjust"?: string | Array<string>,
  5277. src?: string | Array<string>,
  5278. "unicode-range"?: string | Array<string>,
  5279. |};
  5280. export type AtRule$FontPaletteValues<TLength = string | 0, TTime = string> = {|
  5281. basePalette?: AtRule$BasePalette,
  5282. fontFamily?: string,
  5283. overrideColors?: string,
  5284. |};
  5285. export type AtRule$FontPaletteValuesHyphen<TLength = string | 0, TTime = string> = {|
  5286. "base-palette"?: AtRule$BasePalette,
  5287. "font-family"?: string,
  5288. "override-colors"?: string,
  5289. |};
  5290. export type AtRule$FontPaletteValuesFallback<TLength = string | 0, TTime = string> = {|
  5291. basePalette?: AtRule$BasePalette | Array<AtRule$BasePalette>,
  5292. fontFamily?: string | Array<string>,
  5293. overrideColors?: string | Array<string>,
  5294. |};
  5295. export type AtRule$FontPaletteValuesHyphenFallback<TLength = string | 0, TTime = string> = {|
  5296. "base-palette"?: AtRule$BasePalette | Array<AtRule$BasePalette>,
  5297. "font-family"?: string | Array<string>,
  5298. "override-colors"?: string | Array<string>,
  5299. |};
  5300. export type AtRule$Page<TLength = string | 0, TTime = string> = {|
  5301. bleed?: AtRule$Bleed<TLength>,
  5302. marks?: AtRule$Marks,
  5303. pageOrientation?: AtRule$PageOrientation,
  5304. size?: AtRule$Size<TLength>,
  5305. |};
  5306. export type AtRule$PageHyphen<TLength = string | 0, TTime = string> = {|
  5307. bleed?: AtRule$Bleed<TLength>,
  5308. marks?: AtRule$Marks,
  5309. "page-orientation"?: AtRule$PageOrientation,
  5310. size?: AtRule$Size<TLength>,
  5311. |};
  5312. export type AtRule$PageFallback<TLength = string | 0, TTime = string> = {|
  5313. bleed?: AtRule$Bleed<TLength> | Array<AtRule$Bleed<TLength>>,
  5314. marks?: AtRule$Marks | Array<AtRule$Marks>,
  5315. pageOrientation?: AtRule$PageOrientation | Array<AtRule$PageOrientation>,
  5316. size?: AtRule$Size<TLength> | Array<AtRule$Size<TLength>>,
  5317. |};
  5318. export type AtRule$PageHyphenFallback<TLength = string | 0, TTime = string> = {|
  5319. bleed?: AtRule$Bleed<TLength> | Array<AtRule$Bleed<TLength>>,
  5320. marks?: AtRule$Marks | Array<AtRule$Marks>,
  5321. "page-orientation"?: AtRule$PageOrientation | Array<AtRule$PageOrientation>,
  5322. size?: AtRule$Size<TLength> | Array<AtRule$Size<TLength>>,
  5323. |};
  5324. export type AtRule$Property<TLength = string | 0, TTime = string> = {|
  5325. inherits?: AtRule$Inherits,
  5326. initialValue?: string,
  5327. syntax?: string,
  5328. |};
  5329. export type AtRule$PropertyHyphen<TLength = string | 0, TTime = string> = {|
  5330. inherits?: AtRule$Inherits,
  5331. "initial-value"?: string,
  5332. syntax?: string,
  5333. |};
  5334. export type AtRule$PropertyFallback<TLength = string | 0, TTime = string> = {|
  5335. inherits?: AtRule$Inherits | Array<AtRule$Inherits>,
  5336. initialValue?: string | Array<string>,
  5337. syntax?: string | Array<string>,
  5338. |};
  5339. export type AtRule$PropertyHyphenFallback<TLength = string | 0, TTime = string> = {|
  5340. inherits?: AtRule$Inherits | Array<AtRule$Inherits>,
  5341. "initial-value"?: string | Array<string>,
  5342. syntax?: string | Array<string>,
  5343. |};
  5344. export type AtRule$Viewport<TLength = string | 0, TTime = string> = {|
  5345. height?: AtRule$Height<TLength>,
  5346. maxHeight?: AtRule$MaxHeight<TLength>,
  5347. maxWidth?: AtRule$MaxWidth<TLength>,
  5348. maxZoom?: AtRule$MaxZoom,
  5349. minHeight?: AtRule$MinHeight<TLength>,
  5350. minWidth?: AtRule$MinWidth<TLength>,
  5351. minZoom?: AtRule$MinZoom,
  5352. orientation?: AtRule$Orientation,
  5353. userZoom?: AtRule$UserZoom,
  5354. viewportFit?: AtRule$ViewportFit,
  5355. width?: AtRule$Width<TLength>,
  5356. zoom?: AtRule$Zoom,
  5357. |};
  5358. export type AtRule$ViewportHyphen<TLength = string | 0, TTime = string> = {|
  5359. height?: AtRule$Height<TLength>,
  5360. "max-height"?: AtRule$MaxHeight<TLength>,
  5361. "max-width"?: AtRule$MaxWidth<TLength>,
  5362. "max-zoom"?: AtRule$MaxZoom,
  5363. "min-height"?: AtRule$MinHeight<TLength>,
  5364. "min-width"?: AtRule$MinWidth<TLength>,
  5365. "min-zoom"?: AtRule$MinZoom,
  5366. orientation?: AtRule$Orientation,
  5367. "user-zoom"?: AtRule$UserZoom,
  5368. "viewport-fit"?: AtRule$ViewportFit,
  5369. width?: AtRule$Width<TLength>,
  5370. zoom?: AtRule$Zoom,
  5371. |};
  5372. export type AtRule$ViewportFallback<TLength = string | 0, TTime = string> = {|
  5373. height?: AtRule$Height<TLength> | Array<AtRule$Height<TLength>>,
  5374. maxHeight?: AtRule$MaxHeight<TLength> | Array<AtRule$MaxHeight<TLength>>,
  5375. maxWidth?: AtRule$MaxWidth<TLength> | Array<AtRule$MaxWidth<TLength>>,
  5376. maxZoom?: AtRule$MaxZoom | Array<AtRule$MaxZoom>,
  5377. minHeight?: AtRule$MinHeight<TLength> | Array<AtRule$MinHeight<TLength>>,
  5378. minWidth?: AtRule$MinWidth<TLength> | Array<AtRule$MinWidth<TLength>>,
  5379. minZoom?: AtRule$MinZoom | Array<AtRule$MinZoom>,
  5380. orientation?: AtRule$Orientation | Array<AtRule$Orientation>,
  5381. userZoom?: AtRule$UserZoom | Array<AtRule$UserZoom>,
  5382. viewportFit?: AtRule$ViewportFit | Array<AtRule$ViewportFit>,
  5383. width?: AtRule$Width<TLength> | Array<AtRule$Width<TLength>>,
  5384. zoom?: AtRule$Zoom | Array<AtRule$Zoom>,
  5385. |};
  5386. export type AtRule$ViewportHyphenFallback<TLength = string | 0, TTime = string> = {|
  5387. height?: AtRule$Height<TLength> | Array<AtRule$Height<TLength>>,
  5388. "max-height"?: AtRule$MaxHeight<TLength> | Array<AtRule$MaxHeight<TLength>>,
  5389. "max-width"?: AtRule$MaxWidth<TLength> | Array<AtRule$MaxWidth<TLength>>,
  5390. "max-zoom"?: AtRule$MaxZoom | Array<AtRule$MaxZoom>,
  5391. "min-height"?: AtRule$MinHeight<TLength> | Array<AtRule$MinHeight<TLength>>,
  5392. "min-width"?: AtRule$MinWidth<TLength> | Array<AtRule$MinWidth<TLength>>,
  5393. "min-zoom"?: AtRule$MinZoom | Array<AtRule$MinZoom>,
  5394. orientation?: AtRule$Orientation | Array<AtRule$Orientation>,
  5395. "user-zoom"?: AtRule$UserZoom | Array<AtRule$UserZoom>,
  5396. "viewport-fit"?: AtRule$ViewportFit | Array<AtRule$ViewportFit>,
  5397. width?: AtRule$Width<TLength> | Array<AtRule$Width<TLength>>,
  5398. zoom?: AtRule$Zoom | Array<AtRule$Zoom>,
  5399. |};
  5400. type AtRule$Range = "auto" | string;
  5401. type AtRule$SpeakAs = "auto" | "bullets" | "numbers" | "spell-out" | "words" | string;
  5402. type AtRule$System = "additive" | "alphabetic" | "cyclic" | "fixed" | "numeric" | "symbolic" | string;
  5403. type AtRule$FontFeatureSettings = "normal" | string;
  5404. type AtRule$AscentOverride = "normal" | string;
  5405. type AtRule$DescentOverride = "normal" | string;
  5406. type AtRule$FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
  5407. type AtRule$FontStretch = DataType$FontStretchAbsolute | string;
  5408. type AtRule$FontStyle = "italic" | "normal" | "oblique" | string;
  5409. type AtRule$FontVariant =
  5410. | DataType$EastAsianVariantValues
  5411. | "all-petite-caps"
  5412. | "all-small-caps"
  5413. | "common-ligatures"
  5414. | "contextual"
  5415. | "diagonal-fractions"
  5416. | "discretionary-ligatures"
  5417. | "full-width"
  5418. | "historical-forms"
  5419. | "historical-ligatures"
  5420. | "lining-nums"
  5421. | "no-common-ligatures"
  5422. | "no-contextual"
  5423. | "no-discretionary-ligatures"
  5424. | "no-historical-ligatures"
  5425. | "none"
  5426. | "normal"
  5427. | "oldstyle-nums"
  5428. | "ordinal"
  5429. | "petite-caps"
  5430. | "proportional-nums"
  5431. | "proportional-width"
  5432. | "ruby"
  5433. | "slashed-zero"
  5434. | "small-caps"
  5435. | "stacked-fractions"
  5436. | "tabular-nums"
  5437. | "titling-caps"
  5438. | "unicase"
  5439. | string;
  5440. type AtRule$FontVariationSettings = "normal" | string;
  5441. type AtRule$FontWeight = DataType$FontWeightAbsolute | string;
  5442. type AtRule$LineGapOverride = "normal" | string;
  5443. type AtRule$BasePalette = "dark" | "light" | number;
  5444. type AtRule$Bleed<TLength> = TLength | "auto";
  5445. type AtRule$Marks = "crop" | "cross" | "none" | string;
  5446. type AtRule$PageOrientation = "rotate-left" | "rotate-right" | "upright";
  5447. type AtRule$Size<TLength> = DataType$PageSize | TLength | "auto" | "landscape" | "portrait" | string;
  5448. type AtRule$Inherits = "false" | "true";
  5449. type AtRule$Height<TLength> = DataType$ViewportLength<TLength> | string;
  5450. type AtRule$MaxHeight<TLength> = DataType$ViewportLength<TLength>;
  5451. type AtRule$MaxWidth<TLength> = DataType$ViewportLength<TLength>;
  5452. type AtRule$MaxZoom = "auto" | string | number;
  5453. type AtRule$MinHeight<TLength> = DataType$ViewportLength<TLength>;
  5454. type AtRule$MinWidth<TLength> = DataType$ViewportLength<TLength>;
  5455. type AtRule$MinZoom = "auto" | string | number;
  5456. type AtRule$Orientation = "auto" | "landscape" | "portrait";
  5457. type AtRule$UserZoom = "fixed" | "zoom";
  5458. type AtRule$ViewportFit = "auto" | "contain" | "cover";
  5459. type AtRule$Width<TLength> = DataType$ViewportLength<TLength> | string;
  5460. type AtRule$Zoom = "auto" | string | number;
  5461. type DataType$AbsoluteSize = "large" | "medium" | "small" | "x-large" | "x-small" | "xx-large" | "xx-small" | "xxx-large";
  5462. type DataType$AnimateableFeature = "contents" | "scroll-position" | string;
  5463. type DataType$Attachment = "fixed" | "local" | "scroll";
  5464. type DataType$BgPosition<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | string;
  5465. type DataType$BgSize<TLength> = TLength | "auto" | "contain" | "cover" | string;
  5466. type DataType$BlendMode =
  5467. | "color"
  5468. | "color-burn"
  5469. | "color-dodge"
  5470. | "darken"
  5471. | "difference"
  5472. | "exclusion"
  5473. | "hard-light"
  5474. | "hue"
  5475. | "lighten"
  5476. | "luminosity"
  5477. | "multiply"
  5478. | "normal"
  5479. | "overlay"
  5480. | "saturation"
  5481. | "screen"
  5482. | "soft-light";
  5483. type DataType$Box = "border-box" | "content-box" | "padding-box";
  5484. type DataType$Color = DataType$NamedColor | DataType$DeprecatedSystemColor | "currentcolor" | string;
  5485. type DataType$CompatAuto =
  5486. | "button"
  5487. | "checkbox"
  5488. | "listbox"
  5489. | "menulist"
  5490. | "meter"
  5491. | "progress-bar"
  5492. | "push-button"
  5493. | "radio"
  5494. | "searchfield"
  5495. | "slider-horizontal"
  5496. | "square-button"
  5497. | "textarea";
  5498. type DataType$CompositeStyle =
  5499. | "clear"
  5500. | "copy"
  5501. | "destination-atop"
  5502. | "destination-in"
  5503. | "destination-out"
  5504. | "destination-over"
  5505. | "source-atop"
  5506. | "source-in"
  5507. | "source-out"
  5508. | "source-over"
  5509. | "xor";
  5510. type DataType$CompositingOperator = "add" | "exclude" | "intersect" | "subtract";
  5511. type DataType$ContentDistribution = "space-around" | "space-between" | "space-evenly" | "stretch";
  5512. type DataType$ContentList = DataType$Quote | "contents" | string;
  5513. type DataType$ContentPosition = "center" | "end" | "flex-end" | "flex-start" | "start";
  5514. type DataType$CubicBezierTimingFunction = "ease" | "ease-in" | "ease-in-out" | "ease-out" | string;
  5515. type DataType$Dasharray<TLength> = TLength | string | number;
  5516. type DataType$DeprecatedSystemColor =
  5517. | "ActiveBorder"
  5518. | "ActiveCaption"
  5519. | "AppWorkspace"
  5520. | "Background"
  5521. | "ButtonFace"
  5522. | "ButtonHighlight"
  5523. | "ButtonShadow"
  5524. | "ButtonText"
  5525. | "CaptionText"
  5526. | "GrayText"
  5527. | "Highlight"
  5528. | "HighlightText"
  5529. | "InactiveBorder"
  5530. | "InactiveCaption"
  5531. | "InactiveCaptionText"
  5532. | "InfoBackground"
  5533. | "InfoText"
  5534. | "Menu"
  5535. | "MenuText"
  5536. | "Scrollbar"
  5537. | "ThreeDDarkShadow"
  5538. | "ThreeDFace"
  5539. | "ThreeDHighlight"
  5540. | "ThreeDLightShadow"
  5541. | "ThreeDShadow"
  5542. | "Window"
  5543. | "WindowFrame"
  5544. | "WindowText";
  5545. type DataType$DisplayInside = "-ms-flexbox" | "-ms-grid" | "-webkit-flex" | "flex" | "flow" | "flow-root" | "grid" | "ruby" | "table";
  5546. type DataType$DisplayInternal =
  5547. | "ruby-base"
  5548. | "ruby-base-container"
  5549. | "ruby-text"
  5550. | "ruby-text-container"
  5551. | "table-caption"
  5552. | "table-cell"
  5553. | "table-column"
  5554. | "table-column-group"
  5555. | "table-footer-group"
  5556. | "table-header-group"
  5557. | "table-row"
  5558. | "table-row-group";
  5559. type DataType$DisplayLegacy =
  5560. | "-ms-inline-flexbox"
  5561. | "-ms-inline-grid"
  5562. | "-webkit-inline-flex"
  5563. | "inline-block"
  5564. | "inline-flex"
  5565. | "inline-grid"
  5566. | "inline-list-item"
  5567. | "inline-table";
  5568. type DataType$DisplayOutside = "block" | "inline" | "run-in";
  5569. type DataType$EasingFunction = DataType$CubicBezierTimingFunction | DataType$StepTimingFunction | "linear";
  5570. type DataType$EastAsianVariantValues = "jis04" | "jis78" | "jis83" | "jis90" | "simplified" | "traditional";
  5571. type DataType$FinalBgLayer<TLength> = DataType$Color | DataType$BgPosition<TLength> | DataType$RepeatStyle | DataType$Attachment | DataType$Box | "none" | string;
  5572. type DataType$FontStretchAbsolute =
  5573. | "condensed"
  5574. | "expanded"
  5575. | "extra-condensed"
  5576. | "extra-expanded"
  5577. | "normal"
  5578. | "semi-condensed"
  5579. | "semi-expanded"
  5580. | "ultra-condensed"
  5581. | "ultra-expanded"
  5582. | string;
  5583. type DataType$FontWeightAbsolute = "bold" | "normal" | number;
  5584. type DataType$GenericFamily = "cursive" | "fantasy" | "monospace" | "sans-serif" | "serif";
  5585. type DataType$GeometryBox = DataType$Box | "fill-box" | "margin-box" | "stroke-box" | "view-box";
  5586. type DataType$GridLine = "auto" | string | number;
  5587. type DataType$LineStyle = "dashed" | "dotted" | "double" | "groove" | "hidden" | "inset" | "none" | "outset" | "ridge" | "solid";
  5588. type DataType$LineWidth<TLength> = TLength | "medium" | "thick" | "thin";
  5589. type DataType$MaskLayer<TLength> =
  5590. | DataType$Position<TLength>
  5591. | DataType$RepeatStyle
  5592. | DataType$GeometryBox
  5593. | DataType$CompositingOperator
  5594. | DataType$MaskingMode
  5595. | "no-clip"
  5596. | "none"
  5597. | string;
  5598. type DataType$MaskingMode = "alpha" | "luminance" | "match-source";
  5599. type DataType$NamedColor =
  5600. | "aliceblue"
  5601. | "antiquewhite"
  5602. | "aqua"
  5603. | "aquamarine"
  5604. | "azure"
  5605. | "beige"
  5606. | "bisque"
  5607. | "black"
  5608. | "blanchedalmond"
  5609. | "blue"
  5610. | "blueviolet"
  5611. | "brown"
  5612. | "burlywood"
  5613. | "cadetblue"
  5614. | "chartreuse"
  5615. | "chocolate"
  5616. | "coral"
  5617. | "cornflowerblue"
  5618. | "cornsilk"
  5619. | "crimson"
  5620. | "cyan"
  5621. | "darkblue"
  5622. | "darkcyan"
  5623. | "darkgoldenrod"
  5624. | "darkgray"
  5625. | "darkgreen"
  5626. | "darkgrey"
  5627. | "darkkhaki"
  5628. | "darkmagenta"
  5629. | "darkolivegreen"
  5630. | "darkorange"
  5631. | "darkorchid"
  5632. | "darkred"
  5633. | "darksalmon"
  5634. | "darkseagreen"
  5635. | "darkslateblue"
  5636. | "darkslategray"
  5637. | "darkslategrey"
  5638. | "darkturquoise"
  5639. | "darkviolet"
  5640. | "deeppink"
  5641. | "deepskyblue"
  5642. | "dimgray"
  5643. | "dimgrey"
  5644. | "dodgerblue"
  5645. | "firebrick"
  5646. | "floralwhite"
  5647. | "forestgreen"
  5648. | "fuchsia"
  5649. | "gainsboro"
  5650. | "ghostwhite"
  5651. | "gold"
  5652. | "goldenrod"
  5653. | "gray"
  5654. | "green"
  5655. | "greenyellow"
  5656. | "grey"
  5657. | "honeydew"
  5658. | "hotpink"
  5659. | "indianred"
  5660. | "indigo"
  5661. | "ivory"
  5662. | "khaki"
  5663. | "lavender"
  5664. | "lavenderblush"
  5665. | "lawngreen"
  5666. | "lemonchiffon"
  5667. | "lightblue"
  5668. | "lightcoral"
  5669. | "lightcyan"
  5670. | "lightgoldenrodyellow"
  5671. | "lightgray"
  5672. | "lightgreen"
  5673. | "lightgrey"
  5674. | "lightpink"
  5675. | "lightsalmon"
  5676. | "lightseagreen"
  5677. | "lightskyblue"
  5678. | "lightslategray"
  5679. | "lightslategrey"
  5680. | "lightsteelblue"
  5681. | "lightyellow"
  5682. | "lime"
  5683. | "limegreen"
  5684. | "linen"
  5685. | "magenta"
  5686. | "maroon"
  5687. | "mediumaquamarine"
  5688. | "mediumblue"
  5689. | "mediumorchid"
  5690. | "mediumpurple"
  5691. | "mediumseagreen"
  5692. | "mediumslateblue"
  5693. | "mediumspringgreen"
  5694. | "mediumturquoise"
  5695. | "mediumvioletred"
  5696. | "midnightblue"
  5697. | "mintcream"
  5698. | "mistyrose"
  5699. | "moccasin"
  5700. | "navajowhite"
  5701. | "navy"
  5702. | "oldlace"
  5703. | "olive"
  5704. | "olivedrab"
  5705. | "orange"
  5706. | "orangered"
  5707. | "orchid"
  5708. | "palegoldenrod"
  5709. | "palegreen"
  5710. | "paleturquoise"
  5711. | "palevioletred"
  5712. | "papayawhip"
  5713. | "peachpuff"
  5714. | "peru"
  5715. | "pink"
  5716. | "plum"
  5717. | "powderblue"
  5718. | "purple"
  5719. | "rebeccapurple"
  5720. | "red"
  5721. | "rosybrown"
  5722. | "royalblue"
  5723. | "saddlebrown"
  5724. | "salmon"
  5725. | "sandybrown"
  5726. | "seagreen"
  5727. | "seashell"
  5728. | "sienna"
  5729. | "silver"
  5730. | "skyblue"
  5731. | "slateblue"
  5732. | "slategray"
  5733. | "slategrey"
  5734. | "snow"
  5735. | "springgreen"
  5736. | "steelblue"
  5737. | "tan"
  5738. | "teal"
  5739. | "thistle"
  5740. | "tomato"
  5741. | "transparent"
  5742. | "turquoise"
  5743. | "violet"
  5744. | "wheat"
  5745. | "white"
  5746. | "whitesmoke"
  5747. | "yellow"
  5748. | "yellowgreen";
  5749. type DataType$PageSize = "A3" | "A4" | "A5" | "B4" | "B5" | "JIS-B4" | "JIS-B5" | "ledger" | "legal" | "letter";
  5750. type DataType$Paint = DataType$Color | "child" | "context-fill" | "context-stroke" | "none" | string;
  5751. type DataType$Position<TLength> = TLength | "bottom" | "center" | "left" | "right" | "top" | string;
  5752. type DataType$Quote = "close-quote" | "no-close-quote" | "no-open-quote" | "open-quote";
  5753. type DataType$RepeatStyle = "no-repeat" | "repeat" | "repeat-x" | "repeat-y" | "round" | "space" | string;
  5754. type DataType$SelfPosition = "center" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "start";
  5755. type DataType$SingleAnimation<TTime> =
  5756. | DataType$EasingFunction
  5757. | DataType$SingleAnimationDirection
  5758. | DataType$SingleAnimationFillMode
  5759. | TTime
  5760. | "infinite"
  5761. | "none"
  5762. | "paused"
  5763. | "running"
  5764. | string
  5765. | number;
  5766. type DataType$SingleAnimationComposition = "accumulate" | "add" | "replace";
  5767. type DataType$SingleAnimationDirection = "alternate" | "alternate-reverse" | "normal" | "reverse";
  5768. type DataType$SingleAnimationFillMode = "backwards" | "both" | "forwards" | "none";
  5769. type DataType$SingleAnimationTimeline = "auto" | "none" | string;
  5770. type DataType$SingleTransition<TTime> = DataType$EasingFunction | TTime | "all" | "none" | string;
  5771. type DataType$StepTimingFunction = "step-end" | "step-start" | string;
  5772. type DataType$TrackBreadth<TLength> = TLength | "auto" | "max-content" | "min-content" | string;
  5773. type DataType$ViewportLength<TLength> = TLength | "auto" | string;
  5774. type DataType$VisualBox = "border-box" | "content-box" | "padding-box";