stormcloud-video-player 0.1.13 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.cts CHANGED
@@ -1,4 +1,5 @@
1
- import React from 'react';
1
+ import React, { CSSProperties, lazy as lazy$1 } from 'react';
2
+ import * as csstype from 'csstype';
2
3
 
3
4
  type LateJoinPolicy = "play_remaining" | "skip_to_content";
4
5
  interface AdBreak {
@@ -148,9 +149,3597 @@ type StormcloudVideoPlayerProps = Omit<StormcloudVideoPlayerConfig, "videoElemen
148
149
  };
149
150
  declare const StormcloudVideoPlayerComponent: React.FC<StormcloudVideoPlayerProps>;
150
151
 
152
+ interface OnProgressProps {
153
+ played: number;
154
+ playedSeconds: number;
155
+ loaded: number;
156
+ loadedSeconds: number;
157
+ }
158
+ interface BaseStormcloudPlayerProps {
159
+ src?: string;
160
+ playing?: boolean;
161
+ loop?: boolean;
162
+ controls?: boolean;
163
+ volume?: number;
164
+ muted?: boolean;
165
+ playbackRate?: number;
166
+ width?: string | number;
167
+ height?: string | number;
168
+ style?: CSSProperties;
169
+ progressInterval?: number;
170
+ playsInline?: boolean;
171
+ autoplay?: boolean;
172
+ preload?: string;
173
+ poster?: string;
174
+ className?: string;
175
+ wrapperClassName?: string;
176
+ wrapperStyle?: CSSProperties;
177
+ allowNativeHls?: boolean;
178
+ lowLatencyMode?: boolean;
179
+ driftToleranceMs?: number;
180
+ immediateManifestAds?: boolean;
181
+ debugAdTiming?: boolean;
182
+ showCustomControls?: boolean;
183
+ licenseKey?: string;
184
+ adFailsafeTimeoutMs?: number;
185
+ onReady?: (player: StormcloudVideoPlayer) => void;
186
+ onStart?: () => void;
187
+ onPlay?: () => void;
188
+ onPause?: (e?: any) => void;
189
+ onBuffer?: () => void;
190
+ onBufferEnd?: () => void;
191
+ onEnded?: () => void;
192
+ onError?: (error: any, data?: any, hlsInstance?: any, hlsGlobal?: any) => void;
193
+ onDuration?: (duration: number) => void;
194
+ onSeek?: (seconds: number) => void;
195
+ onProgress?: (state: OnProgressProps) => void;
196
+ onVolumeToggle?: () => void;
197
+ onFullscreenToggle?: () => void;
198
+ onControlClick?: () => void;
199
+ [otherProps: string]: any;
200
+ }
201
+
202
+ interface PlayerProps extends BaseStormcloudPlayerProps {
203
+ activePlayer: any;
204
+ onReady: () => void;
205
+ }
206
+
207
+ interface PlayerConfig {
208
+ key: string;
209
+ name: string;
210
+ canPlay: (url: string) => boolean;
211
+ canEnablePIP?: (url: string) => boolean;
212
+ lazyPlayer?: any;
213
+ }
214
+ declare const players: PlayerConfig[];
215
+
216
+ interface StormcloudPlayerProps extends BaseStormcloudPlayerProps {
217
+ fallback?: React.ReactElement;
218
+ wrapper?: React.ComponentType<{
219
+ children: React.ReactNode;
220
+ }> | string;
221
+ }
222
+ interface StormcloudPlayerState {
223
+ showPreview: boolean;
224
+ }
225
+ declare const createStormcloudPlayer: (playerList: PlayerConfig[], fallback?: PlayerConfig) => {
226
+ new (props: StormcloudPlayerProps): {
227
+ state: StormcloudPlayerState;
228
+ wrapper?: HTMLElement;
229
+ player?: any;
230
+ references: {
231
+ wrapper: (wrapper: HTMLElement) => void;
232
+ player: (player: any) => void;
233
+ };
234
+ getActivePlayer: (src?: string) => PlayerConfig | null;
235
+ getAttributes: (src?: string) => Omit<Readonly<StormcloudPlayerProps>, keyof StormcloudPlayerProps>;
236
+ handleReady: () => void;
237
+ seekTo: (fraction: number, type?: "seconds" | "fraction", keepPlaying?: boolean) => null | undefined;
238
+ getCurrentTime: () => number | null;
239
+ getSecondsLoaded: () => number | null;
240
+ getDuration: () => number | null;
241
+ getInternalPlayer: (key?: string) => any;
242
+ renderActivePlayer: (src?: string) => React.CElement<PlayerProps, any> | null;
243
+ render(): React.DetailedReactHTMLElement<{
244
+ ref: ((wrapper: HTMLElement) => void) | undefined;
245
+ style: {
246
+ width: string | number | undefined;
247
+ height: string | number | undefined;
248
+ accentColor?: csstype.Property.AccentColor | undefined;
249
+ alignContent?: csstype.Property.AlignContent | undefined;
250
+ alignItems?: csstype.Property.AlignItems | undefined;
251
+ alignSelf?: csstype.Property.AlignSelf | undefined;
252
+ alignTracks?: csstype.Property.AlignTracks | undefined;
253
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
254
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
255
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
256
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
257
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
258
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
259
+ animationName?: csstype.Property.AnimationName | undefined;
260
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
261
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
262
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
263
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
264
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
265
+ appearance?: csstype.Property.Appearance | undefined;
266
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
267
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
268
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
269
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
270
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
271
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
272
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
273
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
274
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
275
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
276
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
277
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
278
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
279
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
280
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
281
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
282
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
283
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
284
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
285
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
286
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
287
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
288
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
289
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
290
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
291
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
292
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
293
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
294
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
295
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
296
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
297
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
298
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
299
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
300
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
301
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
302
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
303
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
304
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
305
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
306
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
307
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
308
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
309
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
310
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
311
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
312
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
313
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
314
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
315
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
316
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
317
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
318
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
319
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
320
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
321
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
322
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
323
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
324
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
325
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
326
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
327
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
328
+ boxShadow?: csstype.Property.BoxShadow | undefined;
329
+ boxSizing?: csstype.Property.BoxSizing | undefined;
330
+ breakAfter?: csstype.Property.BreakAfter | undefined;
331
+ breakBefore?: csstype.Property.BreakBefore | undefined;
332
+ breakInside?: csstype.Property.BreakInside | undefined;
333
+ captionSide?: csstype.Property.CaptionSide | undefined;
334
+ caretColor?: csstype.Property.CaretColor | undefined;
335
+ caretShape?: csstype.Property.CaretShape | undefined;
336
+ clear?: csstype.Property.Clear | undefined;
337
+ clipPath?: csstype.Property.ClipPath | undefined;
338
+ color?: csstype.Property.Color | undefined;
339
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
340
+ colorScheme?: csstype.Property.ColorScheme | undefined;
341
+ columnCount?: csstype.Property.ColumnCount | undefined;
342
+ columnFill?: csstype.Property.ColumnFill | undefined;
343
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
344
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
345
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
346
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
347
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
348
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
349
+ contain?: csstype.Property.Contain | undefined;
350
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
351
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
352
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
353
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
354
+ containerName?: csstype.Property.ContainerName | undefined;
355
+ containerType?: csstype.Property.ContainerType | undefined;
356
+ content?: csstype.Property.Content | undefined;
357
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
358
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
359
+ counterReset?: csstype.Property.CounterReset | undefined;
360
+ counterSet?: csstype.Property.CounterSet | undefined;
361
+ cursor?: csstype.Property.Cursor | undefined;
362
+ direction?: csstype.Property.Direction | undefined;
363
+ display?: csstype.Property.Display | undefined;
364
+ emptyCells?: csstype.Property.EmptyCells | undefined;
365
+ filter?: csstype.Property.Filter | undefined;
366
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
367
+ flexDirection?: csstype.Property.FlexDirection | undefined;
368
+ flexGrow?: csstype.Property.FlexGrow | undefined;
369
+ flexShrink?: csstype.Property.FlexShrink | undefined;
370
+ flexWrap?: csstype.Property.FlexWrap | undefined;
371
+ float?: csstype.Property.Float | undefined;
372
+ fontFamily?: csstype.Property.FontFamily | undefined;
373
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
374
+ fontKerning?: csstype.Property.FontKerning | undefined;
375
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
376
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
377
+ fontPalette?: csstype.Property.FontPalette | undefined;
378
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
379
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
380
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
381
+ fontStretch?: csstype.Property.FontStretch | undefined;
382
+ fontStyle?: csstype.Property.FontStyle | undefined;
383
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
384
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
385
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
386
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
387
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
388
+ fontVariant?: csstype.Property.FontVariant | undefined;
389
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
390
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
391
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
392
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
393
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
394
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
395
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
396
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
397
+ fontWeight?: csstype.Property.FontWeight | undefined;
398
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
399
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
400
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
401
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
402
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
403
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
404
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
405
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
406
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
407
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
408
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
409
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
410
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
411
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
412
+ hyphens?: csstype.Property.Hyphens | undefined;
413
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
414
+ imageRendering?: csstype.Property.ImageRendering | undefined;
415
+ imageResolution?: csstype.Property.ImageResolution | undefined;
416
+ initialLetter?: csstype.Property.InitialLetter | undefined;
417
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
418
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
419
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
420
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
421
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
422
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
423
+ isolation?: csstype.Property.Isolation | undefined;
424
+ justifyContent?: csstype.Property.JustifyContent | undefined;
425
+ justifyItems?: csstype.Property.JustifyItems | undefined;
426
+ justifySelf?: csstype.Property.JustifySelf | undefined;
427
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
428
+ left?: csstype.Property.Left<string | number> | undefined;
429
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
430
+ lineBreak?: csstype.Property.LineBreak | undefined;
431
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
432
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
433
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
434
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
435
+ listStyleType?: csstype.Property.ListStyleType | undefined;
436
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
437
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
438
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
439
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
440
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
441
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
442
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
443
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
444
+ marginTrim?: csstype.Property.MarginTrim | undefined;
445
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
446
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
447
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
448
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
449
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
450
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
451
+ maskClip?: csstype.Property.MaskClip | undefined;
452
+ maskComposite?: csstype.Property.MaskComposite | undefined;
453
+ maskImage?: csstype.Property.MaskImage | undefined;
454
+ maskMode?: csstype.Property.MaskMode | undefined;
455
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
456
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
457
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
458
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
459
+ maskType?: csstype.Property.MaskType | undefined;
460
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
461
+ mathDepth?: csstype.Property.MathDepth | undefined;
462
+ mathShift?: csstype.Property.MathShift | undefined;
463
+ mathStyle?: csstype.Property.MathStyle | undefined;
464
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
465
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
466
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
467
+ maxLines?: csstype.Property.MaxLines | undefined;
468
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
469
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
470
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
471
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
472
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
473
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
474
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
475
+ motionPath?: csstype.Property.OffsetPath | undefined;
476
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
477
+ objectFit?: csstype.Property.ObjectFit | undefined;
478
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
479
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
480
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
481
+ offsetPath?: csstype.Property.OffsetPath | undefined;
482
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
483
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
484
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
485
+ opacity?: csstype.Property.Opacity | undefined;
486
+ order?: csstype.Property.Order | undefined;
487
+ orphans?: csstype.Property.Orphans | undefined;
488
+ outlineColor?: csstype.Property.OutlineColor | undefined;
489
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
490
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
491
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
492
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
493
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
494
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
495
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
496
+ overflowInline?: csstype.Property.OverflowInline | undefined;
497
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
498
+ overflowX?: csstype.Property.OverflowX | undefined;
499
+ overflowY?: csstype.Property.OverflowY | undefined;
500
+ overlay?: csstype.Property.Overlay | undefined;
501
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
502
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
503
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
504
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
505
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
506
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
507
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
508
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
509
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
510
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
511
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
512
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
513
+ page?: csstype.Property.Page | undefined;
514
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
515
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
516
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
517
+ paintOrder?: csstype.Property.PaintOrder | undefined;
518
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
519
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
520
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
521
+ position?: csstype.Property.Position | undefined;
522
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
523
+ quotes?: csstype.Property.Quotes | undefined;
524
+ resize?: csstype.Property.Resize | undefined;
525
+ right?: csstype.Property.Right<string | number> | undefined;
526
+ rotate?: csstype.Property.Rotate | undefined;
527
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
528
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
529
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
530
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
531
+ scale?: csstype.Property.Scale | undefined;
532
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
533
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
534
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
535
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
536
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
537
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
538
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
539
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
540
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
541
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
542
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
543
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
544
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
545
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
546
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
547
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
548
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
549
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
550
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
551
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
552
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
553
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
554
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
555
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
556
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
557
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
558
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
559
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
560
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
561
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
562
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
563
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
564
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
565
+ tableLayout?: csstype.Property.TableLayout | undefined;
566
+ textAlign?: csstype.Property.TextAlign | undefined;
567
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
568
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
569
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
570
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
571
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
572
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
573
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
574
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
575
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
576
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
577
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
578
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
579
+ textJustify?: csstype.Property.TextJustify | undefined;
580
+ textOrientation?: csstype.Property.TextOrientation | undefined;
581
+ textOverflow?: csstype.Property.TextOverflow | undefined;
582
+ textRendering?: csstype.Property.TextRendering | undefined;
583
+ textShadow?: csstype.Property.TextShadow | undefined;
584
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
585
+ textTransform?: csstype.Property.TextTransform | undefined;
586
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
587
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
588
+ textWrap?: csstype.Property.TextWrap | undefined;
589
+ timelineScope?: csstype.Property.TimelineScope | undefined;
590
+ top?: csstype.Property.Top<string | number> | undefined;
591
+ touchAction?: csstype.Property.TouchAction | undefined;
592
+ transform?: csstype.Property.Transform | undefined;
593
+ transformBox?: csstype.Property.TransformBox | undefined;
594
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
595
+ transformStyle?: csstype.Property.TransformStyle | undefined;
596
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
597
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
598
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
599
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
600
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
601
+ translate?: csstype.Property.Translate<string | number> | undefined;
602
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
603
+ userSelect?: csstype.Property.UserSelect | undefined;
604
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
605
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
606
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
607
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
608
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
609
+ visibility?: csstype.Property.Visibility | undefined;
610
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
611
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
612
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
613
+ widows?: csstype.Property.Widows | undefined;
614
+ willChange?: csstype.Property.WillChange | undefined;
615
+ wordBreak?: csstype.Property.WordBreak | undefined;
616
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
617
+ wordWrap?: csstype.Property.WordWrap | undefined;
618
+ writingMode?: csstype.Property.WritingMode | undefined;
619
+ zIndex?: csstype.Property.ZIndex | undefined;
620
+ zoom?: csstype.Property.Zoom | undefined;
621
+ all?: csstype.Property.All | undefined;
622
+ animation?: csstype.Property.Animation<string & {}> | undefined;
623
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
624
+ background?: csstype.Property.Background<string | number> | undefined;
625
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
626
+ border?: csstype.Property.Border<string | number> | undefined;
627
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
628
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
629
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
630
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
631
+ borderColor?: csstype.Property.BorderColor | undefined;
632
+ borderImage?: csstype.Property.BorderImage | undefined;
633
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
634
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
635
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
636
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
637
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
638
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
639
+ borderStyle?: csstype.Property.BorderStyle | undefined;
640
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
641
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
642
+ caret?: csstype.Property.Caret | undefined;
643
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
644
+ columns?: csstype.Property.Columns<string | number> | undefined;
645
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
646
+ container?: csstype.Property.Container | undefined;
647
+ flex?: csstype.Property.Flex<string | number> | undefined;
648
+ flexFlow?: csstype.Property.FlexFlow | undefined;
649
+ font?: csstype.Property.Font | undefined;
650
+ gap?: csstype.Property.Gap<string | number> | undefined;
651
+ grid?: csstype.Property.Grid | undefined;
652
+ gridArea?: csstype.Property.GridArea | undefined;
653
+ gridColumn?: csstype.Property.GridColumn | undefined;
654
+ gridRow?: csstype.Property.GridRow | undefined;
655
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
656
+ inset?: csstype.Property.Inset<string | number> | undefined;
657
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
658
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
659
+ lineClamp?: csstype.Property.LineClamp | undefined;
660
+ listStyle?: csstype.Property.ListStyle | undefined;
661
+ margin?: csstype.Property.Margin<string | number> | undefined;
662
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
663
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
664
+ mask?: csstype.Property.Mask<string | number> | undefined;
665
+ maskBorder?: csstype.Property.MaskBorder | undefined;
666
+ motion?: csstype.Property.Offset<string | number> | undefined;
667
+ offset?: csstype.Property.Offset<string | number> | undefined;
668
+ outline?: csstype.Property.Outline<string | number> | undefined;
669
+ overflow?: csstype.Property.Overflow | undefined;
670
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
671
+ padding?: csstype.Property.Padding<string | number> | undefined;
672
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
673
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
674
+ placeContent?: csstype.Property.PlaceContent | undefined;
675
+ placeItems?: csstype.Property.PlaceItems | undefined;
676
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
677
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
678
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
679
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
680
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
681
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
682
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
683
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
684
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
685
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
686
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
687
+ transition?: csstype.Property.Transition<string & {}> | undefined;
688
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
689
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
690
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
691
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
692
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
693
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
694
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
695
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
696
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
697
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
698
+ MozBinding?: csstype.Property.MozBinding | undefined;
699
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
700
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
701
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
702
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
703
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
704
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
705
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
706
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
707
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
708
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
709
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
710
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
711
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
712
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
713
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
714
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
715
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
716
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
717
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
718
+ MozHyphens?: csstype.Property.Hyphens | undefined;
719
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
720
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
721
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
722
+ MozOrient?: csstype.Property.MozOrient | undefined;
723
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
724
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
725
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
726
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
727
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
728
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
729
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
730
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
731
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
732
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
733
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
734
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
735
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
736
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
737
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
738
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
739
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
740
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
741
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
742
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
743
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
744
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
745
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
746
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
747
+ msFilter?: csstype.Property.MsFilter | undefined;
748
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
749
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
750
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
751
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
752
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
753
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
754
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
755
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
756
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
757
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
758
+ msHyphens?: csstype.Property.Hyphens | undefined;
759
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
760
+ msLineBreak?: csstype.Property.LineBreak | undefined;
761
+ msOrder?: csstype.Property.Order | undefined;
762
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
763
+ msOverflowX?: csstype.Property.OverflowX | undefined;
764
+ msOverflowY?: csstype.Property.OverflowY | undefined;
765
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
766
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
767
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
768
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
769
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
770
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
771
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
772
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
773
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
774
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
775
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
776
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
777
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
778
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
779
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
780
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
781
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
782
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
783
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
784
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
785
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
786
+ msTouchAction?: csstype.Property.TouchAction | undefined;
787
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
788
+ msTransform?: csstype.Property.Transform | undefined;
789
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
790
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
791
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
792
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
793
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
794
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
795
+ msWordBreak?: csstype.Property.WordBreak | undefined;
796
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
797
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
798
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
799
+ msWritingMode?: csstype.Property.WritingMode | undefined;
800
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
801
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
802
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
803
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
804
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
805
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
806
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
807
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
808
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
809
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
810
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
811
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
812
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
813
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
814
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
815
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
816
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
817
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
818
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
819
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
820
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
821
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
822
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
823
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
824
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
825
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
826
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
827
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
828
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
829
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
830
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
831
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
832
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
833
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
834
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
835
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
836
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
837
+ WebkitFilter?: csstype.Property.Filter | undefined;
838
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
839
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
840
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
841
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
842
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
843
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
844
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
845
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
846
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
847
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
848
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
849
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
850
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
851
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
852
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
853
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
854
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
855
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
856
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
857
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
858
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
859
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
860
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
861
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
862
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
863
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
864
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
865
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
866
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
867
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
868
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
869
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
870
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
871
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
872
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
873
+ WebkitOrder?: csstype.Property.Order | undefined;
874
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
875
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
876
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
877
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
878
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
879
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
880
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
881
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
882
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
883
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
884
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
885
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
886
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
887
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
888
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
889
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
890
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
891
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
892
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
893
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
894
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
895
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
896
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
897
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
898
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
899
+ WebkitTransform?: csstype.Property.Transform | undefined;
900
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
901
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
902
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
903
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
904
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
905
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
906
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
907
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
908
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
909
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
910
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
911
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
912
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
913
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
914
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
915
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
916
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
917
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
918
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
919
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
920
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
921
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
922
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
923
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
924
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
925
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
926
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
927
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
928
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
929
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
930
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
931
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
932
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
933
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
934
+ azimuth?: csstype.Property.Azimuth | undefined;
935
+ boxAlign?: csstype.Property.BoxAlign | undefined;
936
+ boxDirection?: csstype.Property.BoxDirection | undefined;
937
+ boxFlex?: csstype.Property.BoxFlex | undefined;
938
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
939
+ boxLines?: csstype.Property.BoxLines | undefined;
940
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
941
+ boxOrient?: csstype.Property.BoxOrient | undefined;
942
+ boxPack?: csstype.Property.BoxPack | undefined;
943
+ clip?: csstype.Property.Clip | undefined;
944
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
945
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
946
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
947
+ imeMode?: csstype.Property.ImeMode | undefined;
948
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
949
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
950
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
951
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
952
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
953
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
954
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
955
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
956
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
957
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
958
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
959
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
960
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
961
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
962
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
963
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
964
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
965
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
966
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
967
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
968
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
969
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
970
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
971
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
972
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
973
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
974
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
975
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
976
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
977
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
978
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
979
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
980
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
981
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
982
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
983
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
984
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
985
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
986
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
987
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
988
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
989
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
990
+ MozOpacity?: csstype.Property.Opacity | undefined;
991
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
992
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
993
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
994
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
995
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
996
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
997
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
998
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
999
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1000
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1001
+ MozTransform?: csstype.Property.Transform | undefined;
1002
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1003
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
1004
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
1005
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1006
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1007
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1008
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1009
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
1010
+ msImeMode?: csstype.Property.ImeMode | undefined;
1011
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
1012
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1013
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1014
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1015
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1016
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1017
+ OAnimationName?: csstype.Property.AnimationName | undefined;
1018
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1019
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1020
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1021
+ OBorderImage?: csstype.Property.BorderImage | undefined;
1022
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
1023
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
1024
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
1025
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
1026
+ OTransform?: csstype.Property.Transform | undefined;
1027
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1028
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
1029
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1030
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1031
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1032
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1033
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
1034
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
1035
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
1036
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1037
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
1038
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1039
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
1040
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
1041
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
1042
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
1043
+ clipRule?: csstype.Property.ClipRule | undefined;
1044
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
1045
+ colorRendering?: csstype.Property.ColorRendering | undefined;
1046
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
1047
+ fill?: csstype.Property.Fill | undefined;
1048
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
1049
+ fillRule?: csstype.Property.FillRule | undefined;
1050
+ floodColor?: csstype.Property.FloodColor | undefined;
1051
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
1052
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
1053
+ lightingColor?: csstype.Property.LightingColor | undefined;
1054
+ marker?: csstype.Property.Marker | undefined;
1055
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
1056
+ markerMid?: csstype.Property.MarkerMid | undefined;
1057
+ markerStart?: csstype.Property.MarkerStart | undefined;
1058
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
1059
+ stopColor?: csstype.Property.StopColor | undefined;
1060
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
1061
+ stroke?: csstype.Property.Stroke | undefined;
1062
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
1063
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
1064
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
1065
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
1066
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
1067
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
1068
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
1069
+ textAnchor?: csstype.Property.TextAnchor | undefined;
1070
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
1071
+ };
1072
+ }, HTMLElement>;
1073
+ context: unknown;
1074
+ setState<K extends "showPreview">(state: StormcloudPlayerState | ((prevState: Readonly<StormcloudPlayerState>, props: Readonly<StormcloudPlayerProps>) => StormcloudPlayerState | Pick<StormcloudPlayerState, K> | null) | Pick<StormcloudPlayerState, K> | null, callback?: (() => void) | undefined): void;
1075
+ forceUpdate(callback?: (() => void) | undefined): void;
1076
+ readonly props: Readonly<StormcloudPlayerProps>;
1077
+ refs: {
1078
+ [key: string]: React.ReactInstance;
1079
+ };
1080
+ componentDidMount?(): void;
1081
+ shouldComponentUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): boolean;
1082
+ componentWillUnmount?(): void;
1083
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1084
+ getSnapshotBeforeUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>): any;
1085
+ componentDidUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>, snapshot?: any): void;
1086
+ componentWillMount?(): void;
1087
+ UNSAFE_componentWillMount?(): void;
1088
+ componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
1089
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
1090
+ componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
1091
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
1092
+ };
1093
+ new (props: StormcloudPlayerProps, context: any): {
1094
+ state: StormcloudPlayerState;
1095
+ wrapper?: HTMLElement;
1096
+ player?: any;
1097
+ references: {
1098
+ wrapper: (wrapper: HTMLElement) => void;
1099
+ player: (player: any) => void;
1100
+ };
1101
+ getActivePlayer: (src?: string) => PlayerConfig | null;
1102
+ getAttributes: (src?: string) => Omit<Readonly<StormcloudPlayerProps>, keyof StormcloudPlayerProps>;
1103
+ handleReady: () => void;
1104
+ seekTo: (fraction: number, type?: "seconds" | "fraction", keepPlaying?: boolean) => null | undefined;
1105
+ getCurrentTime: () => number | null;
1106
+ getSecondsLoaded: () => number | null;
1107
+ getDuration: () => number | null;
1108
+ getInternalPlayer: (key?: string) => any;
1109
+ renderActivePlayer: (src?: string) => React.CElement<PlayerProps, any> | null;
1110
+ render(): React.DetailedReactHTMLElement<{
1111
+ ref: ((wrapper: HTMLElement) => void) | undefined;
1112
+ style: {
1113
+ width: string | number | undefined;
1114
+ height: string | number | undefined;
1115
+ accentColor?: csstype.Property.AccentColor | undefined;
1116
+ alignContent?: csstype.Property.AlignContent | undefined;
1117
+ alignItems?: csstype.Property.AlignItems | undefined;
1118
+ alignSelf?: csstype.Property.AlignSelf | undefined;
1119
+ alignTracks?: csstype.Property.AlignTracks | undefined;
1120
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
1121
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1122
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
1123
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1124
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
1125
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1126
+ animationName?: csstype.Property.AnimationName | undefined;
1127
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
1128
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
1129
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
1130
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
1131
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1132
+ appearance?: csstype.Property.Appearance | undefined;
1133
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
1134
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
1135
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1136
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
1137
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
1138
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
1139
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
1140
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
1141
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1142
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
1143
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
1144
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
1145
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1146
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
1147
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
1148
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
1149
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
1150
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
1151
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
1152
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
1153
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
1154
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
1155
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
1156
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
1157
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
1158
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1159
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
1160
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
1161
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
1162
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
1163
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
1164
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
1165
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
1166
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
1167
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
1168
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
1169
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
1170
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
1171
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
1172
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
1173
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
1174
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
1175
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
1176
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
1177
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
1178
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
1179
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
1180
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
1181
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
1182
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
1183
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
1184
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
1185
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
1186
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
1187
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
1188
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
1189
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
1190
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
1191
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
1192
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
1193
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
1194
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
1195
+ boxShadow?: csstype.Property.BoxShadow | undefined;
1196
+ boxSizing?: csstype.Property.BoxSizing | undefined;
1197
+ breakAfter?: csstype.Property.BreakAfter | undefined;
1198
+ breakBefore?: csstype.Property.BreakBefore | undefined;
1199
+ breakInside?: csstype.Property.BreakInside | undefined;
1200
+ captionSide?: csstype.Property.CaptionSide | undefined;
1201
+ caretColor?: csstype.Property.CaretColor | undefined;
1202
+ caretShape?: csstype.Property.CaretShape | undefined;
1203
+ clear?: csstype.Property.Clear | undefined;
1204
+ clipPath?: csstype.Property.ClipPath | undefined;
1205
+ color?: csstype.Property.Color | undefined;
1206
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1207
+ colorScheme?: csstype.Property.ColorScheme | undefined;
1208
+ columnCount?: csstype.Property.ColumnCount | undefined;
1209
+ columnFill?: csstype.Property.ColumnFill | undefined;
1210
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
1211
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1212
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1213
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
1214
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
1215
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
1216
+ contain?: csstype.Property.Contain | undefined;
1217
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
1218
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
1219
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
1220
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
1221
+ containerName?: csstype.Property.ContainerName | undefined;
1222
+ containerType?: csstype.Property.ContainerType | undefined;
1223
+ content?: csstype.Property.Content | undefined;
1224
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
1225
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
1226
+ counterReset?: csstype.Property.CounterReset | undefined;
1227
+ counterSet?: csstype.Property.CounterSet | undefined;
1228
+ cursor?: csstype.Property.Cursor | undefined;
1229
+ direction?: csstype.Property.Direction | undefined;
1230
+ display?: csstype.Property.Display | undefined;
1231
+ emptyCells?: csstype.Property.EmptyCells | undefined;
1232
+ filter?: csstype.Property.Filter | undefined;
1233
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
1234
+ flexDirection?: csstype.Property.FlexDirection | undefined;
1235
+ flexGrow?: csstype.Property.FlexGrow | undefined;
1236
+ flexShrink?: csstype.Property.FlexShrink | undefined;
1237
+ flexWrap?: csstype.Property.FlexWrap | undefined;
1238
+ float?: csstype.Property.Float | undefined;
1239
+ fontFamily?: csstype.Property.FontFamily | undefined;
1240
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1241
+ fontKerning?: csstype.Property.FontKerning | undefined;
1242
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
1243
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
1244
+ fontPalette?: csstype.Property.FontPalette | undefined;
1245
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
1246
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
1247
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
1248
+ fontStretch?: csstype.Property.FontStretch | undefined;
1249
+ fontStyle?: csstype.Property.FontStyle | undefined;
1250
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
1251
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
1252
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
1253
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
1254
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
1255
+ fontVariant?: csstype.Property.FontVariant | undefined;
1256
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
1257
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
1258
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
1259
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
1260
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
1261
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
1262
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
1263
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
1264
+ fontWeight?: csstype.Property.FontWeight | undefined;
1265
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
1266
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
1267
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
1268
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
1269
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
1270
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
1271
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
1272
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
1273
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
1274
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
1275
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
1276
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
1277
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
1278
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
1279
+ hyphens?: csstype.Property.Hyphens | undefined;
1280
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
1281
+ imageRendering?: csstype.Property.ImageRendering | undefined;
1282
+ imageResolution?: csstype.Property.ImageResolution | undefined;
1283
+ initialLetter?: csstype.Property.InitialLetter | undefined;
1284
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
1285
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
1286
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
1287
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
1288
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
1289
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
1290
+ isolation?: csstype.Property.Isolation | undefined;
1291
+ justifyContent?: csstype.Property.JustifyContent | undefined;
1292
+ justifyItems?: csstype.Property.JustifyItems | undefined;
1293
+ justifySelf?: csstype.Property.JustifySelf | undefined;
1294
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
1295
+ left?: csstype.Property.Left<string | number> | undefined;
1296
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
1297
+ lineBreak?: csstype.Property.LineBreak | undefined;
1298
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
1299
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
1300
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
1301
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
1302
+ listStyleType?: csstype.Property.ListStyleType | undefined;
1303
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
1304
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
1305
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
1306
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1307
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1308
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
1309
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
1310
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
1311
+ marginTrim?: csstype.Property.MarginTrim | undefined;
1312
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
1313
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
1314
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
1315
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
1316
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
1317
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
1318
+ maskClip?: csstype.Property.MaskClip | undefined;
1319
+ maskComposite?: csstype.Property.MaskComposite | undefined;
1320
+ maskImage?: csstype.Property.MaskImage | undefined;
1321
+ maskMode?: csstype.Property.MaskMode | undefined;
1322
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
1323
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
1324
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
1325
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
1326
+ maskType?: csstype.Property.MaskType | undefined;
1327
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
1328
+ mathDepth?: csstype.Property.MathDepth | undefined;
1329
+ mathShift?: csstype.Property.MathShift | undefined;
1330
+ mathStyle?: csstype.Property.MathStyle | undefined;
1331
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
1332
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
1333
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
1334
+ maxLines?: csstype.Property.MaxLines | undefined;
1335
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
1336
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
1337
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
1338
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
1339
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
1340
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
1341
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
1342
+ motionPath?: csstype.Property.OffsetPath | undefined;
1343
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
1344
+ objectFit?: csstype.Property.ObjectFit | undefined;
1345
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
1346
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
1347
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
1348
+ offsetPath?: csstype.Property.OffsetPath | undefined;
1349
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
1350
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
1351
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
1352
+ opacity?: csstype.Property.Opacity | undefined;
1353
+ order?: csstype.Property.Order | undefined;
1354
+ orphans?: csstype.Property.Orphans | undefined;
1355
+ outlineColor?: csstype.Property.OutlineColor | undefined;
1356
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
1357
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
1358
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
1359
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
1360
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
1361
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
1362
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
1363
+ overflowInline?: csstype.Property.OverflowInline | undefined;
1364
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
1365
+ overflowX?: csstype.Property.OverflowX | undefined;
1366
+ overflowY?: csstype.Property.OverflowY | undefined;
1367
+ overlay?: csstype.Property.Overlay | undefined;
1368
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
1369
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
1370
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
1371
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
1372
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
1373
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
1374
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
1375
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1376
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1377
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
1378
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
1379
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
1380
+ page?: csstype.Property.Page | undefined;
1381
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
1382
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
1383
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
1384
+ paintOrder?: csstype.Property.PaintOrder | undefined;
1385
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
1386
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1387
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
1388
+ position?: csstype.Property.Position | undefined;
1389
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1390
+ quotes?: csstype.Property.Quotes | undefined;
1391
+ resize?: csstype.Property.Resize | undefined;
1392
+ right?: csstype.Property.Right<string | number> | undefined;
1393
+ rotate?: csstype.Property.Rotate | undefined;
1394
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
1395
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
1396
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
1397
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
1398
+ scale?: csstype.Property.Scale | undefined;
1399
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
1400
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
1401
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
1402
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
1403
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
1404
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
1405
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
1406
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
1407
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
1408
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
1409
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
1410
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
1411
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
1412
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
1413
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
1414
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
1415
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
1416
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
1417
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
1418
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
1419
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
1420
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
1421
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
1422
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
1423
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
1424
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
1425
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
1426
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
1427
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
1428
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
1429
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
1430
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
1431
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
1432
+ tableLayout?: csstype.Property.TableLayout | undefined;
1433
+ textAlign?: csstype.Property.TextAlign | undefined;
1434
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
1435
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
1436
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1437
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1438
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
1439
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
1440
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1441
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
1442
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
1443
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
1444
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
1445
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
1446
+ textJustify?: csstype.Property.TextJustify | undefined;
1447
+ textOrientation?: csstype.Property.TextOrientation | undefined;
1448
+ textOverflow?: csstype.Property.TextOverflow | undefined;
1449
+ textRendering?: csstype.Property.TextRendering | undefined;
1450
+ textShadow?: csstype.Property.TextShadow | undefined;
1451
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1452
+ textTransform?: csstype.Property.TextTransform | undefined;
1453
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
1454
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
1455
+ textWrap?: csstype.Property.TextWrap | undefined;
1456
+ timelineScope?: csstype.Property.TimelineScope | undefined;
1457
+ top?: csstype.Property.Top<string | number> | undefined;
1458
+ touchAction?: csstype.Property.TouchAction | undefined;
1459
+ transform?: csstype.Property.Transform | undefined;
1460
+ transformBox?: csstype.Property.TransformBox | undefined;
1461
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1462
+ transformStyle?: csstype.Property.TransformStyle | undefined;
1463
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
1464
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1465
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1466
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
1467
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1468
+ translate?: csstype.Property.Translate<string | number> | undefined;
1469
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
1470
+ userSelect?: csstype.Property.UserSelect | undefined;
1471
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
1472
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
1473
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
1474
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
1475
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
1476
+ visibility?: csstype.Property.Visibility | undefined;
1477
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
1478
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
1479
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
1480
+ widows?: csstype.Property.Widows | undefined;
1481
+ willChange?: csstype.Property.WillChange | undefined;
1482
+ wordBreak?: csstype.Property.WordBreak | undefined;
1483
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
1484
+ wordWrap?: csstype.Property.WordWrap | undefined;
1485
+ writingMode?: csstype.Property.WritingMode | undefined;
1486
+ zIndex?: csstype.Property.ZIndex | undefined;
1487
+ zoom?: csstype.Property.Zoom | undefined;
1488
+ all?: csstype.Property.All | undefined;
1489
+ animation?: csstype.Property.Animation<string & {}> | undefined;
1490
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
1491
+ background?: csstype.Property.Background<string | number> | undefined;
1492
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
1493
+ border?: csstype.Property.Border<string | number> | undefined;
1494
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
1495
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
1496
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
1497
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
1498
+ borderColor?: csstype.Property.BorderColor | undefined;
1499
+ borderImage?: csstype.Property.BorderImage | undefined;
1500
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
1501
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
1502
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
1503
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
1504
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1505
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
1506
+ borderStyle?: csstype.Property.BorderStyle | undefined;
1507
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
1508
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
1509
+ caret?: csstype.Property.Caret | undefined;
1510
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1511
+ columns?: csstype.Property.Columns<string | number> | undefined;
1512
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
1513
+ container?: csstype.Property.Container | undefined;
1514
+ flex?: csstype.Property.Flex<string | number> | undefined;
1515
+ flexFlow?: csstype.Property.FlexFlow | undefined;
1516
+ font?: csstype.Property.Font | undefined;
1517
+ gap?: csstype.Property.Gap<string | number> | undefined;
1518
+ grid?: csstype.Property.Grid | undefined;
1519
+ gridArea?: csstype.Property.GridArea | undefined;
1520
+ gridColumn?: csstype.Property.GridColumn | undefined;
1521
+ gridRow?: csstype.Property.GridRow | undefined;
1522
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
1523
+ inset?: csstype.Property.Inset<string | number> | undefined;
1524
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
1525
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
1526
+ lineClamp?: csstype.Property.LineClamp | undefined;
1527
+ listStyle?: csstype.Property.ListStyle | undefined;
1528
+ margin?: csstype.Property.Margin<string | number> | undefined;
1529
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
1530
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
1531
+ mask?: csstype.Property.Mask<string | number> | undefined;
1532
+ maskBorder?: csstype.Property.MaskBorder | undefined;
1533
+ motion?: csstype.Property.Offset<string | number> | undefined;
1534
+ offset?: csstype.Property.Offset<string | number> | undefined;
1535
+ outline?: csstype.Property.Outline<string | number> | undefined;
1536
+ overflow?: csstype.Property.Overflow | undefined;
1537
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
1538
+ padding?: csstype.Property.Padding<string | number> | undefined;
1539
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
1540
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
1541
+ placeContent?: csstype.Property.PlaceContent | undefined;
1542
+ placeItems?: csstype.Property.PlaceItems | undefined;
1543
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
1544
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
1545
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
1546
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
1547
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
1548
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
1549
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
1550
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
1551
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
1552
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
1553
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
1554
+ transition?: csstype.Property.Transition<string & {}> | undefined;
1555
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
1556
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1557
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1558
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1559
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1560
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1561
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
1562
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1563
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1564
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
1565
+ MozBinding?: csstype.Property.MozBinding | undefined;
1566
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
1567
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
1568
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
1569
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
1570
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
1571
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
1572
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
1573
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
1574
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
1575
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
1576
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
1577
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
1578
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1579
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1580
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
1581
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
1582
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
1583
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1584
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
1585
+ MozHyphens?: csstype.Property.Hyphens | undefined;
1586
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
1587
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1588
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1589
+ MozOrient?: csstype.Property.MozOrient | undefined;
1590
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
1591
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1592
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
1593
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
1594
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
1595
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1596
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1597
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
1598
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
1599
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
1600
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1601
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
1602
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
1603
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
1604
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
1605
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
1606
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
1607
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
1608
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
1609
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
1610
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
1611
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
1612
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
1613
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
1614
+ msFilter?: csstype.Property.MsFilter | undefined;
1615
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
1616
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
1617
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
1618
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
1619
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
1620
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
1621
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
1622
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
1623
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
1624
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
1625
+ msHyphens?: csstype.Property.Hyphens | undefined;
1626
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
1627
+ msLineBreak?: csstype.Property.LineBreak | undefined;
1628
+ msOrder?: csstype.Property.Order | undefined;
1629
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
1630
+ msOverflowX?: csstype.Property.OverflowX | undefined;
1631
+ msOverflowY?: csstype.Property.OverflowY | undefined;
1632
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
1633
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
1634
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
1635
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
1636
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
1637
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
1638
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
1639
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
1640
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
1641
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
1642
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
1643
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
1644
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
1645
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
1646
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
1647
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
1648
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
1649
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
1650
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
1651
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
1652
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
1653
+ msTouchAction?: csstype.Property.TouchAction | undefined;
1654
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
1655
+ msTransform?: csstype.Property.Transform | undefined;
1656
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1657
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1658
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1659
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1660
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1661
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
1662
+ msWordBreak?: csstype.Property.WordBreak | undefined;
1663
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
1664
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
1665
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
1666
+ msWritingMode?: csstype.Property.WritingMode | undefined;
1667
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
1668
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
1669
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
1670
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1671
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1672
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1673
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1674
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1675
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
1676
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1677
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1678
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
1679
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
1680
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1681
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
1682
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1683
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1684
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
1685
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
1686
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
1687
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1688
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
1689
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
1690
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
1691
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
1692
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
1693
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
1694
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
1695
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
1696
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
1697
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
1698
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
1699
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
1700
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
1701
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
1702
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
1703
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
1704
+ WebkitFilter?: csstype.Property.Filter | undefined;
1705
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
1706
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
1707
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
1708
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
1709
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
1710
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
1711
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
1712
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
1713
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
1714
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
1715
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
1716
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
1717
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
1718
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
1719
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
1720
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
1721
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
1722
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
1723
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
1724
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
1725
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
1726
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
1727
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
1728
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
1729
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
1730
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
1731
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
1732
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
1733
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
1734
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
1735
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
1736
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
1737
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
1738
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
1739
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
1740
+ WebkitOrder?: csstype.Property.Order | undefined;
1741
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
1742
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
1743
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
1744
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
1745
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1746
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
1747
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
1748
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
1749
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
1750
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
1751
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
1752
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1753
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1754
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
1755
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1756
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
1757
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
1758
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
1759
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
1760
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
1761
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
1762
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
1763
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
1764
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
1765
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
1766
+ WebkitTransform?: csstype.Property.Transform | undefined;
1767
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1768
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
1769
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1770
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1771
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1772
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1773
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
1774
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
1775
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
1776
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
1777
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
1778
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1779
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
1780
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
1781
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
1782
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
1783
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
1784
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
1785
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
1786
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
1787
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
1788
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
1789
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
1790
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
1791
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1792
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
1793
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
1794
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
1795
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
1796
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
1797
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
1798
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
1799
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
1800
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
1801
+ azimuth?: csstype.Property.Azimuth | undefined;
1802
+ boxAlign?: csstype.Property.BoxAlign | undefined;
1803
+ boxDirection?: csstype.Property.BoxDirection | undefined;
1804
+ boxFlex?: csstype.Property.BoxFlex | undefined;
1805
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1806
+ boxLines?: csstype.Property.BoxLines | undefined;
1807
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1808
+ boxOrient?: csstype.Property.BoxOrient | undefined;
1809
+ boxPack?: csstype.Property.BoxPack | undefined;
1810
+ clip?: csstype.Property.Clip | undefined;
1811
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
1812
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
1813
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
1814
+ imeMode?: csstype.Property.ImeMode | undefined;
1815
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
1816
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
1817
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
1818
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
1819
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
1820
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
1821
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
1822
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
1823
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
1824
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
1825
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
1826
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
1827
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
1828
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
1829
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
1830
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1831
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
1832
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1833
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
1834
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
1835
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
1836
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
1837
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
1838
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
1839
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
1840
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
1841
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
1842
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1843
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
1844
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
1845
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
1846
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
1847
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
1848
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
1849
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
1850
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
1851
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1852
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
1853
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
1854
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
1855
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
1856
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
1857
+ MozOpacity?: csstype.Property.Opacity | undefined;
1858
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
1859
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
1860
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
1861
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
1862
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
1863
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
1864
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
1865
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
1866
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
1867
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
1868
+ MozTransform?: csstype.Property.Transform | undefined;
1869
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1870
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
1871
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
1872
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1873
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1874
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1875
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1876
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
1877
+ msImeMode?: csstype.Property.ImeMode | undefined;
1878
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
1879
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
1880
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
1881
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
1882
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
1883
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
1884
+ OAnimationName?: csstype.Property.AnimationName | undefined;
1885
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
1886
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
1887
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
1888
+ OBorderImage?: csstype.Property.BorderImage | undefined;
1889
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
1890
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
1891
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
1892
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
1893
+ OTransform?: csstype.Property.Transform | undefined;
1894
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
1895
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
1896
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
1897
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
1898
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
1899
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
1900
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
1901
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
1902
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
1903
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
1904
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
1905
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
1906
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
1907
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
1908
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
1909
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
1910
+ clipRule?: csstype.Property.ClipRule | undefined;
1911
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
1912
+ colorRendering?: csstype.Property.ColorRendering | undefined;
1913
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
1914
+ fill?: csstype.Property.Fill | undefined;
1915
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
1916
+ fillRule?: csstype.Property.FillRule | undefined;
1917
+ floodColor?: csstype.Property.FloodColor | undefined;
1918
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
1919
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
1920
+ lightingColor?: csstype.Property.LightingColor | undefined;
1921
+ marker?: csstype.Property.Marker | undefined;
1922
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
1923
+ markerMid?: csstype.Property.MarkerMid | undefined;
1924
+ markerStart?: csstype.Property.MarkerStart | undefined;
1925
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
1926
+ stopColor?: csstype.Property.StopColor | undefined;
1927
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
1928
+ stroke?: csstype.Property.Stroke | undefined;
1929
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
1930
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
1931
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
1932
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
1933
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
1934
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
1935
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
1936
+ textAnchor?: csstype.Property.TextAnchor | undefined;
1937
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
1938
+ };
1939
+ }, HTMLElement>;
1940
+ context: unknown;
1941
+ setState<K extends "showPreview">(state: StormcloudPlayerState | ((prevState: Readonly<StormcloudPlayerState>, props: Readonly<StormcloudPlayerProps>) => StormcloudPlayerState | Pick<StormcloudPlayerState, K> | null) | Pick<StormcloudPlayerState, K> | null, callback?: (() => void) | undefined): void;
1942
+ forceUpdate(callback?: (() => void) | undefined): void;
1943
+ readonly props: Readonly<StormcloudPlayerProps>;
1944
+ refs: {
1945
+ [key: string]: React.ReactInstance;
1946
+ };
1947
+ componentDidMount?(): void;
1948
+ shouldComponentUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): boolean;
1949
+ componentWillUnmount?(): void;
1950
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1951
+ getSnapshotBeforeUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>): any;
1952
+ componentDidUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>, snapshot?: any): void;
1953
+ componentWillMount?(): void;
1954
+ UNSAFE_componentWillMount?(): void;
1955
+ componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
1956
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
1957
+ componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
1958
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
1959
+ };
1960
+ displayName: string;
1961
+ defaultProps: {
1962
+ fallback: null;
1963
+ wrapper: string;
1964
+ };
1965
+ addCustomPlayer: (player: PlayerConfig) => void;
1966
+ removeCustomPlayers: () => void;
1967
+ canPlay: (src: string) => boolean;
1968
+ canEnablePIP: (src: string) => boolean;
1969
+ contextType?: React.Context<any> | undefined;
1970
+ };
1971
+ declare const StormcloudPlayer: {
1972
+ new (props: StormcloudPlayerProps): {
1973
+ state: StormcloudPlayerState;
1974
+ wrapper?: HTMLElement;
1975
+ player?: any;
1976
+ references: {
1977
+ wrapper: (wrapper: HTMLElement) => void;
1978
+ player: (player: any) => void;
1979
+ };
1980
+ getActivePlayer: (src?: string) => PlayerConfig | null;
1981
+ getAttributes: (src?: string) => Omit<Readonly<StormcloudPlayerProps>, keyof StormcloudPlayerProps>;
1982
+ handleReady: () => void;
1983
+ seekTo: (fraction: number, type?: "seconds" | "fraction", keepPlaying?: boolean) => null | undefined;
1984
+ getCurrentTime: () => number | null;
1985
+ getSecondsLoaded: () => number | null;
1986
+ getDuration: () => number | null;
1987
+ getInternalPlayer: (key?: string) => any;
1988
+ renderActivePlayer: (src?: string) => React.CElement<PlayerProps, any> | null;
1989
+ render(): React.DetailedReactHTMLElement<{
1990
+ ref: ((wrapper: HTMLElement) => void) | undefined;
1991
+ style: {
1992
+ width: string | number | undefined;
1993
+ height: string | number | undefined;
1994
+ accentColor?: csstype.Property.AccentColor | undefined;
1995
+ alignContent?: csstype.Property.AlignContent | undefined;
1996
+ alignItems?: csstype.Property.AlignItems | undefined;
1997
+ alignSelf?: csstype.Property.AlignSelf | undefined;
1998
+ alignTracks?: csstype.Property.AlignTracks | undefined;
1999
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
2000
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2001
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
2002
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2003
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
2004
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2005
+ animationName?: csstype.Property.AnimationName | undefined;
2006
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
2007
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
2008
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
2009
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
2010
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2011
+ appearance?: csstype.Property.Appearance | undefined;
2012
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
2013
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
2014
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2015
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
2016
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
2017
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
2018
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
2019
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
2020
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2021
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
2022
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
2023
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
2024
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2025
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
2026
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
2027
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
2028
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
2029
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
2030
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
2031
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
2032
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
2033
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
2034
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
2035
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
2036
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
2037
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2038
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2039
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
2040
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
2041
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
2042
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
2043
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
2044
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
2045
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
2046
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2047
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
2048
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
2049
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
2050
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2051
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2052
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2053
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2054
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2055
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
2056
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
2057
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
2058
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
2059
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
2060
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
2061
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
2062
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
2063
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
2064
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
2065
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
2066
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
2067
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
2068
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2069
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2070
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
2071
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
2072
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
2073
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
2074
+ boxShadow?: csstype.Property.BoxShadow | undefined;
2075
+ boxSizing?: csstype.Property.BoxSizing | undefined;
2076
+ breakAfter?: csstype.Property.BreakAfter | undefined;
2077
+ breakBefore?: csstype.Property.BreakBefore | undefined;
2078
+ breakInside?: csstype.Property.BreakInside | undefined;
2079
+ captionSide?: csstype.Property.CaptionSide | undefined;
2080
+ caretColor?: csstype.Property.CaretColor | undefined;
2081
+ caretShape?: csstype.Property.CaretShape | undefined;
2082
+ clear?: csstype.Property.Clear | undefined;
2083
+ clipPath?: csstype.Property.ClipPath | undefined;
2084
+ color?: csstype.Property.Color | undefined;
2085
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2086
+ colorScheme?: csstype.Property.ColorScheme | undefined;
2087
+ columnCount?: csstype.Property.ColumnCount | undefined;
2088
+ columnFill?: csstype.Property.ColumnFill | undefined;
2089
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
2090
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2091
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2092
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2093
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
2094
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2095
+ contain?: csstype.Property.Contain | undefined;
2096
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
2097
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
2098
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
2099
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
2100
+ containerName?: csstype.Property.ContainerName | undefined;
2101
+ containerType?: csstype.Property.ContainerType | undefined;
2102
+ content?: csstype.Property.Content | undefined;
2103
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
2104
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
2105
+ counterReset?: csstype.Property.CounterReset | undefined;
2106
+ counterSet?: csstype.Property.CounterSet | undefined;
2107
+ cursor?: csstype.Property.Cursor | undefined;
2108
+ direction?: csstype.Property.Direction | undefined;
2109
+ display?: csstype.Property.Display | undefined;
2110
+ emptyCells?: csstype.Property.EmptyCells | undefined;
2111
+ filter?: csstype.Property.Filter | undefined;
2112
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2113
+ flexDirection?: csstype.Property.FlexDirection | undefined;
2114
+ flexGrow?: csstype.Property.FlexGrow | undefined;
2115
+ flexShrink?: csstype.Property.FlexShrink | undefined;
2116
+ flexWrap?: csstype.Property.FlexWrap | undefined;
2117
+ float?: csstype.Property.Float | undefined;
2118
+ fontFamily?: csstype.Property.FontFamily | undefined;
2119
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2120
+ fontKerning?: csstype.Property.FontKerning | undefined;
2121
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2122
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
2123
+ fontPalette?: csstype.Property.FontPalette | undefined;
2124
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
2125
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
2126
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
2127
+ fontStretch?: csstype.Property.FontStretch | undefined;
2128
+ fontStyle?: csstype.Property.FontStyle | undefined;
2129
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
2130
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
2131
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
2132
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
2133
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
2134
+ fontVariant?: csstype.Property.FontVariant | undefined;
2135
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
2136
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
2137
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
2138
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
2139
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
2140
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
2141
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
2142
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
2143
+ fontWeight?: csstype.Property.FontWeight | undefined;
2144
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
2145
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
2146
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
2147
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
2148
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
2149
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
2150
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
2151
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
2152
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
2153
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
2154
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
2155
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
2156
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
2157
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
2158
+ hyphens?: csstype.Property.Hyphens | undefined;
2159
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
2160
+ imageRendering?: csstype.Property.ImageRendering | undefined;
2161
+ imageResolution?: csstype.Property.ImageResolution | undefined;
2162
+ initialLetter?: csstype.Property.InitialLetter | undefined;
2163
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
2164
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
2165
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
2166
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
2167
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
2168
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2169
+ isolation?: csstype.Property.Isolation | undefined;
2170
+ justifyContent?: csstype.Property.JustifyContent | undefined;
2171
+ justifyItems?: csstype.Property.JustifyItems | undefined;
2172
+ justifySelf?: csstype.Property.JustifySelf | undefined;
2173
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
2174
+ left?: csstype.Property.Left<string | number> | undefined;
2175
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
2176
+ lineBreak?: csstype.Property.LineBreak | undefined;
2177
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
2178
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
2179
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
2180
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
2181
+ listStyleType?: csstype.Property.ListStyleType | undefined;
2182
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
2183
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
2184
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
2185
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2186
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2187
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
2188
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
2189
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
2190
+ marginTrim?: csstype.Property.MarginTrim | undefined;
2191
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
2192
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
2193
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
2194
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
2195
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
2196
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
2197
+ maskClip?: csstype.Property.MaskClip | undefined;
2198
+ maskComposite?: csstype.Property.MaskComposite | undefined;
2199
+ maskImage?: csstype.Property.MaskImage | undefined;
2200
+ maskMode?: csstype.Property.MaskMode | undefined;
2201
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
2202
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
2203
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
2204
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
2205
+ maskType?: csstype.Property.MaskType | undefined;
2206
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
2207
+ mathDepth?: csstype.Property.MathDepth | undefined;
2208
+ mathShift?: csstype.Property.MathShift | undefined;
2209
+ mathStyle?: csstype.Property.MathStyle | undefined;
2210
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
2211
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
2212
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
2213
+ maxLines?: csstype.Property.MaxLines | undefined;
2214
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
2215
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
2216
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
2217
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
2218
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
2219
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
2220
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
2221
+ motionPath?: csstype.Property.OffsetPath | undefined;
2222
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
2223
+ objectFit?: csstype.Property.ObjectFit | undefined;
2224
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
2225
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
2226
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
2227
+ offsetPath?: csstype.Property.OffsetPath | undefined;
2228
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
2229
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
2230
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
2231
+ opacity?: csstype.Property.Opacity | undefined;
2232
+ order?: csstype.Property.Order | undefined;
2233
+ orphans?: csstype.Property.Orphans | undefined;
2234
+ outlineColor?: csstype.Property.OutlineColor | undefined;
2235
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
2236
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
2237
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
2238
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
2239
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
2240
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
2241
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
2242
+ overflowInline?: csstype.Property.OverflowInline | undefined;
2243
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
2244
+ overflowX?: csstype.Property.OverflowX | undefined;
2245
+ overflowY?: csstype.Property.OverflowY | undefined;
2246
+ overlay?: csstype.Property.Overlay | undefined;
2247
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
2248
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
2249
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
2250
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
2251
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
2252
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
2253
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
2254
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2255
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2256
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
2257
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
2258
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
2259
+ page?: csstype.Property.Page | undefined;
2260
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
2261
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
2262
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
2263
+ paintOrder?: csstype.Property.PaintOrder | undefined;
2264
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
2265
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2266
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
2267
+ position?: csstype.Property.Position | undefined;
2268
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2269
+ quotes?: csstype.Property.Quotes | undefined;
2270
+ resize?: csstype.Property.Resize | undefined;
2271
+ right?: csstype.Property.Right<string | number> | undefined;
2272
+ rotate?: csstype.Property.Rotate | undefined;
2273
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
2274
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
2275
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
2276
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
2277
+ scale?: csstype.Property.Scale | undefined;
2278
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
2279
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
2280
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
2281
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
2282
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
2283
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
2284
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
2285
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
2286
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
2287
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
2288
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
2289
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
2290
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
2291
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
2292
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
2293
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
2294
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
2295
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
2296
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
2297
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
2298
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
2299
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
2300
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
2301
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
2302
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
2303
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
2304
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
2305
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
2306
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
2307
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
2308
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
2309
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
2310
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
2311
+ tableLayout?: csstype.Property.TableLayout | undefined;
2312
+ textAlign?: csstype.Property.TextAlign | undefined;
2313
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
2314
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
2315
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2316
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2317
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
2318
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
2319
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2320
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
2321
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
2322
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
2323
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
2324
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
2325
+ textJustify?: csstype.Property.TextJustify | undefined;
2326
+ textOrientation?: csstype.Property.TextOrientation | undefined;
2327
+ textOverflow?: csstype.Property.TextOverflow | undefined;
2328
+ textRendering?: csstype.Property.TextRendering | undefined;
2329
+ textShadow?: csstype.Property.TextShadow | undefined;
2330
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2331
+ textTransform?: csstype.Property.TextTransform | undefined;
2332
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
2333
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
2334
+ textWrap?: csstype.Property.TextWrap | undefined;
2335
+ timelineScope?: csstype.Property.TimelineScope | undefined;
2336
+ top?: csstype.Property.Top<string | number> | undefined;
2337
+ touchAction?: csstype.Property.TouchAction | undefined;
2338
+ transform?: csstype.Property.Transform | undefined;
2339
+ transformBox?: csstype.Property.TransformBox | undefined;
2340
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2341
+ transformStyle?: csstype.Property.TransformStyle | undefined;
2342
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
2343
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2344
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2345
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
2346
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2347
+ translate?: csstype.Property.Translate<string | number> | undefined;
2348
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
2349
+ userSelect?: csstype.Property.UserSelect | undefined;
2350
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
2351
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
2352
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
2353
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
2354
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
2355
+ visibility?: csstype.Property.Visibility | undefined;
2356
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
2357
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
2358
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
2359
+ widows?: csstype.Property.Widows | undefined;
2360
+ willChange?: csstype.Property.WillChange | undefined;
2361
+ wordBreak?: csstype.Property.WordBreak | undefined;
2362
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
2363
+ wordWrap?: csstype.Property.WordWrap | undefined;
2364
+ writingMode?: csstype.Property.WritingMode | undefined;
2365
+ zIndex?: csstype.Property.ZIndex | undefined;
2366
+ zoom?: csstype.Property.Zoom | undefined;
2367
+ all?: csstype.Property.All | undefined;
2368
+ animation?: csstype.Property.Animation<string & {}> | undefined;
2369
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
2370
+ background?: csstype.Property.Background<string | number> | undefined;
2371
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
2372
+ border?: csstype.Property.Border<string | number> | undefined;
2373
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
2374
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
2375
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
2376
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
2377
+ borderColor?: csstype.Property.BorderColor | undefined;
2378
+ borderImage?: csstype.Property.BorderImage | undefined;
2379
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
2380
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
2381
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
2382
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
2383
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2384
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
2385
+ borderStyle?: csstype.Property.BorderStyle | undefined;
2386
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
2387
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
2388
+ caret?: csstype.Property.Caret | undefined;
2389
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2390
+ columns?: csstype.Property.Columns<string | number> | undefined;
2391
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
2392
+ container?: csstype.Property.Container | undefined;
2393
+ flex?: csstype.Property.Flex<string | number> | undefined;
2394
+ flexFlow?: csstype.Property.FlexFlow | undefined;
2395
+ font?: csstype.Property.Font | undefined;
2396
+ gap?: csstype.Property.Gap<string | number> | undefined;
2397
+ grid?: csstype.Property.Grid | undefined;
2398
+ gridArea?: csstype.Property.GridArea | undefined;
2399
+ gridColumn?: csstype.Property.GridColumn | undefined;
2400
+ gridRow?: csstype.Property.GridRow | undefined;
2401
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
2402
+ inset?: csstype.Property.Inset<string | number> | undefined;
2403
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
2404
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
2405
+ lineClamp?: csstype.Property.LineClamp | undefined;
2406
+ listStyle?: csstype.Property.ListStyle | undefined;
2407
+ margin?: csstype.Property.Margin<string | number> | undefined;
2408
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
2409
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
2410
+ mask?: csstype.Property.Mask<string | number> | undefined;
2411
+ maskBorder?: csstype.Property.MaskBorder | undefined;
2412
+ motion?: csstype.Property.Offset<string | number> | undefined;
2413
+ offset?: csstype.Property.Offset<string | number> | undefined;
2414
+ outline?: csstype.Property.Outline<string | number> | undefined;
2415
+ overflow?: csstype.Property.Overflow | undefined;
2416
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
2417
+ padding?: csstype.Property.Padding<string | number> | undefined;
2418
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
2419
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
2420
+ placeContent?: csstype.Property.PlaceContent | undefined;
2421
+ placeItems?: csstype.Property.PlaceItems | undefined;
2422
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
2423
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
2424
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
2425
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
2426
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
2427
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
2428
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
2429
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
2430
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
2431
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
2432
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
2433
+ transition?: csstype.Property.Transition<string & {}> | undefined;
2434
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
2435
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2436
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2437
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2438
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2439
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2440
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
2441
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2442
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2443
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
2444
+ MozBinding?: csstype.Property.MozBinding | undefined;
2445
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
2446
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2447
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2448
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2449
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
2450
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
2451
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2452
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2453
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
2454
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
2455
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
2456
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
2457
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2458
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2459
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2460
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2461
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
2462
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2463
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2464
+ MozHyphens?: csstype.Property.Hyphens | undefined;
2465
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
2466
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2467
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2468
+ MozOrient?: csstype.Property.MozOrient | undefined;
2469
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
2470
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2471
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
2472
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
2473
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
2474
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2475
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2476
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
2477
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
2478
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
2479
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2480
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
2481
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
2482
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
2483
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
2484
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
2485
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
2486
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
2487
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
2488
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
2489
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
2490
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
2491
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
2492
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
2493
+ msFilter?: csstype.Property.MsFilter | undefined;
2494
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
2495
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
2496
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
2497
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
2498
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
2499
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
2500
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
2501
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
2502
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
2503
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
2504
+ msHyphens?: csstype.Property.Hyphens | undefined;
2505
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
2506
+ msLineBreak?: csstype.Property.LineBreak | undefined;
2507
+ msOrder?: csstype.Property.Order | undefined;
2508
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
2509
+ msOverflowX?: csstype.Property.OverflowX | undefined;
2510
+ msOverflowY?: csstype.Property.OverflowY | undefined;
2511
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
2512
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
2513
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
2514
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
2515
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
2516
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
2517
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
2518
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
2519
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
2520
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
2521
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
2522
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
2523
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
2524
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
2525
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
2526
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
2527
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
2528
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
2529
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
2530
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
2531
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
2532
+ msTouchAction?: csstype.Property.TouchAction | undefined;
2533
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
2534
+ msTransform?: csstype.Property.Transform | undefined;
2535
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2536
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2537
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2538
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2539
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2540
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
2541
+ msWordBreak?: csstype.Property.WordBreak | undefined;
2542
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
2543
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
2544
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
2545
+ msWritingMode?: csstype.Property.WritingMode | undefined;
2546
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
2547
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
2548
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
2549
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2550
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2551
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2552
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2553
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2554
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
2555
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2556
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2557
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
2558
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
2559
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2560
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
2561
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2562
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2563
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
2564
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
2565
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
2566
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2567
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2568
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2569
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2570
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2571
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
2572
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
2573
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
2574
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
2575
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
2576
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
2577
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
2578
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2579
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2580
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2581
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
2582
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2583
+ WebkitFilter?: csstype.Property.Filter | undefined;
2584
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2585
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
2586
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
2587
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
2588
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
2589
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2590
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
2591
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
2592
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
2593
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
2594
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
2595
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
2596
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
2597
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
2598
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
2599
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
2600
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
2601
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
2602
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
2603
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
2604
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
2605
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
2606
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
2607
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
2608
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
2609
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
2610
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
2611
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
2612
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
2613
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
2614
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
2615
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
2616
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
2617
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
2618
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
2619
+ WebkitOrder?: csstype.Property.Order | undefined;
2620
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
2621
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
2622
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
2623
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
2624
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2625
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2626
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
2627
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
2628
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
2629
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
2630
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
2631
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2632
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2633
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
2634
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2635
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
2636
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
2637
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
2638
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
2639
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
2640
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
2641
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
2642
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
2643
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
2644
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
2645
+ WebkitTransform?: csstype.Property.Transform | undefined;
2646
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2647
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
2648
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2649
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2650
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2651
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2652
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
2653
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
2654
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
2655
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
2656
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
2657
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2658
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
2659
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
2660
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
2661
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
2662
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
2663
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
2664
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
2665
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
2666
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
2667
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
2668
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
2669
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
2670
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2671
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
2672
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
2673
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
2674
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
2675
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
2676
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
2677
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
2678
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
2679
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
2680
+ azimuth?: csstype.Property.Azimuth | undefined;
2681
+ boxAlign?: csstype.Property.BoxAlign | undefined;
2682
+ boxDirection?: csstype.Property.BoxDirection | undefined;
2683
+ boxFlex?: csstype.Property.BoxFlex | undefined;
2684
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2685
+ boxLines?: csstype.Property.BoxLines | undefined;
2686
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2687
+ boxOrient?: csstype.Property.BoxOrient | undefined;
2688
+ boxPack?: csstype.Property.BoxPack | undefined;
2689
+ clip?: csstype.Property.Clip | undefined;
2690
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
2691
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
2692
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
2693
+ imeMode?: csstype.Property.ImeMode | undefined;
2694
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
2695
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
2696
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
2697
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
2698
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
2699
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
2700
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
2701
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
2702
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
2703
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
2704
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
2705
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
2706
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
2707
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
2708
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
2709
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2710
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
2711
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2712
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
2713
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
2714
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
2715
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
2716
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
2717
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2718
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
2719
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
2720
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2721
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2722
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
2723
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2724
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2725
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2726
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2727
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
2728
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
2729
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
2730
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2731
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
2732
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
2733
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
2734
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
2735
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
2736
+ MozOpacity?: csstype.Property.Opacity | undefined;
2737
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
2738
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
2739
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
2740
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
2741
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
2742
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
2743
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
2744
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
2745
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
2746
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
2747
+ MozTransform?: csstype.Property.Transform | undefined;
2748
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2749
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
2750
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
2751
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2752
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2753
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2754
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2755
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
2756
+ msImeMode?: csstype.Property.ImeMode | undefined;
2757
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
2758
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2759
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
2760
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2761
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
2762
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2763
+ OAnimationName?: csstype.Property.AnimationName | undefined;
2764
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
2765
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2766
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2767
+ OBorderImage?: csstype.Property.BorderImage | undefined;
2768
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
2769
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
2770
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
2771
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
2772
+ OTransform?: csstype.Property.Transform | undefined;
2773
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
2774
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
2775
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
2776
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
2777
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
2778
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
2779
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
2780
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
2781
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
2782
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
2783
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
2784
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
2785
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
2786
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
2787
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
2788
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
2789
+ clipRule?: csstype.Property.ClipRule | undefined;
2790
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
2791
+ colorRendering?: csstype.Property.ColorRendering | undefined;
2792
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
2793
+ fill?: csstype.Property.Fill | undefined;
2794
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
2795
+ fillRule?: csstype.Property.FillRule | undefined;
2796
+ floodColor?: csstype.Property.FloodColor | undefined;
2797
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
2798
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
2799
+ lightingColor?: csstype.Property.LightingColor | undefined;
2800
+ marker?: csstype.Property.Marker | undefined;
2801
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
2802
+ markerMid?: csstype.Property.MarkerMid | undefined;
2803
+ markerStart?: csstype.Property.MarkerStart | undefined;
2804
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
2805
+ stopColor?: csstype.Property.StopColor | undefined;
2806
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
2807
+ stroke?: csstype.Property.Stroke | undefined;
2808
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
2809
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
2810
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
2811
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
2812
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
2813
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
2814
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
2815
+ textAnchor?: csstype.Property.TextAnchor | undefined;
2816
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
2817
+ };
2818
+ }, HTMLElement>;
2819
+ context: unknown;
2820
+ setState<K extends "showPreview">(state: StormcloudPlayerState | ((prevState: Readonly<StormcloudPlayerState>, props: Readonly<StormcloudPlayerProps>) => StormcloudPlayerState | Pick<StormcloudPlayerState, K> | null) | Pick<StormcloudPlayerState, K> | null, callback?: (() => void) | undefined): void;
2821
+ forceUpdate(callback?: (() => void) | undefined): void;
2822
+ readonly props: Readonly<StormcloudPlayerProps>;
2823
+ refs: {
2824
+ [key: string]: React.ReactInstance;
2825
+ };
2826
+ componentDidMount?(): void;
2827
+ shouldComponentUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): boolean;
2828
+ componentWillUnmount?(): void;
2829
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
2830
+ getSnapshotBeforeUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>): any;
2831
+ componentDidUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>, snapshot?: any): void;
2832
+ componentWillMount?(): void;
2833
+ UNSAFE_componentWillMount?(): void;
2834
+ componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
2835
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
2836
+ componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
2837
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
2838
+ };
2839
+ new (props: StormcloudPlayerProps, context: any): {
2840
+ state: StormcloudPlayerState;
2841
+ wrapper?: HTMLElement;
2842
+ player?: any;
2843
+ references: {
2844
+ wrapper: (wrapper: HTMLElement) => void;
2845
+ player: (player: any) => void;
2846
+ };
2847
+ getActivePlayer: (src?: string) => PlayerConfig | null;
2848
+ getAttributes: (src?: string) => Omit<Readonly<StormcloudPlayerProps>, keyof StormcloudPlayerProps>;
2849
+ handleReady: () => void;
2850
+ seekTo: (fraction: number, type?: "seconds" | "fraction", keepPlaying?: boolean) => null | undefined;
2851
+ getCurrentTime: () => number | null;
2852
+ getSecondsLoaded: () => number | null;
2853
+ getDuration: () => number | null;
2854
+ getInternalPlayer: (key?: string) => any;
2855
+ renderActivePlayer: (src?: string) => React.CElement<PlayerProps, any> | null;
2856
+ render(): React.DetailedReactHTMLElement<{
2857
+ ref: ((wrapper: HTMLElement) => void) | undefined;
2858
+ style: {
2859
+ width: string | number | undefined;
2860
+ height: string | number | undefined;
2861
+ accentColor?: csstype.Property.AccentColor | undefined;
2862
+ alignContent?: csstype.Property.AlignContent | undefined;
2863
+ alignItems?: csstype.Property.AlignItems | undefined;
2864
+ alignSelf?: csstype.Property.AlignSelf | undefined;
2865
+ alignTracks?: csstype.Property.AlignTracks | undefined;
2866
+ animationComposition?: csstype.Property.AnimationComposition | undefined;
2867
+ animationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
2868
+ animationDirection?: csstype.Property.AnimationDirection | undefined;
2869
+ animationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
2870
+ animationFillMode?: csstype.Property.AnimationFillMode | undefined;
2871
+ animationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
2872
+ animationName?: csstype.Property.AnimationName | undefined;
2873
+ animationPlayState?: csstype.Property.AnimationPlayState | undefined;
2874
+ animationRangeEnd?: csstype.Property.AnimationRangeEnd<string | number> | undefined;
2875
+ animationRangeStart?: csstype.Property.AnimationRangeStart<string | number> | undefined;
2876
+ animationTimeline?: csstype.Property.AnimationTimeline | undefined;
2877
+ animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
2878
+ appearance?: csstype.Property.Appearance | undefined;
2879
+ aspectRatio?: csstype.Property.AspectRatio | undefined;
2880
+ backdropFilter?: csstype.Property.BackdropFilter | undefined;
2881
+ backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
2882
+ backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined;
2883
+ backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined;
2884
+ backgroundClip?: csstype.Property.BackgroundClip | undefined;
2885
+ backgroundColor?: csstype.Property.BackgroundColor | undefined;
2886
+ backgroundImage?: csstype.Property.BackgroundImage | undefined;
2887
+ backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
2888
+ backgroundPositionX?: csstype.Property.BackgroundPositionX<string | number> | undefined;
2889
+ backgroundPositionY?: csstype.Property.BackgroundPositionY<string | number> | undefined;
2890
+ backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined;
2891
+ backgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
2892
+ blockOverflow?: csstype.Property.BlockOverflow | undefined;
2893
+ blockSize?: csstype.Property.BlockSize<string | number> | undefined;
2894
+ borderBlockColor?: csstype.Property.BorderBlockColor | undefined;
2895
+ borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined;
2896
+ borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined;
2897
+ borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth<string | number> | undefined;
2898
+ borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined;
2899
+ borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined;
2900
+ borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth<string | number> | undefined;
2901
+ borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined;
2902
+ borderBlockWidth?: csstype.Property.BorderBlockWidth<string | number> | undefined;
2903
+ borderBottomColor?: csstype.Property.BorderBottomColor | undefined;
2904
+ borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
2905
+ borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
2906
+ borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined;
2907
+ borderBottomWidth?: csstype.Property.BorderBottomWidth<string | number> | undefined;
2908
+ borderCollapse?: csstype.Property.BorderCollapse | undefined;
2909
+ borderEndEndRadius?: csstype.Property.BorderEndEndRadius<string | number> | undefined;
2910
+ borderEndStartRadius?: csstype.Property.BorderEndStartRadius<string | number> | undefined;
2911
+ borderImageOutset?: csstype.Property.BorderImageOutset<string | number> | undefined;
2912
+ borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined;
2913
+ borderImageSlice?: csstype.Property.BorderImageSlice | undefined;
2914
+ borderImageSource?: csstype.Property.BorderImageSource | undefined;
2915
+ borderImageWidth?: csstype.Property.BorderImageWidth<string | number> | undefined;
2916
+ borderInlineColor?: csstype.Property.BorderInlineColor | undefined;
2917
+ borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined;
2918
+ borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
2919
+ borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
2920
+ borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined;
2921
+ borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
2922
+ borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth<string | number> | undefined;
2923
+ borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined;
2924
+ borderInlineWidth?: csstype.Property.BorderInlineWidth<string | number> | undefined;
2925
+ borderLeftColor?: csstype.Property.BorderLeftColor | undefined;
2926
+ borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined;
2927
+ borderLeftWidth?: csstype.Property.BorderLeftWidth<string | number> | undefined;
2928
+ borderRightColor?: csstype.Property.BorderRightColor | undefined;
2929
+ borderRightStyle?: csstype.Property.BorderRightStyle | undefined;
2930
+ borderRightWidth?: csstype.Property.BorderRightWidth<string | number> | undefined;
2931
+ borderSpacing?: csstype.Property.BorderSpacing<string | number> | undefined;
2932
+ borderStartEndRadius?: csstype.Property.BorderStartEndRadius<string | number> | undefined;
2933
+ borderStartStartRadius?: csstype.Property.BorderStartStartRadius<string | number> | undefined;
2934
+ borderTopColor?: csstype.Property.BorderTopColor | undefined;
2935
+ borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
2936
+ borderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
2937
+ borderTopStyle?: csstype.Property.BorderTopStyle | undefined;
2938
+ borderTopWidth?: csstype.Property.BorderTopWidth<string | number> | undefined;
2939
+ bottom?: csstype.Property.Bottom<string | number> | undefined;
2940
+ boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
2941
+ boxShadow?: csstype.Property.BoxShadow | undefined;
2942
+ boxSizing?: csstype.Property.BoxSizing | undefined;
2943
+ breakAfter?: csstype.Property.BreakAfter | undefined;
2944
+ breakBefore?: csstype.Property.BreakBefore | undefined;
2945
+ breakInside?: csstype.Property.BreakInside | undefined;
2946
+ captionSide?: csstype.Property.CaptionSide | undefined;
2947
+ caretColor?: csstype.Property.CaretColor | undefined;
2948
+ caretShape?: csstype.Property.CaretShape | undefined;
2949
+ clear?: csstype.Property.Clear | undefined;
2950
+ clipPath?: csstype.Property.ClipPath | undefined;
2951
+ color?: csstype.Property.Color | undefined;
2952
+ colorAdjust?: csstype.Property.PrintColorAdjust | undefined;
2953
+ colorScheme?: csstype.Property.ColorScheme | undefined;
2954
+ columnCount?: csstype.Property.ColumnCount | undefined;
2955
+ columnFill?: csstype.Property.ColumnFill | undefined;
2956
+ columnGap?: csstype.Property.ColumnGap<string | number> | undefined;
2957
+ columnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
2958
+ columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
2959
+ columnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
2960
+ columnSpan?: csstype.Property.ColumnSpan | undefined;
2961
+ columnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
2962
+ contain?: csstype.Property.Contain | undefined;
2963
+ containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
2964
+ containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
2965
+ containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
2966
+ containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
2967
+ containerName?: csstype.Property.ContainerName | undefined;
2968
+ containerType?: csstype.Property.ContainerType | undefined;
2969
+ content?: csstype.Property.Content | undefined;
2970
+ contentVisibility?: csstype.Property.ContentVisibility | undefined;
2971
+ counterIncrement?: csstype.Property.CounterIncrement | undefined;
2972
+ counterReset?: csstype.Property.CounterReset | undefined;
2973
+ counterSet?: csstype.Property.CounterSet | undefined;
2974
+ cursor?: csstype.Property.Cursor | undefined;
2975
+ direction?: csstype.Property.Direction | undefined;
2976
+ display?: csstype.Property.Display | undefined;
2977
+ emptyCells?: csstype.Property.EmptyCells | undefined;
2978
+ filter?: csstype.Property.Filter | undefined;
2979
+ flexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
2980
+ flexDirection?: csstype.Property.FlexDirection | undefined;
2981
+ flexGrow?: csstype.Property.FlexGrow | undefined;
2982
+ flexShrink?: csstype.Property.FlexShrink | undefined;
2983
+ flexWrap?: csstype.Property.FlexWrap | undefined;
2984
+ float?: csstype.Property.Float | undefined;
2985
+ fontFamily?: csstype.Property.FontFamily | undefined;
2986
+ fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
2987
+ fontKerning?: csstype.Property.FontKerning | undefined;
2988
+ fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
2989
+ fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined;
2990
+ fontPalette?: csstype.Property.FontPalette | undefined;
2991
+ fontSize?: csstype.Property.FontSize<string | number> | undefined;
2992
+ fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined;
2993
+ fontSmooth?: csstype.Property.FontSmooth<string | number> | undefined;
2994
+ fontStretch?: csstype.Property.FontStretch | undefined;
2995
+ fontStyle?: csstype.Property.FontStyle | undefined;
2996
+ fontSynthesis?: csstype.Property.FontSynthesis | undefined;
2997
+ fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined;
2998
+ fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined;
2999
+ fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined;
3000
+ fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined;
3001
+ fontVariant?: csstype.Property.FontVariant | undefined;
3002
+ fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined;
3003
+ fontVariantCaps?: csstype.Property.FontVariantCaps | undefined;
3004
+ fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined;
3005
+ fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined;
3006
+ fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
3007
+ fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined;
3008
+ fontVariantPosition?: csstype.Property.FontVariantPosition | undefined;
3009
+ fontVariationSettings?: csstype.Property.FontVariationSettings | undefined;
3010
+ fontWeight?: csstype.Property.FontWeight | undefined;
3011
+ forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined;
3012
+ gridAutoColumns?: csstype.Property.GridAutoColumns<string | number> | undefined;
3013
+ gridAutoFlow?: csstype.Property.GridAutoFlow | undefined;
3014
+ gridAutoRows?: csstype.Property.GridAutoRows<string | number> | undefined;
3015
+ gridColumnEnd?: csstype.Property.GridColumnEnd | undefined;
3016
+ gridColumnStart?: csstype.Property.GridColumnStart | undefined;
3017
+ gridRowEnd?: csstype.Property.GridRowEnd | undefined;
3018
+ gridRowStart?: csstype.Property.GridRowStart | undefined;
3019
+ gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined;
3020
+ gridTemplateColumns?: csstype.Property.GridTemplateColumns<string | number> | undefined;
3021
+ gridTemplateRows?: csstype.Property.GridTemplateRows<string | number> | undefined;
3022
+ hangingPunctuation?: csstype.Property.HangingPunctuation | undefined;
3023
+ hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
3024
+ hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined;
3025
+ hyphens?: csstype.Property.Hyphens | undefined;
3026
+ imageOrientation?: csstype.Property.ImageOrientation | undefined;
3027
+ imageRendering?: csstype.Property.ImageRendering | undefined;
3028
+ imageResolution?: csstype.Property.ImageResolution | undefined;
3029
+ initialLetter?: csstype.Property.InitialLetter | undefined;
3030
+ inlineSize?: csstype.Property.InlineSize<string | number> | undefined;
3031
+ inputSecurity?: csstype.Property.InputSecurity | undefined;
3032
+ insetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
3033
+ insetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
3034
+ insetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
3035
+ insetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
3036
+ isolation?: csstype.Property.Isolation | undefined;
3037
+ justifyContent?: csstype.Property.JustifyContent | undefined;
3038
+ justifyItems?: csstype.Property.JustifyItems | undefined;
3039
+ justifySelf?: csstype.Property.JustifySelf | undefined;
3040
+ justifyTracks?: csstype.Property.JustifyTracks | undefined;
3041
+ left?: csstype.Property.Left<string | number> | undefined;
3042
+ letterSpacing?: csstype.Property.LetterSpacing<string | number> | undefined;
3043
+ lineBreak?: csstype.Property.LineBreak | undefined;
3044
+ lineHeight?: csstype.Property.LineHeight<string | number> | undefined;
3045
+ lineHeightStep?: csstype.Property.LineHeightStep<string | number> | undefined;
3046
+ listStyleImage?: csstype.Property.ListStyleImage | undefined;
3047
+ listStylePosition?: csstype.Property.ListStylePosition | undefined;
3048
+ listStyleType?: csstype.Property.ListStyleType | undefined;
3049
+ marginBlockEnd?: csstype.Property.MarginBlockEnd<string | number> | undefined;
3050
+ marginBlockStart?: csstype.Property.MarginBlockStart<string | number> | undefined;
3051
+ marginBottom?: csstype.Property.MarginBottom<string | number> | undefined;
3052
+ marginInlineEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3053
+ marginInlineStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3054
+ marginLeft?: csstype.Property.MarginLeft<string | number> | undefined;
3055
+ marginRight?: csstype.Property.MarginRight<string | number> | undefined;
3056
+ marginTop?: csstype.Property.MarginTop<string | number> | undefined;
3057
+ marginTrim?: csstype.Property.MarginTrim | undefined;
3058
+ maskBorderMode?: csstype.Property.MaskBorderMode | undefined;
3059
+ maskBorderOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
3060
+ maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined;
3061
+ maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined;
3062
+ maskBorderSource?: csstype.Property.MaskBorderSource | undefined;
3063
+ maskBorderWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
3064
+ maskClip?: csstype.Property.MaskClip | undefined;
3065
+ maskComposite?: csstype.Property.MaskComposite | undefined;
3066
+ maskImage?: csstype.Property.MaskImage | undefined;
3067
+ maskMode?: csstype.Property.MaskMode | undefined;
3068
+ maskOrigin?: csstype.Property.MaskOrigin | undefined;
3069
+ maskPosition?: csstype.Property.MaskPosition<string | number> | undefined;
3070
+ maskRepeat?: csstype.Property.MaskRepeat | undefined;
3071
+ maskSize?: csstype.Property.MaskSize<string | number> | undefined;
3072
+ maskType?: csstype.Property.MaskType | undefined;
3073
+ masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined;
3074
+ mathDepth?: csstype.Property.MathDepth | undefined;
3075
+ mathShift?: csstype.Property.MathShift | undefined;
3076
+ mathStyle?: csstype.Property.MathStyle | undefined;
3077
+ maxBlockSize?: csstype.Property.MaxBlockSize<string | number> | undefined;
3078
+ maxHeight?: csstype.Property.MaxHeight<string | number> | undefined;
3079
+ maxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
3080
+ maxLines?: csstype.Property.MaxLines | undefined;
3081
+ maxWidth?: csstype.Property.MaxWidth<string | number> | undefined;
3082
+ minBlockSize?: csstype.Property.MinBlockSize<string | number> | undefined;
3083
+ minHeight?: csstype.Property.MinHeight<string | number> | undefined;
3084
+ minInlineSize?: csstype.Property.MinInlineSize<string | number> | undefined;
3085
+ minWidth?: csstype.Property.MinWidth<string | number> | undefined;
3086
+ mixBlendMode?: csstype.Property.MixBlendMode | undefined;
3087
+ motionDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
3088
+ motionPath?: csstype.Property.OffsetPath | undefined;
3089
+ motionRotation?: csstype.Property.OffsetRotate | undefined;
3090
+ objectFit?: csstype.Property.ObjectFit | undefined;
3091
+ objectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
3092
+ offsetAnchor?: csstype.Property.OffsetAnchor<string | number> | undefined;
3093
+ offsetDistance?: csstype.Property.OffsetDistance<string | number> | undefined;
3094
+ offsetPath?: csstype.Property.OffsetPath | undefined;
3095
+ offsetPosition?: csstype.Property.OffsetPosition<string | number> | undefined;
3096
+ offsetRotate?: csstype.Property.OffsetRotate | undefined;
3097
+ offsetRotation?: csstype.Property.OffsetRotate | undefined;
3098
+ opacity?: csstype.Property.Opacity | undefined;
3099
+ order?: csstype.Property.Order | undefined;
3100
+ orphans?: csstype.Property.Orphans | undefined;
3101
+ outlineColor?: csstype.Property.OutlineColor | undefined;
3102
+ outlineOffset?: csstype.Property.OutlineOffset<string | number> | undefined;
3103
+ outlineStyle?: csstype.Property.OutlineStyle | undefined;
3104
+ outlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
3105
+ overflowAnchor?: csstype.Property.OverflowAnchor | undefined;
3106
+ overflowBlock?: csstype.Property.OverflowBlock | undefined;
3107
+ overflowClipBox?: csstype.Property.OverflowClipBox | undefined;
3108
+ overflowClipMargin?: csstype.Property.OverflowClipMargin<string | number> | undefined;
3109
+ overflowInline?: csstype.Property.OverflowInline | undefined;
3110
+ overflowWrap?: csstype.Property.OverflowWrap | undefined;
3111
+ overflowX?: csstype.Property.OverflowX | undefined;
3112
+ overflowY?: csstype.Property.OverflowY | undefined;
3113
+ overlay?: csstype.Property.Overlay | undefined;
3114
+ overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined;
3115
+ overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined;
3116
+ overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined;
3117
+ overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined;
3118
+ paddingBlockEnd?: csstype.Property.PaddingBlockEnd<string | number> | undefined;
3119
+ paddingBlockStart?: csstype.Property.PaddingBlockStart<string | number> | undefined;
3120
+ paddingBottom?: csstype.Property.PaddingBottom<string | number> | undefined;
3121
+ paddingInlineEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3122
+ paddingInlineStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3123
+ paddingLeft?: csstype.Property.PaddingLeft<string | number> | undefined;
3124
+ paddingRight?: csstype.Property.PaddingRight<string | number> | undefined;
3125
+ paddingTop?: csstype.Property.PaddingTop<string | number> | undefined;
3126
+ page?: csstype.Property.Page | undefined;
3127
+ pageBreakAfter?: csstype.Property.PageBreakAfter | undefined;
3128
+ pageBreakBefore?: csstype.Property.PageBreakBefore | undefined;
3129
+ pageBreakInside?: csstype.Property.PageBreakInside | undefined;
3130
+ paintOrder?: csstype.Property.PaintOrder | undefined;
3131
+ perspective?: csstype.Property.Perspective<string | number> | undefined;
3132
+ perspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3133
+ pointerEvents?: csstype.Property.PointerEvents | undefined;
3134
+ position?: csstype.Property.Position | undefined;
3135
+ printColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3136
+ quotes?: csstype.Property.Quotes | undefined;
3137
+ resize?: csstype.Property.Resize | undefined;
3138
+ right?: csstype.Property.Right<string | number> | undefined;
3139
+ rotate?: csstype.Property.Rotate | undefined;
3140
+ rowGap?: csstype.Property.RowGap<string | number> | undefined;
3141
+ rubyAlign?: csstype.Property.RubyAlign | undefined;
3142
+ rubyMerge?: csstype.Property.RubyMerge | undefined;
3143
+ rubyPosition?: csstype.Property.RubyPosition | undefined;
3144
+ scale?: csstype.Property.Scale | undefined;
3145
+ scrollBehavior?: csstype.Property.ScrollBehavior | undefined;
3146
+ scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
3147
+ scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
3148
+ scrollMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
3149
+ scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
3150
+ scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
3151
+ scrollMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
3152
+ scrollMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
3153
+ scrollMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
3154
+ scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
3155
+ scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
3156
+ scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom<string | number> | undefined;
3157
+ scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
3158
+ scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
3159
+ scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft<string | number> | undefined;
3160
+ scrollPaddingRight?: csstype.Property.ScrollPaddingRight<string | number> | undefined;
3161
+ scrollPaddingTop?: csstype.Property.ScrollPaddingTop<string | number> | undefined;
3162
+ scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined;
3163
+ scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom<string | number> | undefined;
3164
+ scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft<string | number> | undefined;
3165
+ scrollSnapMarginRight?: csstype.Property.ScrollMarginRight<string | number> | undefined;
3166
+ scrollSnapMarginTop?: csstype.Property.ScrollMarginTop<string | number> | undefined;
3167
+ scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined;
3168
+ scrollSnapType?: csstype.Property.ScrollSnapType | undefined;
3169
+ scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined;
3170
+ scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined;
3171
+ scrollbarColor?: csstype.Property.ScrollbarColor | undefined;
3172
+ scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined;
3173
+ scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined;
3174
+ shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined;
3175
+ shapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
3176
+ shapeOutside?: csstype.Property.ShapeOutside | undefined;
3177
+ tabSize?: csstype.Property.TabSize<string | number> | undefined;
3178
+ tableLayout?: csstype.Property.TableLayout | undefined;
3179
+ textAlign?: csstype.Property.TextAlign | undefined;
3180
+ textAlignLast?: csstype.Property.TextAlignLast | undefined;
3181
+ textCombineUpright?: csstype.Property.TextCombineUpright | undefined;
3182
+ textDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3183
+ textDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3184
+ textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
3185
+ textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined;
3186
+ textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3187
+ textDecorationThickness?: csstype.Property.TextDecorationThickness<string | number> | undefined;
3188
+ textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
3189
+ textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
3190
+ textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
3191
+ textIndent?: csstype.Property.TextIndent<string | number> | undefined;
3192
+ textJustify?: csstype.Property.TextJustify | undefined;
3193
+ textOrientation?: csstype.Property.TextOrientation | undefined;
3194
+ textOverflow?: csstype.Property.TextOverflow | undefined;
3195
+ textRendering?: csstype.Property.TextRendering | undefined;
3196
+ textShadow?: csstype.Property.TextShadow | undefined;
3197
+ textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3198
+ textTransform?: csstype.Property.TextTransform | undefined;
3199
+ textUnderlineOffset?: csstype.Property.TextUnderlineOffset<string | number> | undefined;
3200
+ textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
3201
+ textWrap?: csstype.Property.TextWrap | undefined;
3202
+ timelineScope?: csstype.Property.TimelineScope | undefined;
3203
+ top?: csstype.Property.Top<string | number> | undefined;
3204
+ touchAction?: csstype.Property.TouchAction | undefined;
3205
+ transform?: csstype.Property.Transform | undefined;
3206
+ transformBox?: csstype.Property.TransformBox | undefined;
3207
+ transformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3208
+ transformStyle?: csstype.Property.TransformStyle | undefined;
3209
+ transitionBehavior?: csstype.Property.TransitionBehavior | undefined;
3210
+ transitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3211
+ transitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3212
+ transitionProperty?: csstype.Property.TransitionProperty | undefined;
3213
+ transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3214
+ translate?: csstype.Property.Translate<string | number> | undefined;
3215
+ unicodeBidi?: csstype.Property.UnicodeBidi | undefined;
3216
+ userSelect?: csstype.Property.UserSelect | undefined;
3217
+ verticalAlign?: csstype.Property.VerticalAlign<string | number> | undefined;
3218
+ viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined;
3219
+ viewTimelineInset?: csstype.Property.ViewTimelineInset<string | number> | undefined;
3220
+ viewTimelineName?: csstype.Property.ViewTimelineName | undefined;
3221
+ viewTransitionName?: csstype.Property.ViewTransitionName | undefined;
3222
+ visibility?: csstype.Property.Visibility | undefined;
3223
+ whiteSpace?: csstype.Property.WhiteSpace | undefined;
3224
+ whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined;
3225
+ whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined;
3226
+ widows?: csstype.Property.Widows | undefined;
3227
+ willChange?: csstype.Property.WillChange | undefined;
3228
+ wordBreak?: csstype.Property.WordBreak | undefined;
3229
+ wordSpacing?: csstype.Property.WordSpacing<string | number> | undefined;
3230
+ wordWrap?: csstype.Property.WordWrap | undefined;
3231
+ writingMode?: csstype.Property.WritingMode | undefined;
3232
+ zIndex?: csstype.Property.ZIndex | undefined;
3233
+ zoom?: csstype.Property.Zoom | undefined;
3234
+ all?: csstype.Property.All | undefined;
3235
+ animation?: csstype.Property.Animation<string & {}> | undefined;
3236
+ animationRange?: csstype.Property.AnimationRange<string | number> | undefined;
3237
+ background?: csstype.Property.Background<string | number> | undefined;
3238
+ backgroundPosition?: csstype.Property.BackgroundPosition<string | number> | undefined;
3239
+ border?: csstype.Property.Border<string | number> | undefined;
3240
+ borderBlock?: csstype.Property.BorderBlock<string | number> | undefined;
3241
+ borderBlockEnd?: csstype.Property.BorderBlockEnd<string | number> | undefined;
3242
+ borderBlockStart?: csstype.Property.BorderBlockStart<string | number> | undefined;
3243
+ borderBottom?: csstype.Property.BorderBottom<string | number> | undefined;
3244
+ borderColor?: csstype.Property.BorderColor | undefined;
3245
+ borderImage?: csstype.Property.BorderImage | undefined;
3246
+ borderInline?: csstype.Property.BorderInline<string | number> | undefined;
3247
+ borderInlineEnd?: csstype.Property.BorderInlineEnd<string | number> | undefined;
3248
+ borderInlineStart?: csstype.Property.BorderInlineStart<string | number> | undefined;
3249
+ borderLeft?: csstype.Property.BorderLeft<string | number> | undefined;
3250
+ borderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3251
+ borderRight?: csstype.Property.BorderRight<string | number> | undefined;
3252
+ borderStyle?: csstype.Property.BorderStyle | undefined;
3253
+ borderTop?: csstype.Property.BorderTop<string | number> | undefined;
3254
+ borderWidth?: csstype.Property.BorderWidth<string | number> | undefined;
3255
+ caret?: csstype.Property.Caret | undefined;
3256
+ columnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3257
+ columns?: csstype.Property.Columns<string | number> | undefined;
3258
+ containIntrinsicSize?: csstype.Property.ContainIntrinsicSize<string | number> | undefined;
3259
+ container?: csstype.Property.Container | undefined;
3260
+ flex?: csstype.Property.Flex<string | number> | undefined;
3261
+ flexFlow?: csstype.Property.FlexFlow | undefined;
3262
+ font?: csstype.Property.Font | undefined;
3263
+ gap?: csstype.Property.Gap<string | number> | undefined;
3264
+ grid?: csstype.Property.Grid | undefined;
3265
+ gridArea?: csstype.Property.GridArea | undefined;
3266
+ gridColumn?: csstype.Property.GridColumn | undefined;
3267
+ gridRow?: csstype.Property.GridRow | undefined;
3268
+ gridTemplate?: csstype.Property.GridTemplate | undefined;
3269
+ inset?: csstype.Property.Inset<string | number> | undefined;
3270
+ insetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
3271
+ insetInline?: csstype.Property.InsetInline<string | number> | undefined;
3272
+ lineClamp?: csstype.Property.LineClamp | undefined;
3273
+ listStyle?: csstype.Property.ListStyle | undefined;
3274
+ margin?: csstype.Property.Margin<string | number> | undefined;
3275
+ marginBlock?: csstype.Property.MarginBlock<string | number> | undefined;
3276
+ marginInline?: csstype.Property.MarginInline<string | number> | undefined;
3277
+ mask?: csstype.Property.Mask<string | number> | undefined;
3278
+ maskBorder?: csstype.Property.MaskBorder | undefined;
3279
+ motion?: csstype.Property.Offset<string | number> | undefined;
3280
+ offset?: csstype.Property.Offset<string | number> | undefined;
3281
+ outline?: csstype.Property.Outline<string | number> | undefined;
3282
+ overflow?: csstype.Property.Overflow | undefined;
3283
+ overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined;
3284
+ padding?: csstype.Property.Padding<string | number> | undefined;
3285
+ paddingBlock?: csstype.Property.PaddingBlock<string | number> | undefined;
3286
+ paddingInline?: csstype.Property.PaddingInline<string | number> | undefined;
3287
+ placeContent?: csstype.Property.PlaceContent | undefined;
3288
+ placeItems?: csstype.Property.PlaceItems | undefined;
3289
+ placeSelf?: csstype.Property.PlaceSelf | undefined;
3290
+ scrollMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
3291
+ scrollMarginBlock?: csstype.Property.ScrollMarginBlock<string | number> | undefined;
3292
+ scrollMarginInline?: csstype.Property.ScrollMarginInline<string | number> | undefined;
3293
+ scrollPadding?: csstype.Property.ScrollPadding<string | number> | undefined;
3294
+ scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock<string | number> | undefined;
3295
+ scrollPaddingInline?: csstype.Property.ScrollPaddingInline<string | number> | undefined;
3296
+ scrollSnapMargin?: csstype.Property.ScrollMargin<string | number> | undefined;
3297
+ scrollTimeline?: csstype.Property.ScrollTimeline | undefined;
3298
+ textDecoration?: csstype.Property.TextDecoration<string | number> | undefined;
3299
+ textEmphasis?: csstype.Property.TextEmphasis | undefined;
3300
+ transition?: csstype.Property.Transition<string & {}> | undefined;
3301
+ viewTimeline?: csstype.Property.ViewTimeline | undefined;
3302
+ MozAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3303
+ MozAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3304
+ MozAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3305
+ MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3306
+ MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3307
+ MozAnimationName?: csstype.Property.AnimationName | undefined;
3308
+ MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3309
+ MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3310
+ MozAppearance?: csstype.Property.MozAppearance | undefined;
3311
+ MozBinding?: csstype.Property.MozBinding | undefined;
3312
+ MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined;
3313
+ MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined;
3314
+ MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined;
3315
+ MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth<string | number> | undefined;
3316
+ MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined;
3317
+ MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined;
3318
+ MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined;
3319
+ MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined;
3320
+ MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined;
3321
+ MozBoxSizing?: csstype.Property.BoxSizing | undefined;
3322
+ MozColumnCount?: csstype.Property.ColumnCount | undefined;
3323
+ MozColumnFill?: csstype.Property.ColumnFill | undefined;
3324
+ MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
3325
+ MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
3326
+ MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
3327
+ MozColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
3328
+ MozContextProperties?: csstype.Property.MozContextProperties | undefined;
3329
+ MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3330
+ MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined;
3331
+ MozHyphens?: csstype.Property.Hyphens | undefined;
3332
+ MozImageRegion?: csstype.Property.MozImageRegion | undefined;
3333
+ MozMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3334
+ MozMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3335
+ MozOrient?: csstype.Property.MozOrient | undefined;
3336
+ MozOsxFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
3337
+ MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
3338
+ MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
3339
+ MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
3340
+ MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
3341
+ MozPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3342
+ MozPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3343
+ MozStackSizing?: csstype.Property.MozStackSizing | undefined;
3344
+ MozTabSize?: csstype.Property.TabSize<string | number> | undefined;
3345
+ MozTextBlink?: csstype.Property.MozTextBlink | undefined;
3346
+ MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3347
+ MozUserFocus?: csstype.Property.MozUserFocus | undefined;
3348
+ MozUserModify?: csstype.Property.MozUserModify | undefined;
3349
+ MozUserSelect?: csstype.Property.UserSelect | undefined;
3350
+ MozWindowDragging?: csstype.Property.MozWindowDragging | undefined;
3351
+ MozWindowShadow?: csstype.Property.MozWindowShadow | undefined;
3352
+ msAccelerator?: csstype.Property.MsAccelerator | undefined;
3353
+ msBlockProgression?: csstype.Property.MsBlockProgression | undefined;
3354
+ msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined;
3355
+ msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined;
3356
+ msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined;
3357
+ msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined;
3358
+ msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined;
3359
+ msContentZooming?: csstype.Property.MsContentZooming | undefined;
3360
+ msFilter?: csstype.Property.MsFilter | undefined;
3361
+ msFlexDirection?: csstype.Property.FlexDirection | undefined;
3362
+ msFlexPositive?: csstype.Property.FlexGrow | undefined;
3363
+ msFlowFrom?: csstype.Property.MsFlowFrom | undefined;
3364
+ msFlowInto?: csstype.Property.MsFlowInto | undefined;
3365
+ msGridColumns?: csstype.Property.MsGridColumns<string | number> | undefined;
3366
+ msGridRows?: csstype.Property.MsGridRows<string | number> | undefined;
3367
+ msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined;
3368
+ msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined;
3369
+ msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined;
3370
+ msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
3371
+ msHyphens?: csstype.Property.Hyphens | undefined;
3372
+ msImeAlign?: csstype.Property.MsImeAlign | undefined;
3373
+ msLineBreak?: csstype.Property.LineBreak | undefined;
3374
+ msOrder?: csstype.Property.Order | undefined;
3375
+ msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined;
3376
+ msOverflowX?: csstype.Property.OverflowX | undefined;
3377
+ msOverflowY?: csstype.Property.OverflowY | undefined;
3378
+ msScrollChaining?: csstype.Property.MsScrollChaining | undefined;
3379
+ msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax<string | number> | undefined;
3380
+ msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin<string | number> | undefined;
3381
+ msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax<string | number> | undefined;
3382
+ msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin<string | number> | undefined;
3383
+ msScrollRails?: csstype.Property.MsScrollRails | undefined;
3384
+ msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined;
3385
+ msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined;
3386
+ msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined;
3387
+ msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined;
3388
+ msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined;
3389
+ msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined;
3390
+ msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined;
3391
+ msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined;
3392
+ msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined;
3393
+ msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined;
3394
+ msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined;
3395
+ msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined;
3396
+ msTextAutospace?: csstype.Property.MsTextAutospace | undefined;
3397
+ msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined;
3398
+ msTextOverflow?: csstype.Property.TextOverflow | undefined;
3399
+ msTouchAction?: csstype.Property.TouchAction | undefined;
3400
+ msTouchSelect?: csstype.Property.MsTouchSelect | undefined;
3401
+ msTransform?: csstype.Property.Transform | undefined;
3402
+ msTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3403
+ msTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3404
+ msTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3405
+ msTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3406
+ msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3407
+ msUserSelect?: csstype.Property.MsUserSelect | undefined;
3408
+ msWordBreak?: csstype.Property.WordBreak | undefined;
3409
+ msWrapFlow?: csstype.Property.MsWrapFlow | undefined;
3410
+ msWrapMargin?: csstype.Property.MsWrapMargin<string | number> | undefined;
3411
+ msWrapThrough?: csstype.Property.MsWrapThrough | undefined;
3412
+ msWritingMode?: csstype.Property.WritingMode | undefined;
3413
+ WebkitAlignContent?: csstype.Property.AlignContent | undefined;
3414
+ WebkitAlignItems?: csstype.Property.AlignItems | undefined;
3415
+ WebkitAlignSelf?: csstype.Property.AlignSelf | undefined;
3416
+ WebkitAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3417
+ WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3418
+ WebkitAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3419
+ WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3420
+ WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3421
+ WebkitAnimationName?: csstype.Property.AnimationName | undefined;
3422
+ WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3423
+ WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3424
+ WebkitAppearance?: csstype.Property.WebkitAppearance | undefined;
3425
+ WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined;
3426
+ WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3427
+ WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined;
3428
+ WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
3429
+ WebkitBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3430
+ WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined;
3431
+ WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined;
3432
+ WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
3433
+ WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
3434
+ WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
3435
+ WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined;
3436
+ WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
3437
+ WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
3438
+ WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined;
3439
+ WebkitBoxReflect?: csstype.Property.WebkitBoxReflect<string | number> | undefined;
3440
+ WebkitBoxShadow?: csstype.Property.BoxShadow | undefined;
3441
+ WebkitBoxSizing?: csstype.Property.BoxSizing | undefined;
3442
+ WebkitClipPath?: csstype.Property.ClipPath | undefined;
3443
+ WebkitColumnCount?: csstype.Property.ColumnCount | undefined;
3444
+ WebkitColumnFill?: csstype.Property.ColumnFill | undefined;
3445
+ WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined;
3446
+ WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined;
3447
+ WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth<string | number> | undefined;
3448
+ WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined;
3449
+ WebkitColumnWidth?: csstype.Property.ColumnWidth<string | number> | undefined;
3450
+ WebkitFilter?: csstype.Property.Filter | undefined;
3451
+ WebkitFlexBasis?: csstype.Property.FlexBasis<string | number> | undefined;
3452
+ WebkitFlexDirection?: csstype.Property.FlexDirection | undefined;
3453
+ WebkitFlexGrow?: csstype.Property.FlexGrow | undefined;
3454
+ WebkitFlexShrink?: csstype.Property.FlexShrink | undefined;
3455
+ WebkitFlexWrap?: csstype.Property.FlexWrap | undefined;
3456
+ WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined;
3457
+ WebkitFontKerning?: csstype.Property.FontKerning | undefined;
3458
+ WebkitFontSmoothing?: csstype.Property.FontSmooth<string | number> | undefined;
3459
+ WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined;
3460
+ WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined;
3461
+ WebkitHyphens?: csstype.Property.Hyphens | undefined;
3462
+ WebkitInitialLetter?: csstype.Property.InitialLetter | undefined;
3463
+ WebkitJustifyContent?: csstype.Property.JustifyContent | undefined;
3464
+ WebkitLineBreak?: csstype.Property.LineBreak | undefined;
3465
+ WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined;
3466
+ WebkitMarginEnd?: csstype.Property.MarginInlineEnd<string | number> | undefined;
3467
+ WebkitMarginStart?: csstype.Property.MarginInlineStart<string | number> | undefined;
3468
+ WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined;
3469
+ WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset<string | number> | undefined;
3470
+ WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined;
3471
+ WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined;
3472
+ WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined;
3473
+ WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth<string | number> | undefined;
3474
+ WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined;
3475
+ WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined;
3476
+ WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined;
3477
+ WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined;
3478
+ WebkitMaskPosition?: csstype.Property.WebkitMaskPosition<string | number> | undefined;
3479
+ WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX<string | number> | undefined;
3480
+ WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY<string | number> | undefined;
3481
+ WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined;
3482
+ WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined;
3483
+ WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined;
3484
+ WebkitMaskSize?: csstype.Property.WebkitMaskSize<string | number> | undefined;
3485
+ WebkitMaxInlineSize?: csstype.Property.MaxInlineSize<string | number> | undefined;
3486
+ WebkitOrder?: csstype.Property.Order | undefined;
3487
+ WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined;
3488
+ WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd<string | number> | undefined;
3489
+ WebkitPaddingStart?: csstype.Property.PaddingInlineStart<string | number> | undefined;
3490
+ WebkitPerspective?: csstype.Property.Perspective<string | number> | undefined;
3491
+ WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3492
+ WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined;
3493
+ WebkitRubyPosition?: csstype.Property.RubyPosition | undefined;
3494
+ WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined;
3495
+ WebkitShapeMargin?: csstype.Property.ShapeMargin<string | number> | undefined;
3496
+ WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined;
3497
+ WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined;
3498
+ WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3499
+ WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3500
+ WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined;
3501
+ WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3502
+ WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined;
3503
+ WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined;
3504
+ WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined;
3505
+ WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined;
3506
+ WebkitTextOrientation?: csstype.Property.TextOrientation | undefined;
3507
+ WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined;
3508
+ WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined;
3509
+ WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
3510
+ WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined;
3511
+ WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined;
3512
+ WebkitTransform?: csstype.Property.Transform | undefined;
3513
+ WebkitTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3514
+ WebkitTransformStyle?: csstype.Property.TransformStyle | undefined;
3515
+ WebkitTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3516
+ WebkitTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3517
+ WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3518
+ WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3519
+ WebkitUserModify?: csstype.Property.WebkitUserModify | undefined;
3520
+ WebkitUserSelect?: csstype.Property.UserSelect | undefined;
3521
+ WebkitWritingMode?: csstype.Property.WritingMode | undefined;
3522
+ MozAnimation?: csstype.Property.Animation<string & {}> | undefined;
3523
+ MozBorderImage?: csstype.Property.BorderImage | undefined;
3524
+ MozColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3525
+ MozColumns?: csstype.Property.Columns<string | number> | undefined;
3526
+ MozOutlineRadius?: csstype.Property.MozOutlineRadius<string | number> | undefined;
3527
+ msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined;
3528
+ msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined;
3529
+ msFlex?: csstype.Property.Flex<string | number> | undefined;
3530
+ msScrollLimit?: csstype.Property.MsScrollLimit | undefined;
3531
+ msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined;
3532
+ msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined;
3533
+ msTransition?: csstype.Property.Transition<string & {}> | undefined;
3534
+ WebkitAnimation?: csstype.Property.Animation<string & {}> | undefined;
3535
+ WebkitBorderBefore?: csstype.Property.WebkitBorderBefore<string | number> | undefined;
3536
+ WebkitBorderImage?: csstype.Property.BorderImage | undefined;
3537
+ WebkitBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3538
+ WebkitColumnRule?: csstype.Property.ColumnRule<string | number> | undefined;
3539
+ WebkitColumns?: csstype.Property.Columns<string | number> | undefined;
3540
+ WebkitFlex?: csstype.Property.Flex<string | number> | undefined;
3541
+ WebkitFlexFlow?: csstype.Property.FlexFlow | undefined;
3542
+ WebkitMask?: csstype.Property.WebkitMask<string | number> | undefined;
3543
+ WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined;
3544
+ WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined;
3545
+ WebkitTextStroke?: csstype.Property.WebkitTextStroke<string | number> | undefined;
3546
+ WebkitTransition?: csstype.Property.Transition<string & {}> | undefined;
3547
+ azimuth?: csstype.Property.Azimuth | undefined;
3548
+ boxAlign?: csstype.Property.BoxAlign | undefined;
3549
+ boxDirection?: csstype.Property.BoxDirection | undefined;
3550
+ boxFlex?: csstype.Property.BoxFlex | undefined;
3551
+ boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3552
+ boxLines?: csstype.Property.BoxLines | undefined;
3553
+ boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3554
+ boxOrient?: csstype.Property.BoxOrient | undefined;
3555
+ boxPack?: csstype.Property.BoxPack | undefined;
3556
+ clip?: csstype.Property.Clip | undefined;
3557
+ gridColumnGap?: csstype.Property.GridColumnGap<string | number> | undefined;
3558
+ gridGap?: csstype.Property.GridGap<string | number> | undefined;
3559
+ gridRowGap?: csstype.Property.GridRowGap<string | number> | undefined;
3560
+ imeMode?: csstype.Property.ImeMode | undefined;
3561
+ offsetBlock?: csstype.Property.InsetBlock<string | number> | undefined;
3562
+ offsetBlockEnd?: csstype.Property.InsetBlockEnd<string | number> | undefined;
3563
+ offsetBlockStart?: csstype.Property.InsetBlockStart<string | number> | undefined;
3564
+ offsetInline?: csstype.Property.InsetInline<string | number> | undefined;
3565
+ offsetInlineEnd?: csstype.Property.InsetInlineEnd<string | number> | undefined;
3566
+ offsetInlineStart?: csstype.Property.InsetInlineStart<string | number> | undefined;
3567
+ scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
3568
+ scrollSnapDestination?: csstype.Property.ScrollSnapDestination<string | number> | undefined;
3569
+ scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined;
3570
+ scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined;
3571
+ scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined;
3572
+ scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined;
3573
+ KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined;
3574
+ KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined;
3575
+ KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined;
3576
+ KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3577
+ KhtmlBoxLines?: csstype.Property.BoxLines | undefined;
3578
+ KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3579
+ KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined;
3580
+ KhtmlBoxPack?: csstype.Property.BoxPack | undefined;
3581
+ KhtmlLineBreak?: csstype.Property.LineBreak | undefined;
3582
+ KhtmlOpacity?: csstype.Property.Opacity | undefined;
3583
+ KhtmlUserSelect?: csstype.Property.UserSelect | undefined;
3584
+ MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined;
3585
+ MozBackgroundClip?: csstype.Property.BackgroundClip | undefined;
3586
+ MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined;
3587
+ MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined;
3588
+ MozBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3589
+ MozBorderRadius?: csstype.Property.BorderRadius<string | number> | undefined;
3590
+ MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
3591
+ MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius<string | number> | undefined;
3592
+ MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius<string | number> | undefined;
3593
+ MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius<string | number> | undefined;
3594
+ MozBoxAlign?: csstype.Property.BoxAlign | undefined;
3595
+ MozBoxDirection?: csstype.Property.BoxDirection | undefined;
3596
+ MozBoxFlex?: csstype.Property.BoxFlex | undefined;
3597
+ MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3598
+ MozBoxOrient?: csstype.Property.BoxOrient | undefined;
3599
+ MozBoxPack?: csstype.Property.BoxPack | undefined;
3600
+ MozBoxShadow?: csstype.Property.BoxShadow | undefined;
3601
+ MozFloatEdge?: csstype.Property.MozFloatEdge | undefined;
3602
+ MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined;
3603
+ MozOpacity?: csstype.Property.Opacity | undefined;
3604
+ MozOutline?: csstype.Property.Outline<string | number> | undefined;
3605
+ MozOutlineColor?: csstype.Property.OutlineColor | undefined;
3606
+ MozOutlineStyle?: csstype.Property.OutlineStyle | undefined;
3607
+ MozOutlineWidth?: csstype.Property.OutlineWidth<string | number> | undefined;
3608
+ MozPerspective?: csstype.Property.Perspective<string | number> | undefined;
3609
+ MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin<string | number> | undefined;
3610
+ MozTextAlignLast?: csstype.Property.TextAlignLast | undefined;
3611
+ MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined;
3612
+ MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined;
3613
+ MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined;
3614
+ MozTransform?: csstype.Property.Transform | undefined;
3615
+ MozTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3616
+ MozTransformStyle?: csstype.Property.TransformStyle | undefined;
3617
+ MozTransition?: csstype.Property.Transition<string & {}> | undefined;
3618
+ MozTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3619
+ MozTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3620
+ MozTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3621
+ MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3622
+ MozUserInput?: csstype.Property.MozUserInput | undefined;
3623
+ msImeMode?: csstype.Property.ImeMode | undefined;
3624
+ OAnimation?: csstype.Property.Animation<string & {}> | undefined;
3625
+ OAnimationDelay?: csstype.Property.AnimationDelay<string & {}> | undefined;
3626
+ OAnimationDirection?: csstype.Property.AnimationDirection | undefined;
3627
+ OAnimationDuration?: csstype.Property.AnimationDuration<string & {}> | undefined;
3628
+ OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined;
3629
+ OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined;
3630
+ OAnimationName?: csstype.Property.AnimationName | undefined;
3631
+ OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined;
3632
+ OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined;
3633
+ OBackgroundSize?: csstype.Property.BackgroundSize<string | number> | undefined;
3634
+ OBorderImage?: csstype.Property.BorderImage | undefined;
3635
+ OObjectFit?: csstype.Property.ObjectFit | undefined;
3636
+ OObjectPosition?: csstype.Property.ObjectPosition<string | number> | undefined;
3637
+ OTabSize?: csstype.Property.TabSize<string | number> | undefined;
3638
+ OTextOverflow?: csstype.Property.TextOverflow | undefined;
3639
+ OTransform?: csstype.Property.Transform | undefined;
3640
+ OTransformOrigin?: csstype.Property.TransformOrigin<string | number> | undefined;
3641
+ OTransition?: csstype.Property.Transition<string & {}> | undefined;
3642
+ OTransitionDelay?: csstype.Property.TransitionDelay<string & {}> | undefined;
3643
+ OTransitionDuration?: csstype.Property.TransitionDuration<string & {}> | undefined;
3644
+ OTransitionProperty?: csstype.Property.TransitionProperty | undefined;
3645
+ OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined;
3646
+ WebkitBoxAlign?: csstype.Property.BoxAlign | undefined;
3647
+ WebkitBoxDirection?: csstype.Property.BoxDirection | undefined;
3648
+ WebkitBoxFlex?: csstype.Property.BoxFlex | undefined;
3649
+ WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined;
3650
+ WebkitBoxLines?: csstype.Property.BoxLines | undefined;
3651
+ WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined;
3652
+ WebkitBoxOrient?: csstype.Property.BoxOrient | undefined;
3653
+ WebkitBoxPack?: csstype.Property.BoxPack | undefined;
3654
+ alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined;
3655
+ baselineShift?: csstype.Property.BaselineShift<string | number> | undefined;
3656
+ clipRule?: csstype.Property.ClipRule | undefined;
3657
+ colorInterpolation?: csstype.Property.ColorInterpolation | undefined;
3658
+ colorRendering?: csstype.Property.ColorRendering | undefined;
3659
+ dominantBaseline?: csstype.Property.DominantBaseline | undefined;
3660
+ fill?: csstype.Property.Fill | undefined;
3661
+ fillOpacity?: csstype.Property.FillOpacity | undefined;
3662
+ fillRule?: csstype.Property.FillRule | undefined;
3663
+ floodColor?: csstype.Property.FloodColor | undefined;
3664
+ floodOpacity?: csstype.Property.FloodOpacity | undefined;
3665
+ glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined;
3666
+ lightingColor?: csstype.Property.LightingColor | undefined;
3667
+ marker?: csstype.Property.Marker | undefined;
3668
+ markerEnd?: csstype.Property.MarkerEnd | undefined;
3669
+ markerMid?: csstype.Property.MarkerMid | undefined;
3670
+ markerStart?: csstype.Property.MarkerStart | undefined;
3671
+ shapeRendering?: csstype.Property.ShapeRendering | undefined;
3672
+ stopColor?: csstype.Property.StopColor | undefined;
3673
+ stopOpacity?: csstype.Property.StopOpacity | undefined;
3674
+ stroke?: csstype.Property.Stroke | undefined;
3675
+ strokeDasharray?: csstype.Property.StrokeDasharray<string | number> | undefined;
3676
+ strokeDashoffset?: csstype.Property.StrokeDashoffset<string | number> | undefined;
3677
+ strokeLinecap?: csstype.Property.StrokeLinecap | undefined;
3678
+ strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined;
3679
+ strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined;
3680
+ strokeOpacity?: csstype.Property.StrokeOpacity | undefined;
3681
+ strokeWidth?: csstype.Property.StrokeWidth<string | number> | undefined;
3682
+ textAnchor?: csstype.Property.TextAnchor | undefined;
3683
+ vectorEffect?: csstype.Property.VectorEffect | undefined;
3684
+ };
3685
+ }, HTMLElement>;
3686
+ context: unknown;
3687
+ setState<K extends "showPreview">(state: StormcloudPlayerState | ((prevState: Readonly<StormcloudPlayerState>, props: Readonly<StormcloudPlayerProps>) => StormcloudPlayerState | Pick<StormcloudPlayerState, K> | null) | Pick<StormcloudPlayerState, K> | null, callback?: (() => void) | undefined): void;
3688
+ forceUpdate(callback?: (() => void) | undefined): void;
3689
+ readonly props: Readonly<StormcloudPlayerProps>;
3690
+ refs: {
3691
+ [key: string]: React.ReactInstance;
3692
+ };
3693
+ componentDidMount?(): void;
3694
+ shouldComponentUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): boolean;
3695
+ componentWillUnmount?(): void;
3696
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
3697
+ getSnapshotBeforeUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>): any;
3698
+ componentDidUpdate?(prevProps: Readonly<StormcloudPlayerProps>, prevState: Readonly<StormcloudPlayerState>, snapshot?: any): void;
3699
+ componentWillMount?(): void;
3700
+ UNSAFE_componentWillMount?(): void;
3701
+ componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
3702
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<StormcloudPlayerProps>, nextContext: any): void;
3703
+ componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
3704
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<StormcloudPlayerProps>, nextState: Readonly<StormcloudPlayerState>, nextContext: any): void;
3705
+ };
3706
+ displayName: string;
3707
+ defaultProps: {
3708
+ fallback: null;
3709
+ wrapper: string;
3710
+ };
3711
+ addCustomPlayer: (player: PlayerConfig) => void;
3712
+ removeCustomPlayers: () => void;
3713
+ canPlay: (src: string) => boolean;
3714
+ canEnablePIP: (src: string) => boolean;
3715
+ contextType?: React.Context<any> | undefined;
3716
+ };
3717
+
3718
+ declare const canPlay: {
3719
+ hls: (url: string) => boolean;
3720
+ dash: (url: string) => boolean;
3721
+ video: (url: string) => boolean;
3722
+ audio: (url: string) => boolean;
3723
+ file: (url: string) => boolean;
3724
+ };
3725
+
3726
+ declare const lazy: typeof lazy$1;
3727
+ declare const omit: <T extends Record<string, any>, K extends keyof T>(object: T, keys: K[]) => Omit<T, K>;
3728
+ declare const isMediaStream: (url: any) => url is MediaStream;
3729
+ declare const supportsWebKitPresentationMode: () => boolean;
3730
+ declare const randomString: () => string;
3731
+ declare const parseQuery: (url: string) => Record<string, string>;
3732
+ declare const merge: <T extends Record<string, any>>(target: T, ...sources: Partial<T>[]) => T;
3733
+ declare const IS_BROWSER: false | Document;
3734
+ declare const IS_GLOBAL: false | Document;
3735
+ declare const IS_IOS: boolean;
3736
+ declare const IS_SAFARI: boolean;
3737
+ declare const SUPPORTS_HLS: () => boolean;
3738
+ declare const SUPPORTS_DASH: () => boolean;
3739
+
151
3740
  declare function getClientInfo(): ClientInfo;
