stormcloud-video-player 0.8.61 → 0.8.62

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