index.js.flow 336 KB

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