152
3741
  declare function getBrowserID(clientInfo: ClientInfo): Promise<string>;
153
3742
  declare function sendInitialTracking(licenseKey?: string): Promise<void>;
154
3743
  declare function sendHeartbeat(licenseKey?: string): Promise<void>;
155
3744
 
156
- export { type AdBreak, type AdSchedule, type ClientInfo, type HeartbeatData, type LateJoinPolicy, StormcloudVideoPlayer, StormcloudVideoPlayerComponent, type StormcloudVideoPlayerConfig, type StormcloudVideoPlayerProps, type TrackingData, getBrowserID, getClientInfo, sendHeartbeat, sendInitialTracking };
3745
+ export { type AdBreak, type AdSchedule, type BaseStormcloudPlayerProps, type ClientInfo, type HeartbeatData, IS_BROWSER, IS_GLOBAL, IS_IOS, IS_SAFARI, type LateJoinPolicy, type OnProgressProps, SUPPORTS_DASH, SUPPORTS_HLS, StormcloudPlayer, StormcloudVideoPlayer, StormcloudVideoPlayerComponent, type StormcloudVideoPlayerConfig, type StormcloudVideoPlayerProps, type TrackingData, canPlay, createStormcloudPlayer, StormcloudVideoPlayerComponent as default, getBrowserID, getClientInfo, isMediaStream, lazy, merge, omit, parseQuery, players, randomString, sendHeartbeat, sendInitialTracking, supportsWebKitPresentationMode };