@spark-web/text-input 0.0.0-snapshot-release-20260409001813
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/CHANGELOG.md +993 -0
- package/CLAUDE.md +106 -0
- package/README.md +114 -0
- package/dist/declarations/src/children-to-adornments.d.ts +12 -0
- package/dist/declarations/src/index.d.ts +6 -0
- package/dist/declarations/src/input-adornment.d.ts +46 -0
- package/dist/declarations/src/input-container.d.ts +10 -0
- package/dist/declarations/src/text-input.d.ts +3012 -0
- package/dist/spark-web-text-input.cjs.d.ts +2 -0
- package/dist/spark-web-text-input.cjs.dev.js +282 -0
- package/dist/spark-web-text-input.cjs.js +7 -0
- package/dist/spark-web-text-input.cjs.prod.js +282 -0
- package/dist/spark-web-text-input.esm.js +275 -0
- package/package.json +40 -0
|
@@ -0,0 +1,3012 @@
|
|
|
1
|
+
import type { FieldState } from '@spark-web/field';
|
|
2
|
+
import type { TextOverflowStrategy } from '@spark-web/text';
|
|
3
|
+
import type { DataAttributeMap } from '@spark-web/utils/internal';
|
|
4
|
+
import type { InputHTMLAttributes } from 'react';
|
|
5
|
+
import type { AdornmentsAsChildren } from "./children-to-adornments.js";
|
|
6
|
+
type ValidTypes = 'text' | 'password' | 'email' | 'search' | 'number' | 'tel' | 'url';
|
|
7
|
+
type ValidModes = 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
8
|
+
type NativeInputProps = Pick<InputHTMLAttributes<HTMLInputElement>, 'name' | 'onBlur' | 'onChange' | 'onFocus' | 'onInput' | 'placeholder' | 'value' | 'required' | 'autoComplete'>;
|
|
9
|
+
export type TextInputProps = {
|
|
10
|
+
/** Sets data attributes for the element. */
|
|
11
|
+
data?: DataAttributeMap;
|
|
12
|
+
/**
|
|
13
|
+
* How an input behaves varies considerably depending on the value of its type
|
|
14
|
+
* attribute. If this attribute is not specified, the default type "text".
|
|
15
|
+
*/
|
|
16
|
+
type?: ValidTypes;
|
|
17
|
+
/** Sets the input mode attribute for the component. */
|
|
18
|
+
inputMode?: ValidModes;
|
|
19
|
+
/**
|
|
20
|
+
* Adorn the input with ornamental element(s) to aid user input, or
|
|
21
|
+
* interactive element(s) to augment user input. Each child **must** be
|
|
22
|
+
* wrapped with the `InputAdornment` component to ensure proper layout,
|
|
23
|
+
* otherwise it will not be rendered.
|
|
24
|
+
*/
|
|
25
|
+
children?: AdornmentsAsChildren;
|
|
26
|
+
/** Manage how text behaves with regard to overflow. */
|
|
27
|
+
overflowStrategy?: TextOverflowStrategy;
|
|
28
|
+
} & NativeInputProps;
|
|
29
|
+
/** Organize and emphasize information quickly and effectively in a list of text elements. */
|
|
30
|
+
export declare const TextInput: import("react").ForwardRefExoticComponent<{
|
|
31
|
+
/** Sets data attributes for the element. */
|
|
32
|
+
data?: DataAttributeMap;
|
|
33
|
+
/**
|
|
34
|
+
* How an input behaves varies considerably depending on the value of its type
|
|
35
|
+
* attribute. If this attribute is not specified, the default type "text".
|
|
36
|
+
*/
|
|
37
|
+
type?: ValidTypes;
|
|
38
|
+
/** Sets the input mode attribute for the component. */
|
|
39
|
+
inputMode?: ValidModes;
|
|
40
|
+
/**
|
|
41
|
+
* Adorn the input with ornamental element(s) to aid user input, or
|
|
42
|
+
* interactive element(s) to augment user input. Each child **must** be
|
|
43
|
+
* wrapped with the `InputAdornment` component to ensure proper layout,
|
|
44
|
+
* otherwise it will not be rendered.
|
|
45
|
+
*/
|
|
46
|
+
children?: AdornmentsAsChildren;
|
|
47
|
+
/** Manage how text behaves with regard to overflow. */
|
|
48
|
+
overflowStrategy?: TextOverflowStrategy;
|
|
49
|
+
} & NativeInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
50
|
+
export type UseInputStylesProps = FieldState & {
|
|
51
|
+
startAdornment?: boolean;
|
|
52
|
+
endAdornment?: boolean;
|
|
53
|
+
readOnly?: boolean;
|
|
54
|
+
overflowStrategy?: TextOverflowStrategy;
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Returns a tuple where the first item is an object of props to spread onto the
|
|
58
|
+
* underlying Box component that our inputs are created with, and the second
|
|
59
|
+
* item is a CSS object to be passed to Emotion's `css` function
|
|
60
|
+
**/
|
|
61
|
+
export declare const useInputStyles: ({ disabled, startAdornment, endAdornment, readOnly, overflowStrategy, }: UseInputStylesProps) => readonly [{
|
|
62
|
+
readonly flex: 1;
|
|
63
|
+
readonly position: "relative";
|
|
64
|
+
readonly height: "medium";
|
|
65
|
+
readonly paddingLeft: "none" | "medium";
|
|
66
|
+
readonly paddingRight: "none" | "medium";
|
|
67
|
+
readonly width: "full";
|
|
68
|
+
}, {
|
|
69
|
+
readonly ':enabled': {
|
|
70
|
+
readonly ':focus + [data-focus-indicator]': {
|
|
71
|
+
boxShadow?: string;
|
|
72
|
+
outline?: string;
|
|
73
|
+
outlineOffset?: string;
|
|
74
|
+
} | {
|
|
75
|
+
boxShadow: string;
|
|
76
|
+
outline: string;
|
|
77
|
+
outlineOffset: string;
|
|
78
|
+
borderColor: string;
|
|
79
|
+
} | {
|
|
80
|
+
"[data-brighte-focus-visible] &": {
|
|
81
|
+
boxShadow: string;
|
|
82
|
+
};
|
|
83
|
+
outline: string;
|
|
84
|
+
outlineOffset: string;
|
|
85
|
+
borderColor: string;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
readonly ':focus': {
|
|
89
|
+
readonly outline: "none";
|
|
90
|
+
};
|
|
91
|
+
readonly '&[aria-invalid=true]': {
|
|
92
|
+
readonly color: string;
|
|
93
|
+
};
|
|
94
|
+
readonly accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
|
|
95
|
+
readonly alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
|
|
96
|
+
readonly alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
|
|
97
|
+
readonly alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
|
|
98
|
+
readonly alignTracks?: readonly string[] | import("csstype").Property.AlignTracks | readonly import("csstype").Property.AlignTracks[] | undefined;
|
|
99
|
+
readonly animationComposition?: readonly string[] | import("csstype").Property.AnimationComposition | readonly import("csstype").Property.AnimationComposition[] | undefined;
|
|
100
|
+
readonly animationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
101
|
+
readonly animationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
102
|
+
readonly animationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
103
|
+
readonly animationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
104
|
+
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
105
|
+
readonly animationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
106
|
+
readonly animationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
107
|
+
readonly animationRangeEnd?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined;
|
|
108
|
+
readonly animationRangeStart?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined;
|
|
109
|
+
readonly animationTimeline?: readonly string[] | import("csstype").Property.AnimationTimeline | readonly import("csstype").Property.AnimationTimeline[] | undefined;
|
|
110
|
+
readonly animationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
111
|
+
readonly appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
|
|
112
|
+
readonly aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
|
|
113
|
+
readonly backdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
|
|
114
|
+
readonly backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
115
|
+
readonly backgroundAttachment?: readonly string[] | import("csstype").Property.BackgroundAttachment | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
|
|
116
|
+
readonly backgroundBlendMode?: readonly string[] | import("csstype").Property.BackgroundBlendMode | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
|
|
117
|
+
readonly backgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
118
|
+
readonly backgroundColor?: readonly string[] | import("csstype").Property.BackgroundColor | readonly import("csstype").Property.BackgroundColor[] | undefined;
|
|
119
|
+
readonly backgroundImage?: readonly string[] | import("csstype").Property.BackgroundImage | readonly import("csstype").Property.BackgroundImage[] | undefined;
|
|
120
|
+
readonly backgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
121
|
+
readonly backgroundPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined;
|
|
122
|
+
readonly backgroundPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined;
|
|
123
|
+
readonly backgroundRepeat?: readonly string[] | import("csstype").Property.BackgroundRepeat | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
124
|
+
readonly backgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
125
|
+
readonly blockOverflow?: readonly string[] | import("csstype").Property.BlockOverflow | readonly import("csstype").Property.BlockOverflow[] | undefined;
|
|
126
|
+
readonly blockSize?: readonly (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
|
|
127
|
+
readonly borderBlockColor?: readonly string[] | import("csstype").Property.BorderBlockColor | readonly import("csstype").Property.BorderBlockColor[] | undefined;
|
|
128
|
+
readonly borderBlockEndColor?: readonly string[] | import("csstype").Property.BorderBlockEndColor | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
129
|
+
readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
130
|
+
readonly borderBlockEndWidth?: readonly string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
|
|
131
|
+
readonly borderBlockStartColor?: readonly string[] | import("csstype").Property.BorderBlockStartColor | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
132
|
+
readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
133
|
+
readonly borderBlockStartWidth?: readonly string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
|
|
134
|
+
readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
135
|
+
readonly borderBlockWidth?: readonly string[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
|
|
136
|
+
readonly borderBottomColor?: readonly string[] | import("csstype").Property.BorderBottomColor | readonly import("csstype").Property.BorderBottomColor[] | undefined;
|
|
137
|
+
readonly borderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
138
|
+
readonly borderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
139
|
+
readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
140
|
+
readonly borderBottomWidth?: readonly string[] | import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
|
|
141
|
+
readonly borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
|
|
142
|
+
readonly borderEndEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined;
|
|
143
|
+
readonly borderEndStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined;
|
|
144
|
+
readonly borderImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined;
|
|
145
|
+
readonly borderImageRepeat?: readonly string[] | import("csstype").Property.BorderImageRepeat | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
146
|
+
readonly borderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
|
|
147
|
+
readonly borderImageSource?: readonly string[] | import("csstype").Property.BorderImageSource | readonly import("csstype").Property.BorderImageSource[] | undefined;
|
|
148
|
+
readonly borderImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined;
|
|
149
|
+
readonly borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
|
|
150
|
+
readonly borderInlineEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
151
|
+
readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
152
|
+
readonly borderInlineEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
|
|
153
|
+
readonly borderInlineStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
154
|
+
readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
155
|
+
readonly borderInlineStartWidth?: readonly string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
|
|
156
|
+
readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
157
|
+
readonly borderInlineWidth?: readonly string[] | import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
|
|
158
|
+
readonly borderLeftColor?: readonly string[] | import("csstype").Property.BorderLeftColor | readonly import("csstype").Property.BorderLeftColor[] | undefined;
|
|
159
|
+
readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
160
|
+
readonly borderLeftWidth?: readonly string[] | import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
|
|
161
|
+
readonly borderRightColor?: readonly string[] | import("csstype").Property.BorderRightColor | readonly import("csstype").Property.BorderRightColor[] | undefined;
|
|
162
|
+
readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
|
|
163
|
+
readonly borderRightWidth?: readonly string[] | import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
|
|
164
|
+
readonly borderSpacing?: readonly (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined;
|
|
165
|
+
readonly borderStartEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
|
|
166
|
+
readonly borderStartStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
|
|
167
|
+
readonly borderTopColor?: readonly string[] | import("csstype").Property.BorderTopColor | readonly import("csstype").Property.BorderTopColor[] | undefined;
|
|
168
|
+
readonly borderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
169
|
+
readonly borderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
170
|
+
readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
|
|
171
|
+
readonly borderTopWidth?: readonly string[] | import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
|
|
172
|
+
readonly bottom?: readonly (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined;
|
|
173
|
+
readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
174
|
+
readonly boxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
175
|
+
readonly boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
176
|
+
readonly breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
|
|
177
|
+
readonly breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
|
|
178
|
+
readonly breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
|
|
179
|
+
readonly captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
|
|
180
|
+
readonly caretColor?: readonly string[] | import("csstype").Property.CaretColor | readonly import("csstype").Property.CaretColor[] | undefined;
|
|
181
|
+
readonly caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
|
|
182
|
+
readonly clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
|
|
183
|
+
readonly clipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
|
|
184
|
+
readonly color?: readonly string[] | import("csstype").Property.Color | readonly import("csstype").Property.Color[] | undefined;
|
|
185
|
+
readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
186
|
+
readonly colorScheme?: readonly string[] | import("csstype").Property.ColorScheme | readonly import("csstype").Property.ColorScheme[] | undefined;
|
|
187
|
+
readonly columnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
188
|
+
readonly columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
189
|
+
readonly columnGap?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined;
|
|
190
|
+
readonly columnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
191
|
+
readonly columnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
192
|
+
readonly columnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
193
|
+
readonly columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
|
|
194
|
+
readonly columnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
195
|
+
readonly contain?: readonly string[] | import("csstype").Property.Contain | readonly import("csstype").Property.Contain[] | undefined;
|
|
196
|
+
readonly containIntrinsicBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined;
|
|
197
|
+
readonly containIntrinsicHeight?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined;
|
|
198
|
+
readonly containIntrinsicInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined;
|
|
199
|
+
readonly containIntrinsicWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined;
|
|
200
|
+
readonly containerName?: readonly string[] | import("csstype").Property.ContainerName | readonly import("csstype").Property.ContainerName[] | undefined;
|
|
201
|
+
readonly containerType?: import("csstype").Property.ContainerType | readonly NonNullable<import("csstype").Property.ContainerType | undefined>[] | readonly import("csstype").Property.ContainerType[] | undefined;
|
|
202
|
+
readonly content?: readonly string[] | import("csstype").Property.Content | readonly import("csstype").Property.Content[] | undefined;
|
|
203
|
+
readonly contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
|
|
204
|
+
readonly counterIncrement?: readonly string[] | import("csstype").Property.CounterIncrement | readonly import("csstype").Property.CounterIncrement[] | undefined;
|
|
205
|
+
readonly counterReset?: readonly string[] | import("csstype").Property.CounterReset | readonly import("csstype").Property.CounterReset[] | undefined;
|
|
206
|
+
readonly counterSet?: readonly string[] | import("csstype").Property.CounterSet | readonly import("csstype").Property.CounterSet[] | undefined;
|
|
207
|
+
readonly cursor?: readonly string[] | import("csstype").Property.Cursor | readonly import("csstype").Property.Cursor[] | undefined;
|
|
208
|
+
readonly direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
|
|
209
|
+
readonly display?: readonly string[] | import("csstype").Property.Display | readonly import("csstype").Property.Display[] | undefined;
|
|
210
|
+
readonly emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
|
|
211
|
+
readonly filter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
|
|
212
|
+
readonly flexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
|
|
213
|
+
readonly flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
214
|
+
readonly flexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
215
|
+
readonly flexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
|
|
216
|
+
readonly flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
|
|
217
|
+
readonly float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
|
|
218
|
+
readonly fontFamily?: readonly string[] | import("csstype").Property.FontFamily | readonly import("csstype").Property.FontFamily[] | undefined;
|
|
219
|
+
readonly fontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
220
|
+
readonly fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
|
|
221
|
+
readonly fontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
222
|
+
readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
|
|
223
|
+
readonly fontPalette?: readonly string[] | import("csstype").Property.FontPalette | readonly import("csstype").Property.FontPalette[] | undefined;
|
|
224
|
+
readonly fontSize?: readonly (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined;
|
|
225
|
+
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals | "from-font")[] | undefined;
|
|
226
|
+
readonly fontSmooth?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
227
|
+
readonly fontStretch?: readonly string[] | import("csstype").Property.FontStretch | readonly import("csstype").Property.FontStretch[] | undefined;
|
|
228
|
+
readonly fontStyle?: readonly string[] | import("csstype").Property.FontStyle | readonly import("csstype").Property.FontStyle[] | undefined;
|
|
229
|
+
readonly fontSynthesis?: readonly string[] | import("csstype").Property.FontSynthesis | readonly import("csstype").Property.FontSynthesis[] | undefined;
|
|
230
|
+
readonly fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
|
|
231
|
+
readonly fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
|
|
232
|
+
readonly fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
|
|
233
|
+
readonly fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
|
|
234
|
+
readonly fontVariant?: readonly string[] | import("csstype").Property.FontVariant | readonly import("csstype").Property.FontVariant[] | undefined;
|
|
235
|
+
readonly fontVariantAlternates?: readonly string[] | import("csstype").Property.FontVariantAlternates | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
|
|
236
|
+
readonly fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
|
|
237
|
+
readonly fontVariantEastAsian?: readonly string[] | import("csstype").Property.FontVariantEastAsian | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
|
|
238
|
+
readonly fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
|
|
239
|
+
readonly fontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
240
|
+
readonly fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
241
|
+
readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
|
|
242
|
+
readonly fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[] | undefined;
|
|
243
|
+
readonly fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ("bold" | (string & {}) | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
|
|
244
|
+
readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
245
|
+
readonly gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined;
|
|
246
|
+
readonly gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[] | undefined;
|
|
247
|
+
readonly gridAutoRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined;
|
|
248
|
+
readonly gridColumnEnd?: import("csstype").Property.GridColumnEnd | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined;
|
|
249
|
+
readonly gridColumnStart?: import("csstype").Property.GridColumnStart | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined;
|
|
250
|
+
readonly gridRowEnd?: import("csstype").Property.GridRowEnd | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined;
|
|
251
|
+
readonly gridRowStart?: import("csstype").Property.GridRowStart | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined;
|
|
252
|
+
readonly gridTemplateAreas?: readonly string[] | import("csstype").Property.GridTemplateAreas | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
253
|
+
readonly gridTemplateColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
|
|
254
|
+
readonly gridTemplateRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined;
|
|
255
|
+
readonly hangingPunctuation?: readonly string[] | import("csstype").Property.HangingPunctuation | readonly import("csstype").Property.HangingPunctuation[] | undefined;
|
|
256
|
+
readonly height?: readonly (string | (string & {}))[] | import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined;
|
|
257
|
+
readonly hyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
258
|
+
readonly hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined;
|
|
259
|
+
readonly hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
260
|
+
readonly imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[] | undefined;
|
|
261
|
+
readonly imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
|
|
262
|
+
readonly imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[] | undefined;
|
|
263
|
+
readonly initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
|
|
264
|
+
readonly inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
|
|
265
|
+
readonly inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity | undefined>[] | readonly import("csstype").Property.InputSecurity[] | undefined;
|
|
266
|
+
readonly insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
|
|
267
|
+
readonly insetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
|
|
268
|
+
readonly insetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
|
|
269
|
+
readonly insetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
|
|
270
|
+
readonly isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
|
|
271
|
+
readonly justifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
|
|
272
|
+
readonly justifyItems?: readonly string[] | import("csstype").Property.JustifyItems | readonly import("csstype").Property.JustifyItems[] | undefined;
|
|
273
|
+
readonly justifySelf?: readonly string[] | import("csstype").Property.JustifySelf | readonly import("csstype").Property.JustifySelf[] | undefined;
|
|
274
|
+
readonly justifyTracks?: readonly string[] | import("csstype").Property.JustifyTracks | readonly import("csstype").Property.JustifyTracks[] | undefined;
|
|
275
|
+
readonly left?: readonly (string | (string & {}))[] | import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined;
|
|
276
|
+
readonly letterSpacing?: readonly string[] | import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
|
|
277
|
+
readonly lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
278
|
+
readonly lineHeight?: readonly (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined;
|
|
279
|
+
readonly lineHeightStep?: readonly string[] | import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
|
|
280
|
+
readonly listStyleImage?: readonly string[] | import("csstype").Property.ListStyleImage | readonly import("csstype").Property.ListStyleImage[] | undefined;
|
|
281
|
+
readonly listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
|
|
282
|
+
readonly listStyleType?: readonly string[] | import("csstype").Property.ListStyleType | readonly import("csstype").Property.ListStyleType[] | undefined;
|
|
283
|
+
readonly marginBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined;
|
|
284
|
+
readonly marginBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined;
|
|
285
|
+
readonly marginBottom?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined;
|
|
286
|
+
readonly marginInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
287
|
+
readonly marginInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
288
|
+
readonly marginLeft?: readonly (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined;
|
|
289
|
+
readonly marginRight?: readonly (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined;
|
|
290
|
+
readonly marginTop?: readonly (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined;
|
|
291
|
+
readonly marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
|
|
292
|
+
readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
|
|
293
|
+
readonly maskBorderOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
|
|
294
|
+
readonly maskBorderRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
295
|
+
readonly maskBorderSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
|
|
296
|
+
readonly maskBorderSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
|
|
297
|
+
readonly maskBorderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
|
|
298
|
+
readonly maskClip?: readonly string[] | import("csstype").Property.MaskClip | readonly import("csstype").Property.MaskClip[] | undefined;
|
|
299
|
+
readonly maskComposite?: readonly string[] | import("csstype").Property.MaskComposite | readonly import("csstype").Property.MaskComposite[] | undefined;
|
|
300
|
+
readonly maskImage?: readonly string[] | import("csstype").Property.MaskImage | readonly import("csstype").Property.MaskImage[] | undefined;
|
|
301
|
+
readonly maskMode?: readonly string[] | import("csstype").Property.MaskMode | readonly import("csstype").Property.MaskMode[] | undefined;
|
|
302
|
+
readonly maskOrigin?: readonly string[] | import("csstype").Property.MaskOrigin | readonly import("csstype").Property.MaskOrigin[] | undefined;
|
|
303
|
+
readonly maskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined;
|
|
304
|
+
readonly maskRepeat?: readonly string[] | import("csstype").Property.MaskRepeat | readonly import("csstype").Property.MaskRepeat[] | undefined;
|
|
305
|
+
readonly maskSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined;
|
|
306
|
+
readonly maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
|
|
307
|
+
readonly masonryAutoFlow?: readonly string[] | import("csstype").Property.MasonryAutoFlow | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
|
|
308
|
+
readonly mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "auto-add")[] | undefined;
|
|
309
|
+
readonly mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
|
|
310
|
+
readonly mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
|
|
311
|
+
readonly maxBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined;
|
|
312
|
+
readonly maxHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined;
|
|
313
|
+
readonly maxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
|
|
314
|
+
readonly maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
|
|
315
|
+
readonly maxWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined;
|
|
316
|
+
readonly minBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined;
|
|
317
|
+
readonly minHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined;
|
|
318
|
+
readonly minInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined;
|
|
319
|
+
readonly minWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined;
|
|
320
|
+
readonly mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
|
|
321
|
+
readonly motionDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
|
|
322
|
+
readonly motionPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
|
|
323
|
+
readonly motionRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
324
|
+
readonly objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
|
|
325
|
+
readonly objectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
|
|
326
|
+
readonly offsetAnchor?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined;
|
|
327
|
+
readonly offsetDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
|
|
328
|
+
readonly offsetPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
|
|
329
|
+
readonly offsetPosition?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined;
|
|
330
|
+
readonly offsetRotate?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
331
|
+
readonly offsetRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
332
|
+
readonly opacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
333
|
+
readonly order?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
334
|
+
readonly orphans?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined;
|
|
335
|
+
readonly outlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
|
|
336
|
+
readonly outlineOffset?: readonly string[] | import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
|
|
337
|
+
readonly outlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
|
|
338
|
+
readonly outlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
|
|
339
|
+
readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
|
|
340
|
+
readonly overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
|
|
341
|
+
readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
|
|
342
|
+
readonly overflowClipMargin?: readonly (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined;
|
|
343
|
+
readonly overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
|
|
344
|
+
readonly overflowWrap?: import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | readonly import("csstype").Property.OverflowWrap[] | undefined;
|
|
345
|
+
readonly overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
|
|
346
|
+
readonly overflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
|
|
347
|
+
readonly overlay?: import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | readonly import("csstype").Property.Overlay[] | undefined;
|
|
348
|
+
readonly overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
|
|
349
|
+
readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
350
|
+
readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
351
|
+
readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
|
|
352
|
+
readonly paddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined;
|
|
353
|
+
readonly paddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined;
|
|
354
|
+
readonly paddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined;
|
|
355
|
+
readonly paddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
356
|
+
readonly paddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
357
|
+
readonly paddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined;
|
|
358
|
+
readonly paddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined;
|
|
359
|
+
readonly paddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined;
|
|
360
|
+
readonly page?: readonly string[] | import("csstype").Property.Page | readonly import("csstype").Property.Page[] | undefined;
|
|
361
|
+
readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
|
|
362
|
+
readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
|
|
363
|
+
readonly pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
|
|
364
|
+
readonly paintOrder?: readonly string[] | import("csstype").Property.PaintOrder | readonly import("csstype").Property.PaintOrder[] | undefined;
|
|
365
|
+
readonly perspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
366
|
+
readonly perspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
367
|
+
readonly pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
|
|
368
|
+
readonly position?: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | readonly import("csstype").Property.Position[] | undefined;
|
|
369
|
+
readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
370
|
+
readonly quotes?: readonly string[] | import("csstype").Property.Quotes | readonly import("csstype").Property.Quotes[] | undefined;
|
|
371
|
+
readonly resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
|
|
372
|
+
readonly right?: readonly (string | (string & {}))[] | import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined;
|
|
373
|
+
readonly rotate?: readonly string[] | import("csstype").Property.Rotate | readonly import("csstype").Property.Rotate[] | undefined;
|
|
374
|
+
readonly rowGap?: readonly (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined;
|
|
375
|
+
readonly rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
|
|
376
|
+
readonly rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
|
|
377
|
+
readonly rubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
|
|
378
|
+
readonly scale?: import("csstype").Property.Scale | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined;
|
|
379
|
+
readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
|
|
380
|
+
readonly scrollMarginBlockEnd?: readonly string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
|
|
381
|
+
readonly scrollMarginBlockStart?: readonly string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
|
|
382
|
+
readonly scrollMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
|
|
383
|
+
readonly scrollMarginInlineEnd?: readonly string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
384
|
+
readonly scrollMarginInlineStart?: readonly string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
|
|
385
|
+
readonly scrollMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
|
|
386
|
+
readonly scrollMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
|
|
387
|
+
readonly scrollMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
|
|
388
|
+
readonly scrollPaddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined;
|
|
389
|
+
readonly scrollPaddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined;
|
|
390
|
+
readonly scrollPaddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined;
|
|
391
|
+
readonly scrollPaddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
392
|
+
readonly scrollPaddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
393
|
+
readonly scrollPaddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined;
|
|
394
|
+
readonly scrollPaddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined;
|
|
395
|
+
readonly scrollPaddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined;
|
|
396
|
+
readonly scrollSnapAlign?: readonly string[] | import("csstype").Property.ScrollSnapAlign | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
|
|
397
|
+
readonly scrollSnapMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
|
|
398
|
+
readonly scrollSnapMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
|
|
399
|
+
readonly scrollSnapMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
|
|
400
|
+
readonly scrollSnapMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
|
|
401
|
+
readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
402
|
+
readonly scrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
|
|
403
|
+
readonly scrollTimelineAxis?: readonly string[] | import("csstype").Property.ScrollTimelineAxis | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
|
|
404
|
+
readonly scrollTimelineName?: readonly string[] | import("csstype").Property.ScrollTimelineName | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
|
|
405
|
+
readonly scrollbarColor?: readonly string[] | import("csstype").Property.ScrollbarColor | readonly import("csstype").Property.ScrollbarColor[] | undefined;
|
|
406
|
+
readonly scrollbarGutter?: readonly string[] | import("csstype").Property.ScrollbarGutter | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
407
|
+
readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
408
|
+
readonly shapeImageThreshold?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined;
|
|
409
|
+
readonly shapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
|
|
410
|
+
readonly shapeOutside?: readonly string[] | import("csstype").Property.ShapeOutside | readonly import("csstype").Property.ShapeOutside[] | undefined;
|
|
411
|
+
readonly tabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
412
|
+
readonly tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
|
|
413
|
+
readonly textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
|
|
414
|
+
readonly textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
|
|
415
|
+
readonly textCombineUpright?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
416
|
+
readonly textDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
417
|
+
readonly textDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
418
|
+
readonly textDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
419
|
+
readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
420
|
+
readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
421
|
+
readonly textDecorationThickness?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined;
|
|
422
|
+
readonly textEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
423
|
+
readonly textEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
424
|
+
readonly textEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
425
|
+
readonly textIndent?: readonly (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined;
|
|
426
|
+
readonly textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
|
|
427
|
+
readonly textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
|
|
428
|
+
readonly textOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
429
|
+
readonly textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
|
|
430
|
+
readonly textShadow?: readonly string[] | import("csstype").Property.TextShadow | readonly import("csstype").Property.TextShadow[] | undefined;
|
|
431
|
+
readonly textSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
432
|
+
readonly textTransform?: import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | readonly import("csstype").Property.TextTransform[] | undefined;
|
|
433
|
+
readonly textUnderlineOffset?: readonly (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined;
|
|
434
|
+
readonly textUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
435
|
+
readonly textWrap?: import("csstype").Property.TextWrap | readonly NonNullable<import("csstype").Property.TextWrap | undefined>[] | readonly import("csstype").Property.TextWrap[] | undefined;
|
|
436
|
+
readonly timelineScope?: readonly string[] | import("csstype").Property.TimelineScope | readonly import("csstype").Property.TimelineScope[] | undefined;
|
|
437
|
+
readonly top?: readonly (string | (string & {}))[] | import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined;
|
|
438
|
+
readonly touchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
|
|
439
|
+
readonly transform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
440
|
+
readonly transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
|
|
441
|
+
readonly transformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
442
|
+
readonly transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
443
|
+
readonly transitionBehavior?: readonly string[] | import("csstype").Property.TransitionBehavior | readonly import("csstype").Property.TransitionBehavior[] | undefined;
|
|
444
|
+
readonly transitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
445
|
+
readonly transitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
446
|
+
readonly transitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
447
|
+
readonly transitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
448
|
+
readonly translate?: readonly (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined;
|
|
449
|
+
readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
|
|
450
|
+
readonly userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
451
|
+
readonly verticalAlign?: readonly (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined;
|
|
452
|
+
readonly viewTimelineAxis?: readonly string[] | import("csstype").Property.ViewTimelineAxis | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
|
|
453
|
+
readonly viewTimelineInset?: readonly (string | (string & {}))[] | import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined;
|
|
454
|
+
readonly viewTimelineName?: readonly string[] | import("csstype").Property.ViewTimelineName | readonly import("csstype").Property.ViewTimelineName[] | undefined;
|
|
455
|
+
readonly viewTransitionName?: readonly string[] | import("csstype").Property.ViewTransitionName | readonly import("csstype").Property.ViewTransitionName[] | undefined;
|
|
456
|
+
readonly visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
|
|
457
|
+
readonly whiteSpace?: readonly string[] | import("csstype").Property.WhiteSpace | readonly import("csstype").Property.WhiteSpace[] | undefined;
|
|
458
|
+
readonly whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
|
|
459
|
+
readonly whiteSpaceTrim?: readonly string[] | import("csstype").Property.WhiteSpaceTrim | readonly import("csstype").Property.WhiteSpaceTrim[] | undefined;
|
|
460
|
+
readonly widows?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined;
|
|
461
|
+
readonly width?: readonly (string | (string & {}))[] | import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined;
|
|
462
|
+
readonly willChange?: readonly string[] | import("csstype").Property.WillChange | readonly import("csstype").Property.WillChange[] | undefined;
|
|
463
|
+
readonly wordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
|
|
464
|
+
readonly wordSpacing?: readonly string[] | import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
465
|
+
readonly wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
466
|
+
readonly writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
467
|
+
readonly zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | undefined;
|
|
468
|
+
readonly zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
|
|
469
|
+
readonly all?: import("csstype").Globals | readonly NonNullable<import("csstype").Globals | undefined>[] | readonly import("csstype").Globals[] | undefined;
|
|
470
|
+
readonly animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
471
|
+
readonly animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined;
|
|
472
|
+
readonly background?: readonly (string | (string & {}))[] | import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined;
|
|
473
|
+
readonly backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined;
|
|
474
|
+
readonly border?: import("csstype").Property.Border<string | number> | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
|
|
475
|
+
readonly borderBlock?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined;
|
|
476
|
+
readonly borderBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined;
|
|
477
|
+
readonly borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined;
|
|
478
|
+
readonly borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
|
|
479
|
+
readonly borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
|
|
480
|
+
readonly borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
481
|
+
readonly borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
|
|
482
|
+
readonly borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
|
|
483
|
+
readonly borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined;
|
|
484
|
+
readonly borderLeft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined;
|
|
485
|
+
readonly borderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
486
|
+
readonly borderRight?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined;
|
|
487
|
+
readonly borderStyle?: readonly string[] | import("csstype").Property.BorderStyle | readonly import("csstype").Property.BorderStyle[] | undefined;
|
|
488
|
+
readonly borderTop?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined;
|
|
489
|
+
readonly borderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined;
|
|
490
|
+
readonly caret?: readonly string[] | import("csstype").Property.Caret | readonly import("csstype").Property.Caret[] | undefined;
|
|
491
|
+
readonly columnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
492
|
+
readonly columns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
493
|
+
readonly containIntrinsicSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined;
|
|
494
|
+
readonly container?: readonly string[] | import("csstype").Property.Container | readonly import("csstype").Property.Container[] | undefined;
|
|
495
|
+
readonly flex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
496
|
+
readonly flexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
|
|
497
|
+
readonly font?: readonly string[] | import("csstype").Property.Font | readonly import("csstype").Property.Font[] | undefined;
|
|
498
|
+
readonly gap?: readonly (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined;
|
|
499
|
+
readonly grid?: readonly string[] | import("csstype").Property.Grid | readonly import("csstype").Property.Grid[] | undefined;
|
|
500
|
+
readonly gridArea?: import("csstype").Property.GridArea | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined;
|
|
501
|
+
readonly gridColumn?: import("csstype").Property.GridColumn | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined;
|
|
502
|
+
readonly gridRow?: import("csstype").Property.GridRow | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined;
|
|
503
|
+
readonly gridTemplate?: readonly string[] | import("csstype").Property.GridTemplate | readonly import("csstype").Property.GridTemplate[] | undefined;
|
|
504
|
+
readonly inset?: readonly (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined;
|
|
505
|
+
readonly insetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
|
|
506
|
+
readonly insetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
|
|
507
|
+
readonly lineClamp?: import("csstype").Property.LineClamp | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined;
|
|
508
|
+
readonly listStyle?: readonly string[] | import("csstype").Property.ListStyle | readonly import("csstype").Property.ListStyle[] | undefined;
|
|
509
|
+
readonly margin?: readonly (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined;
|
|
510
|
+
readonly marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
|
|
511
|
+
readonly marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
|
|
512
|
+
readonly mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
|
|
513
|
+
readonly maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
|
|
514
|
+
readonly motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
|
|
515
|
+
readonly offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
|
|
516
|
+
readonly outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
|
|
517
|
+
readonly overflow?: readonly string[] | import("csstype").Property.Overflow | readonly import("csstype").Property.Overflow[] | undefined;
|
|
518
|
+
readonly overscrollBehavior?: readonly string[] | import("csstype").Property.OverscrollBehavior | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
519
|
+
readonly padding?: readonly (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined;
|
|
520
|
+
readonly paddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined;
|
|
521
|
+
readonly paddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined;
|
|
522
|
+
readonly placeContent?: readonly string[] | import("csstype").Property.PlaceContent | readonly import("csstype").Property.PlaceContent[] | undefined;
|
|
523
|
+
readonly placeItems?: readonly string[] | import("csstype").Property.PlaceItems | readonly import("csstype").Property.PlaceItems[] | undefined;
|
|
524
|
+
readonly placeSelf?: readonly string[] | import("csstype").Property.PlaceSelf | readonly import("csstype").Property.PlaceSelf[] | undefined;
|
|
525
|
+
readonly scrollMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
|
|
526
|
+
readonly scrollMarginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined;
|
|
527
|
+
readonly scrollMarginInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined;
|
|
528
|
+
readonly scrollPadding?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined;
|
|
529
|
+
readonly scrollPaddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined;
|
|
530
|
+
readonly scrollPaddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined;
|
|
531
|
+
readonly scrollSnapMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
|
|
532
|
+
readonly scrollTimeline?: readonly string[] | import("csstype").Property.ScrollTimeline | readonly import("csstype").Property.ScrollTimeline[] | undefined;
|
|
533
|
+
readonly textDecoration?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined;
|
|
534
|
+
readonly textEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
|
|
535
|
+
readonly transition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
536
|
+
readonly viewTimeline?: readonly string[] | import("csstype").Property.ViewTimeline | readonly import("csstype").Property.ViewTimeline[] | undefined;
|
|
537
|
+
readonly MozAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
538
|
+
readonly MozAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
539
|
+
readonly MozAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
540
|
+
readonly MozAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
541
|
+
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
542
|
+
readonly MozAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
543
|
+
readonly MozAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
544
|
+
readonly MozAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
545
|
+
readonly MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
|
|
546
|
+
readonly MozBinding?: readonly string[] | import("csstype").Property.MozBinding | readonly import("csstype").Property.MozBinding[] | undefined;
|
|
547
|
+
readonly MozBorderBottomColors?: readonly string[] | import("csstype").Property.MozBorderBottomColors | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
548
|
+
readonly MozBorderEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
549
|
+
readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
550
|
+
readonly MozBorderEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
|
|
551
|
+
readonly MozBorderLeftColors?: readonly string[] | import("csstype").Property.MozBorderLeftColors | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
552
|
+
readonly MozBorderRightColors?: readonly string[] | import("csstype").Property.MozBorderRightColors | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
553
|
+
readonly MozBorderStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
554
|
+
readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
555
|
+
readonly MozBorderTopColors?: readonly string[] | import("csstype").Property.MozBorderTopColors | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
556
|
+
readonly MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
557
|
+
readonly MozColumnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
558
|
+
readonly MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
559
|
+
readonly MozColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
560
|
+
readonly MozColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
561
|
+
readonly MozColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
562
|
+
readonly MozColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
563
|
+
readonly MozContextProperties?: readonly string[] | import("csstype").Property.MozContextProperties | readonly import("csstype").Property.MozContextProperties[] | undefined;
|
|
564
|
+
readonly MozFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
565
|
+
readonly MozFontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
566
|
+
readonly MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
567
|
+
readonly MozImageRegion?: readonly string[] | import("csstype").Property.MozImageRegion | readonly import("csstype").Property.MozImageRegion[] | undefined;
|
|
568
|
+
readonly MozMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
569
|
+
readonly MozMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
570
|
+
readonly MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
|
|
571
|
+
readonly MozOsxFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
572
|
+
readonly MozOutlineRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined;
|
|
573
|
+
readonly MozOutlineRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined;
|
|
574
|
+
readonly MozOutlineRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined;
|
|
575
|
+
readonly MozOutlineRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined;
|
|
576
|
+
readonly MozPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
577
|
+
readonly MozPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
578
|
+
readonly MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
|
|
579
|
+
readonly MozTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
580
|
+
readonly MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
|
|
581
|
+
readonly MozTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
582
|
+
readonly MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
|
|
583
|
+
readonly MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
|
|
584
|
+
readonly MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
585
|
+
readonly MozWindowDragging?: import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | readonly import("csstype").Property.MozWindowDragging[] | undefined;
|
|
586
|
+
readonly MozWindowShadow?: import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | readonly import("csstype").Property.MozWindowShadow[] | undefined;
|
|
587
|
+
readonly msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
|
|
588
|
+
readonly msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
|
|
589
|
+
readonly msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
|
|
590
|
+
readonly msContentZoomLimitMax?: readonly string[] | import("csstype").Property.MsContentZoomLimitMax | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
|
|
591
|
+
readonly msContentZoomLimitMin?: readonly string[] | import("csstype").Property.MsContentZoomLimitMin | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
|
|
592
|
+
readonly msContentZoomSnapPoints?: readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
|
|
593
|
+
readonly msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
|
|
594
|
+
readonly msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
|
|
595
|
+
readonly msFilter?: readonly string[] | import("csstype").Property.MsFilter | readonly import("csstype").Property.MsFilter[] | undefined;
|
|
596
|
+
readonly msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
597
|
+
readonly msFlexPositive?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
598
|
+
readonly msFlowFrom?: readonly string[] | import("csstype").Property.MsFlowFrom | readonly import("csstype").Property.MsFlowFrom[] | undefined;
|
|
599
|
+
readonly msFlowInto?: readonly string[] | import("csstype").Property.MsFlowInto | readonly import("csstype").Property.MsFlowInto[] | undefined;
|
|
600
|
+
readonly msGridColumns?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined;
|
|
601
|
+
readonly msGridRows?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined;
|
|
602
|
+
readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
|
|
603
|
+
readonly msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined;
|
|
604
|
+
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "no-limit")[] | undefined;
|
|
605
|
+
readonly msHyphenateLimitZone?: readonly (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
|
|
606
|
+
readonly msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
607
|
+
readonly msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
|
|
608
|
+
readonly msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
609
|
+
readonly msOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
610
|
+
readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
611
|
+
readonly msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
|
|
612
|
+
readonly msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
|
|
613
|
+
readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
|
|
614
|
+
readonly msScrollLimitXMax?: readonly string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
|
|
615
|
+
readonly msScrollLimitXMin?: readonly string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
|
|
616
|
+
readonly msScrollLimitYMax?: readonly string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
|
|
617
|
+
readonly msScrollLimitYMin?: readonly string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
|
|
618
|
+
readonly msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
|
|
619
|
+
readonly msScrollSnapPointsX?: readonly string[] | import("csstype").Property.MsScrollSnapPointsX | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
620
|
+
readonly msScrollSnapPointsY?: readonly string[] | import("csstype").Property.MsScrollSnapPointsY | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
621
|
+
readonly msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
|
|
622
|
+
readonly msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
|
|
623
|
+
readonly msScrollbar3dlightColor?: readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
|
|
624
|
+
readonly msScrollbarArrowColor?: readonly string[] | import("csstype").Property.MsScrollbarArrowColor | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
|
|
625
|
+
readonly msScrollbarBaseColor?: readonly string[] | import("csstype").Property.MsScrollbarBaseColor | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
|
|
626
|
+
readonly msScrollbarDarkshadowColor?: readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
|
|
627
|
+
readonly msScrollbarFaceColor?: readonly string[] | import("csstype").Property.MsScrollbarFaceColor | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
|
|
628
|
+
readonly msScrollbarHighlightColor?: readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
|
|
629
|
+
readonly msScrollbarShadowColor?: readonly string[] | import("csstype").Property.MsScrollbarShadowColor | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
|
|
630
|
+
readonly msScrollbarTrackColor?: readonly string[] | import("csstype").Property.MsScrollbarTrackColor | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
631
|
+
readonly msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
|
|
632
|
+
readonly msTextCombineHorizontal?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
633
|
+
readonly msTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
634
|
+
readonly msTouchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
|
|
635
|
+
readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
|
|
636
|
+
readonly msTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
637
|
+
readonly msTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
638
|
+
readonly msTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
639
|
+
readonly msTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
640
|
+
readonly msTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
641
|
+
readonly msTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
642
|
+
readonly msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
|
|
643
|
+
readonly msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
|
|
644
|
+
readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
|
|
645
|
+
readonly msWrapMargin?: readonly string[] | import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
|
|
646
|
+
readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
|
|
647
|
+
readonly msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
648
|
+
readonly WebkitAlignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
|
|
649
|
+
readonly WebkitAlignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
|
|
650
|
+
readonly WebkitAlignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
|
|
651
|
+
readonly WebkitAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
652
|
+
readonly WebkitAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
653
|
+
readonly WebkitAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
654
|
+
readonly WebkitAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
655
|
+
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
656
|
+
readonly WebkitAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
657
|
+
readonly WebkitAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
658
|
+
readonly WebkitAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
659
|
+
readonly WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
|
|
660
|
+
readonly WebkitBackdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
|
|
661
|
+
readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
662
|
+
readonly WebkitBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
663
|
+
readonly WebkitBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
664
|
+
readonly WebkitBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
665
|
+
readonly WebkitBorderBeforeColor?: readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
666
|
+
readonly WebkitBorderBeforeStyle?: readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
|
|
667
|
+
readonly WebkitBorderBeforeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined;
|
|
668
|
+
readonly WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
669
|
+
readonly WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
670
|
+
readonly WebkitBorderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
|
|
671
|
+
readonly WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
672
|
+
readonly WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
673
|
+
readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
674
|
+
readonly WebkitBoxReflect?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
|
|
675
|
+
readonly WebkitBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
676
|
+
readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
677
|
+
readonly WebkitClipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
|
|
678
|
+
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
679
|
+
readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
680
|
+
readonly WebkitColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
681
|
+
readonly WebkitColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
682
|
+
readonly WebkitColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
683
|
+
readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
|
|
684
|
+
readonly WebkitColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
685
|
+
readonly WebkitFilter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
|
|
686
|
+
readonly WebkitFlexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
|
|
687
|
+
readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
688
|
+
readonly WebkitFlexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
689
|
+
readonly WebkitFlexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
|
|
690
|
+
readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
|
|
691
|
+
readonly WebkitFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
692
|
+
readonly WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
|
|
693
|
+
readonly WebkitFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
694
|
+
readonly WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
695
|
+
readonly WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
696
|
+
readonly WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
697
|
+
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
|
|
698
|
+
readonly WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
|
|
699
|
+
readonly WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
700
|
+
readonly WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined;
|
|
701
|
+
readonly WebkitMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
702
|
+
readonly WebkitMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
703
|
+
readonly WebkitMaskAttachment?: readonly string[] | import("csstype").Property.WebkitMaskAttachment | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
704
|
+
readonly WebkitMaskBoxImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
|
|
705
|
+
readonly WebkitMaskBoxImageRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
706
|
+
readonly WebkitMaskBoxImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
|
|
707
|
+
readonly WebkitMaskBoxImageSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
|
|
708
|
+
readonly WebkitMaskBoxImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
|
|
709
|
+
readonly WebkitMaskClip?: readonly string[] | import("csstype").Property.WebkitMaskClip | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
710
|
+
readonly WebkitMaskComposite?: readonly string[] | import("csstype").Property.WebkitMaskComposite | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
711
|
+
readonly WebkitMaskImage?: readonly string[] | import("csstype").Property.WebkitMaskImage | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
712
|
+
readonly WebkitMaskOrigin?: readonly string[] | import("csstype").Property.WebkitMaskOrigin | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
713
|
+
readonly WebkitMaskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined;
|
|
714
|
+
readonly WebkitMaskPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined;
|
|
715
|
+
readonly WebkitMaskPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined;
|
|
716
|
+
readonly WebkitMaskRepeat?: readonly string[] | import("csstype").Property.WebkitMaskRepeat | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
717
|
+
readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
718
|
+
readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
719
|
+
readonly WebkitMaskSize?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined;
|
|
720
|
+
readonly WebkitMaxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
|
|
721
|
+
readonly WebkitOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
722
|
+
readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
723
|
+
readonly WebkitPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
724
|
+
readonly WebkitPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
725
|
+
readonly WebkitPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
726
|
+
readonly WebkitPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
727
|
+
readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
728
|
+
readonly WebkitRubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
|
|
729
|
+
readonly WebkitScrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
|
|
730
|
+
readonly WebkitShapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
|
|
731
|
+
readonly WebkitTapHighlightColor?: readonly string[] | import("csstype").Property.WebkitTapHighlightColor | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
732
|
+
readonly WebkitTextCombine?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
733
|
+
readonly WebkitTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
734
|
+
readonly WebkitTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
735
|
+
readonly WebkitTextDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
736
|
+
readonly WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
737
|
+
readonly WebkitTextEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
738
|
+
readonly WebkitTextEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
739
|
+
readonly WebkitTextEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
740
|
+
readonly WebkitTextFillColor?: readonly string[] | import("csstype").Property.WebkitTextFillColor | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
|
|
741
|
+
readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
|
|
742
|
+
readonly WebkitTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
743
|
+
readonly WebkitTextStrokeColor?: readonly string[] | import("csstype").Property.WebkitTextStrokeColor | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
744
|
+
readonly WebkitTextStrokeWidth?: readonly string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
|
|
745
|
+
readonly WebkitTextUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
746
|
+
readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
747
|
+
readonly WebkitTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
748
|
+
readonly WebkitTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
749
|
+
readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
750
|
+
readonly WebkitTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
751
|
+
readonly WebkitTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
752
|
+
readonly WebkitTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
753
|
+
readonly WebkitTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
754
|
+
readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
|
|
755
|
+
readonly WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
756
|
+
readonly WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
757
|
+
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
758
|
+
readonly MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
759
|
+
readonly MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
760
|
+
readonly MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
761
|
+
readonly MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
|
|
762
|
+
readonly msContentZoomLimit?: readonly string[] | import("csstype").Property.MsContentZoomLimit | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
763
|
+
readonly msContentZoomSnap?: readonly string[] | import("csstype").Property.MsContentZoomSnap | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
764
|
+
readonly msFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
765
|
+
readonly msScrollLimit?: readonly string[] | import("csstype").Property.MsScrollLimit | readonly import("csstype").Property.MsScrollLimit[] | undefined;
|
|
766
|
+
readonly msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
767
|
+
readonly msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
768
|
+
readonly msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
769
|
+
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
770
|
+
readonly WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
|
|
771
|
+
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
772
|
+
readonly WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
773
|
+
readonly WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
774
|
+
readonly WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
775
|
+
readonly WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
776
|
+
readonly WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
|
|
777
|
+
readonly WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
|
|
778
|
+
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
|
|
779
|
+
readonly WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
|
|
780
|
+
readonly WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
|
|
781
|
+
readonly WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
782
|
+
readonly azimuth?: readonly string[] | import("csstype").Property.Azimuth | readonly import("csstype").Property.Azimuth[] | undefined;
|
|
783
|
+
readonly boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
784
|
+
readonly boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
785
|
+
readonly boxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
786
|
+
readonly boxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
787
|
+
readonly boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
788
|
+
readonly boxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
789
|
+
readonly boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
790
|
+
readonly boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
791
|
+
readonly clip?: readonly string[] | import("csstype").Property.Clip | readonly import("csstype").Property.Clip[] | undefined;
|
|
792
|
+
readonly gridColumnGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined;
|
|
793
|
+
readonly gridGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined;
|
|
794
|
+
readonly gridRowGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined;
|
|
795
|
+
readonly imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
|
|
796
|
+
readonly offsetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
|
|
797
|
+
readonly offsetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
|
|
798
|
+
readonly offsetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
|
|
799
|
+
readonly offsetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
|
|
800
|
+
readonly offsetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
|
|
801
|
+
readonly offsetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
|
|
802
|
+
readonly scrollSnapCoordinate?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined;
|
|
803
|
+
readonly scrollSnapDestination?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined;
|
|
804
|
+
readonly scrollSnapPointsX?: readonly string[] | import("csstype").Property.ScrollSnapPointsX | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
805
|
+
readonly scrollSnapPointsY?: readonly string[] | import("csstype").Property.ScrollSnapPointsY | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
806
|
+
readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
807
|
+
readonly scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
|
|
808
|
+
readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
809
|
+
readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
810
|
+
readonly KhtmlBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
811
|
+
readonly KhtmlBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
812
|
+
readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
813
|
+
readonly KhtmlBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
814
|
+
readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
815
|
+
readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
816
|
+
readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
817
|
+
readonly KhtmlOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
818
|
+
readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
819
|
+
readonly MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
820
|
+
readonly MozBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
821
|
+
readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
822
|
+
readonly MozBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
823
|
+
readonly MozBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
824
|
+
readonly MozBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
825
|
+
readonly MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
826
|
+
readonly MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
827
|
+
readonly MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
828
|
+
readonly MozBorderRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
829
|
+
readonly MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
830
|
+
readonly MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
831
|
+
readonly MozBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
832
|
+
readonly MozBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
833
|
+
readonly MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
834
|
+
readonly MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
835
|
+
readonly MozBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
836
|
+
readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
|
|
837
|
+
readonly MozForceBrokenImageIcon?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined;
|
|
838
|
+
readonly MozOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
839
|
+
readonly MozOutline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
|
|
840
|
+
readonly MozOutlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
|
|
841
|
+
readonly MozOutlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
|
|
842
|
+
readonly MozOutlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
|
|
843
|
+
readonly MozPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
844
|
+
readonly MozPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
845
|
+
readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
|
|
846
|
+
readonly MozTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
847
|
+
readonly MozTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
848
|
+
readonly MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
849
|
+
readonly MozTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
850
|
+
readonly MozTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
851
|
+
readonly MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
852
|
+
readonly MozTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
853
|
+
readonly MozTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
854
|
+
readonly MozTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
855
|
+
readonly MozTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
856
|
+
readonly MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
857
|
+
readonly MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
|
|
858
|
+
readonly msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
|
|
859
|
+
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
860
|
+
readonly OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
861
|
+
readonly OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
862
|
+
readonly OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
863
|
+
readonly OAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
864
|
+
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
865
|
+
readonly OAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
866
|
+
readonly OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
867
|
+
readonly OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
868
|
+
readonly OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
869
|
+
readonly OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
870
|
+
readonly OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
|
|
871
|
+
readonly OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
|
|
872
|
+
readonly OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
873
|
+
readonly OTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
874
|
+
readonly OTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
875
|
+
readonly OTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
876
|
+
readonly OTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
877
|
+
readonly OTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
878
|
+
readonly OTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
879
|
+
readonly OTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
880
|
+
readonly OTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
881
|
+
readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
882
|
+
readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
883
|
+
readonly WebkitBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
884
|
+
readonly WebkitBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
885
|
+
readonly WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
886
|
+
readonly WebkitBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
887
|
+
readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
888
|
+
readonly WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
889
|
+
readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
890
|
+
readonly baselineShift?: readonly (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined;
|
|
891
|
+
readonly clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
|
|
892
|
+
readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
|
|
893
|
+
readonly colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
|
|
894
|
+
readonly dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
|
|
895
|
+
readonly fill?: readonly string[] | import("csstype").Property.Fill | readonly import("csstype").Property.Fill[] | undefined;
|
|
896
|
+
readonly fillOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined;
|
|
897
|
+
readonly fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
|
|
898
|
+
readonly floodColor?: readonly string[] | import("csstype").Property.FloodColor | readonly import("csstype").Property.FloodColor[] | undefined;
|
|
899
|
+
readonly floodOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined;
|
|
900
|
+
readonly glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined;
|
|
901
|
+
readonly lightingColor?: readonly string[] | import("csstype").Property.LightingColor | readonly import("csstype").Property.LightingColor[] | undefined;
|
|
902
|
+
readonly marker?: readonly string[] | import("csstype").Property.Marker | readonly import("csstype").Property.Marker[] | undefined;
|
|
903
|
+
readonly markerEnd?: readonly string[] | import("csstype").Property.MarkerEnd | readonly import("csstype").Property.MarkerEnd[] | undefined;
|
|
904
|
+
readonly markerMid?: readonly string[] | import("csstype").Property.MarkerMid | readonly import("csstype").Property.MarkerMid[] | undefined;
|
|
905
|
+
readonly markerStart?: readonly string[] | import("csstype").Property.MarkerStart | readonly import("csstype").Property.MarkerStart[] | undefined;
|
|
906
|
+
readonly shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
|
|
907
|
+
readonly stopColor?: readonly string[] | import("csstype").Property.StopColor | readonly import("csstype").Property.StopColor[] | undefined;
|
|
908
|
+
readonly stopOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined;
|
|
909
|
+
readonly stroke?: readonly string[] | import("csstype").Property.Stroke | readonly import("csstype").Property.Stroke[] | undefined;
|
|
910
|
+
readonly strokeDasharray?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined;
|
|
911
|
+
readonly strokeDashoffset?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined;
|
|
912
|
+
readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
|
|
913
|
+
readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
914
|
+
readonly strokeMiterlimit?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined;
|
|
915
|
+
readonly strokeOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined;
|
|
916
|
+
readonly strokeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined;
|
|
917
|
+
readonly textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
|
|
918
|
+
readonly vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
|
|
919
|
+
readonly ":-moz-any()"?: import("@emotion/react").CSSObject | undefined;
|
|
920
|
+
readonly ":-moz-dir"?: import("@emotion/react").CSSObject | undefined;
|
|
921
|
+
readonly ":-webkit-any()"?: import("@emotion/react").CSSObject | undefined;
|
|
922
|
+
readonly "::cue"?: import("@emotion/react").CSSObject | undefined;
|
|
923
|
+
readonly "::cue-region"?: import("@emotion/react").CSSObject | undefined;
|
|
924
|
+
readonly "::part"?: import("@emotion/react").CSSObject | undefined;
|
|
925
|
+
readonly "::slotted"?: import("@emotion/react").CSSObject | undefined;
|
|
926
|
+
readonly "::view-transition-group"?: import("@emotion/react").CSSObject | undefined;
|
|
927
|
+
readonly "::view-transition-image-pair"?: import("@emotion/react").CSSObject | undefined;
|
|
928
|
+
readonly "::view-transition-new"?: import("@emotion/react").CSSObject | undefined;
|
|
929
|
+
readonly "::view-transition-old"?: import("@emotion/react").CSSObject | undefined;
|
|
930
|
+
readonly ":dir"?: import("@emotion/react").CSSObject | undefined;
|
|
931
|
+
readonly ":has"?: import("@emotion/react").CSSObject | undefined;
|
|
932
|
+
readonly ":host"?: import("@emotion/react").CSSObject | undefined;
|
|
933
|
+
readonly ":host-context"?: import("@emotion/react").CSSObject | undefined;
|
|
934
|
+
readonly ":is"?: import("@emotion/react").CSSObject | undefined;
|
|
935
|
+
readonly ":lang"?: import("@emotion/react").CSSObject | undefined;
|
|
936
|
+
readonly ":matches()"?: import("@emotion/react").CSSObject | undefined;
|
|
937
|
+
readonly ":not"?: import("@emotion/react").CSSObject | undefined;
|
|
938
|
+
readonly ":nth-child"?: import("@emotion/react").CSSObject | undefined;
|
|
939
|
+
readonly ":nth-last-child"?: import("@emotion/react").CSSObject | undefined;
|
|
940
|
+
readonly ":nth-last-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
941
|
+
readonly ":nth-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
942
|
+
readonly ":where"?: import("@emotion/react").CSSObject | undefined;
|
|
943
|
+
readonly ":-khtml-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
944
|
+
readonly ":-moz-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
945
|
+
readonly ":-moz-focusring"?: import("@emotion/react").CSSObject | undefined;
|
|
946
|
+
readonly ":-moz-full-screen"?: import("@emotion/react").CSSObject | undefined;
|
|
947
|
+
readonly ":-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
948
|
+
readonly ":-moz-read-only"?: import("@emotion/react").CSSObject | undefined;
|
|
949
|
+
readonly ":-moz-read-write"?: import("@emotion/react").CSSObject | undefined;
|
|
950
|
+
readonly ":-moz-ui-invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
951
|
+
readonly ":-moz-ui-valid"?: import("@emotion/react").CSSObject | undefined;
|
|
952
|
+
readonly ":-ms-fullscreen"?: import("@emotion/react").CSSObject | undefined;
|
|
953
|
+
readonly ":-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
954
|
+
readonly ":-webkit-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
955
|
+
readonly ":-webkit-full-screen"?: import("@emotion/react").CSSObject | undefined;
|
|
956
|
+
readonly "::-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
957
|
+
readonly "::-moz-progress-bar"?: import("@emotion/react").CSSObject | undefined;
|
|
958
|
+
readonly "::-moz-range-progress"?: import("@emotion/react").CSSObject | undefined;
|
|
959
|
+
readonly "::-moz-range-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
960
|
+
readonly "::-moz-range-track"?: import("@emotion/react").CSSObject | undefined;
|
|
961
|
+
readonly "::-moz-selection"?: import("@emotion/react").CSSObject | undefined;
|
|
962
|
+
readonly "::-ms-backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
963
|
+
readonly "::-ms-browse"?: import("@emotion/react").CSSObject | undefined;
|
|
964
|
+
readonly "::-ms-check"?: import("@emotion/react").CSSObject | undefined;
|
|
965
|
+
readonly "::-ms-clear"?: import("@emotion/react").CSSObject | undefined;
|
|
966
|
+
readonly "::-ms-expand"?: import("@emotion/react").CSSObject | undefined;
|
|
967
|
+
readonly "::-ms-fill"?: import("@emotion/react").CSSObject | undefined;
|
|
968
|
+
readonly "::-ms-fill-lower"?: import("@emotion/react").CSSObject | undefined;
|
|
969
|
+
readonly "::-ms-fill-upper"?: import("@emotion/react").CSSObject | undefined;
|
|
970
|
+
readonly "::-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
971
|
+
readonly "::-ms-reveal"?: import("@emotion/react").CSSObject | undefined;
|
|
972
|
+
readonly "::-ms-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
973
|
+
readonly "::-ms-ticks-after"?: import("@emotion/react").CSSObject | undefined;
|
|
974
|
+
readonly "::-ms-ticks-before"?: import("@emotion/react").CSSObject | undefined;
|
|
975
|
+
readonly "::-ms-tooltip"?: import("@emotion/react").CSSObject | undefined;
|
|
976
|
+
readonly "::-ms-track"?: import("@emotion/react").CSSObject | undefined;
|
|
977
|
+
readonly "::-ms-value"?: import("@emotion/react").CSSObject | undefined;
|
|
978
|
+
readonly "::-webkit-backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
979
|
+
readonly "::-webkit-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
980
|
+
readonly "::-webkit-progress-bar"?: import("@emotion/react").CSSObject | undefined;
|
|
981
|
+
readonly "::-webkit-progress-inner-value"?: import("@emotion/react").CSSObject | undefined;
|
|
982
|
+
readonly "::-webkit-progress-value"?: import("@emotion/react").CSSObject | undefined;
|
|
983
|
+
readonly "::-webkit-slider-runnable-track"?: import("@emotion/react").CSSObject | undefined;
|
|
984
|
+
readonly "::-webkit-slider-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
985
|
+
readonly "::after"?: import("@emotion/react").CSSObject | undefined;
|
|
986
|
+
readonly "::backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
987
|
+
readonly "::before"?: import("@emotion/react").CSSObject | undefined;
|
|
988
|
+
readonly "::first-letter"?: import("@emotion/react").CSSObject | undefined;
|
|
989
|
+
readonly "::first-line"?: import("@emotion/react").CSSObject | undefined;
|
|
990
|
+
readonly "::grammar-error"?: import("@emotion/react").CSSObject | undefined;
|
|
991
|
+
readonly "::marker"?: import("@emotion/react").CSSObject | undefined;
|
|
992
|
+
readonly "::placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
993
|
+
readonly "::selection"?: import("@emotion/react").CSSObject | undefined;
|
|
994
|
+
readonly "::spelling-error"?: import("@emotion/react").CSSObject | undefined;
|
|
995
|
+
readonly "::target-text"?: import("@emotion/react").CSSObject | undefined;
|
|
996
|
+
readonly "::view-transition"?: import("@emotion/react").CSSObject | undefined;
|
|
997
|
+
readonly ":active"?: import("@emotion/react").CSSObject | undefined;
|
|
998
|
+
readonly ":after"?: import("@emotion/react").CSSObject | undefined;
|
|
999
|
+
readonly ":any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
1000
|
+
readonly ":before"?: import("@emotion/react").CSSObject | undefined;
|
|
1001
|
+
readonly ":blank"?: import("@emotion/react").CSSObject | undefined;
|
|
1002
|
+
readonly ":checked"?: import("@emotion/react").CSSObject | undefined;
|
|
1003
|
+
readonly ":current"?: import("@emotion/react").CSSObject | undefined;
|
|
1004
|
+
readonly ":default"?: import("@emotion/react").CSSObject | undefined;
|
|
1005
|
+
readonly ":defined"?: import("@emotion/react").CSSObject | undefined;
|
|
1006
|
+
readonly ":disabled"?: import("@emotion/react").CSSObject | undefined;
|
|
1007
|
+
readonly ":empty"?: import("@emotion/react").CSSObject | undefined;
|
|
1008
|
+
readonly ":first"?: import("@emotion/react").CSSObject | undefined;
|
|
1009
|
+
readonly ":first-child"?: import("@emotion/react").CSSObject | undefined;
|
|
1010
|
+
readonly ":first-letter"?: import("@emotion/react").CSSObject | undefined;
|
|
1011
|
+
readonly ":first-line"?: import("@emotion/react").CSSObject | undefined;
|
|
1012
|
+
readonly ":first-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
1013
|
+
readonly ":focus-visible"?: import("@emotion/react").CSSObject | undefined;
|
|
1014
|
+
readonly ":focus-within"?: import("@emotion/react").CSSObject | undefined;
|
|
1015
|
+
readonly ":fullscreen"?: import("@emotion/react").CSSObject | undefined;
|
|
1016
|
+
readonly ":future"?: import("@emotion/react").CSSObject | undefined;
|
|
1017
|
+
readonly ":hover"?: import("@emotion/react").CSSObject | undefined;
|
|
1018
|
+
readonly ":in-range"?: import("@emotion/react").CSSObject | undefined;
|
|
1019
|
+
readonly ":indeterminate"?: import("@emotion/react").CSSObject | undefined;
|
|
1020
|
+
readonly ":invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
1021
|
+
readonly ":last-child"?: import("@emotion/react").CSSObject | undefined;
|
|
1022
|
+
readonly ":last-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
1023
|
+
readonly ":left"?: import("@emotion/react").CSSObject | undefined;
|
|
1024
|
+
readonly ":link"?: import("@emotion/react").CSSObject | undefined;
|
|
1025
|
+
readonly ":local-link"?: import("@emotion/react").CSSObject | undefined;
|
|
1026
|
+
readonly ":nth-col"?: import("@emotion/react").CSSObject | undefined;
|
|
1027
|
+
readonly ":nth-last-col"?: import("@emotion/react").CSSObject | undefined;
|
|
1028
|
+
readonly ":only-child"?: import("@emotion/react").CSSObject | undefined;
|
|
1029
|
+
readonly ":only-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
1030
|
+
readonly ":optional"?: import("@emotion/react").CSSObject | undefined;
|
|
1031
|
+
readonly ":out-of-range"?: import("@emotion/react").CSSObject | undefined;
|
|
1032
|
+
readonly ":past"?: import("@emotion/react").CSSObject | undefined;
|
|
1033
|
+
readonly ":paused"?: import("@emotion/react").CSSObject | undefined;
|
|
1034
|
+
readonly ":picture-in-picture"?: import("@emotion/react").CSSObject | undefined;
|
|
1035
|
+
readonly ":placeholder-shown"?: import("@emotion/react").CSSObject | undefined;
|
|
1036
|
+
readonly ":playing"?: import("@emotion/react").CSSObject | undefined;
|
|
1037
|
+
readonly ":read-only"?: import("@emotion/react").CSSObject | undefined;
|
|
1038
|
+
readonly ":read-write"?: import("@emotion/react").CSSObject | undefined;
|
|
1039
|
+
readonly ":required"?: import("@emotion/react").CSSObject | undefined;
|
|
1040
|
+
readonly ":right"?: import("@emotion/react").CSSObject | undefined;
|
|
1041
|
+
readonly ":root"?: import("@emotion/react").CSSObject | undefined;
|
|
1042
|
+
readonly ":scope"?: import("@emotion/react").CSSObject | undefined;
|
|
1043
|
+
readonly ":target"?: import("@emotion/react").CSSObject | undefined;
|
|
1044
|
+
readonly ":target-within"?: import("@emotion/react").CSSObject | undefined;
|
|
1045
|
+
readonly ":user-invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
1046
|
+
readonly ":user-valid"?: import("@emotion/react").CSSObject | undefined;
|
|
1047
|
+
readonly ":valid"?: import("@emotion/react").CSSObject | undefined;
|
|
1048
|
+
readonly ":visited"?: import("@emotion/react").CSSObject | undefined;
|
|
1049
|
+
} | {
|
|
1050
|
+
readonly ':enabled': {
|
|
1051
|
+
readonly ':focus + [data-focus-indicator]': {
|
|
1052
|
+
boxShadow?: string;
|
|
1053
|
+
outline?: string;
|
|
1054
|
+
outlineOffset?: string;
|
|
1055
|
+
} | {
|
|
1056
|
+
boxShadow: string;
|
|
1057
|
+
outline: string;
|
|
1058
|
+
outlineOffset: string;
|
|
1059
|
+
borderColor: string;
|
|
1060
|
+
} | {
|
|
1061
|
+
"[data-brighte-focus-visible] &": {
|
|
1062
|
+
boxShadow: string;
|
|
1063
|
+
};
|
|
1064
|
+
outline: string;
|
|
1065
|
+
outlineOffset: string;
|
|
1066
|
+
borderColor: string;
|
|
1067
|
+
};
|
|
1068
|
+
};
|
|
1069
|
+
readonly ':focus': {
|
|
1070
|
+
readonly outline: "none";
|
|
1071
|
+
};
|
|
1072
|
+
readonly '&[aria-invalid=true]': {
|
|
1073
|
+
readonly color: string;
|
|
1074
|
+
};
|
|
1075
|
+
readonly whiteSpace: "nowrap";
|
|
1076
|
+
readonly accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
|
|
1077
|
+
readonly alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
|
|
1078
|
+
readonly alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
|
|
1079
|
+
readonly alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
|
|
1080
|
+
readonly alignTracks?: readonly string[] | import("csstype").Property.AlignTracks | readonly import("csstype").Property.AlignTracks[] | undefined;
|
|
1081
|
+
readonly animationComposition?: readonly string[] | import("csstype").Property.AnimationComposition | readonly import("csstype").Property.AnimationComposition[] | undefined;
|
|
1082
|
+
readonly animationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1083
|
+
readonly animationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
1084
|
+
readonly animationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1085
|
+
readonly animationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1086
|
+
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
1087
|
+
readonly animationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
1088
|
+
readonly animationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1089
|
+
readonly animationRangeEnd?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined;
|
|
1090
|
+
readonly animationRangeStart?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined;
|
|
1091
|
+
readonly animationTimeline?: readonly string[] | import("csstype").Property.AnimationTimeline | readonly import("csstype").Property.AnimationTimeline[] | undefined;
|
|
1092
|
+
readonly animationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
1093
|
+
readonly appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
|
|
1094
|
+
readonly aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
|
|
1095
|
+
readonly backdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
|
|
1096
|
+
readonly backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
1097
|
+
readonly backgroundAttachment?: readonly string[] | import("csstype").Property.BackgroundAttachment | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
|
|
1098
|
+
readonly backgroundBlendMode?: readonly string[] | import("csstype").Property.BackgroundBlendMode | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
|
|
1099
|
+
readonly backgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
1100
|
+
readonly backgroundColor?: readonly string[] | import("csstype").Property.BackgroundColor | readonly import("csstype").Property.BackgroundColor[] | undefined;
|
|
1101
|
+
readonly backgroundImage?: readonly string[] | import("csstype").Property.BackgroundImage | readonly import("csstype").Property.BackgroundImage[] | undefined;
|
|
1102
|
+
readonly backgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1103
|
+
readonly backgroundPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined;
|
|
1104
|
+
readonly backgroundPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined;
|
|
1105
|
+
readonly backgroundRepeat?: readonly string[] | import("csstype").Property.BackgroundRepeat | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
1106
|
+
readonly backgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
1107
|
+
readonly blockOverflow?: readonly string[] | import("csstype").Property.BlockOverflow | readonly import("csstype").Property.BlockOverflow[] | undefined;
|
|
1108
|
+
readonly blockSize?: readonly (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
|
|
1109
|
+
readonly borderBlockColor?: readonly string[] | import("csstype").Property.BorderBlockColor | readonly import("csstype").Property.BorderBlockColor[] | undefined;
|
|
1110
|
+
readonly borderBlockEndColor?: readonly string[] | import("csstype").Property.BorderBlockEndColor | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
1111
|
+
readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
1112
|
+
readonly borderBlockEndWidth?: readonly string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
|
|
1113
|
+
readonly borderBlockStartColor?: readonly string[] | import("csstype").Property.BorderBlockStartColor | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
1114
|
+
readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
1115
|
+
readonly borderBlockStartWidth?: readonly string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
|
|
1116
|
+
readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
1117
|
+
readonly borderBlockWidth?: readonly string[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
|
|
1118
|
+
readonly borderBottomColor?: readonly string[] | import("csstype").Property.BorderBottomColor | readonly import("csstype").Property.BorderBottomColor[] | undefined;
|
|
1119
|
+
readonly borderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
1120
|
+
readonly borderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
1121
|
+
readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
1122
|
+
readonly borderBottomWidth?: readonly string[] | import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
|
|
1123
|
+
readonly borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
|
|
1124
|
+
readonly borderEndEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined;
|
|
1125
|
+
readonly borderEndStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined;
|
|
1126
|
+
readonly borderImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined;
|
|
1127
|
+
readonly borderImageRepeat?: readonly string[] | import("csstype").Property.BorderImageRepeat | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
1128
|
+
readonly borderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
|
|
1129
|
+
readonly borderImageSource?: readonly string[] | import("csstype").Property.BorderImageSource | readonly import("csstype").Property.BorderImageSource[] | undefined;
|
|
1130
|
+
readonly borderImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined;
|
|
1131
|
+
readonly borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
|
|
1132
|
+
readonly borderInlineEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
1133
|
+
readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
1134
|
+
readonly borderInlineEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
|
|
1135
|
+
readonly borderInlineStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
1136
|
+
readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
1137
|
+
readonly borderInlineStartWidth?: readonly string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
|
|
1138
|
+
readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
1139
|
+
readonly borderInlineWidth?: readonly string[] | import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
|
|
1140
|
+
readonly borderLeftColor?: readonly string[] | import("csstype").Property.BorderLeftColor | readonly import("csstype").Property.BorderLeftColor[] | undefined;
|
|
1141
|
+
readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
1142
|
+
readonly borderLeftWidth?: readonly string[] | import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
|
|
1143
|
+
readonly borderRightColor?: readonly string[] | import("csstype").Property.BorderRightColor | readonly import("csstype").Property.BorderRightColor[] | undefined;
|
|
1144
|
+
readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
|
|
1145
|
+
readonly borderRightWidth?: readonly string[] | import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
|
|
1146
|
+
readonly borderSpacing?: readonly (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined;
|
|
1147
|
+
readonly borderStartEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
|
|
1148
|
+
readonly borderStartStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
|
|
1149
|
+
readonly borderTopColor?: readonly string[] | import("csstype").Property.BorderTopColor | readonly import("csstype").Property.BorderTopColor[] | undefined;
|
|
1150
|
+
readonly borderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
1151
|
+
readonly borderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
1152
|
+
readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
|
|
1153
|
+
readonly borderTopWidth?: readonly string[] | import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
|
|
1154
|
+
readonly bottom?: readonly (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined;
|
|
1155
|
+
readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1156
|
+
readonly boxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
1157
|
+
readonly boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
1158
|
+
readonly breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
|
|
1159
|
+
readonly breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
|
|
1160
|
+
readonly breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
|
|
1161
|
+
readonly captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
|
|
1162
|
+
readonly caretColor?: readonly string[] | import("csstype").Property.CaretColor | readonly import("csstype").Property.CaretColor[] | undefined;
|
|
1163
|
+
readonly caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
|
|
1164
|
+
readonly clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
|
|
1165
|
+
readonly clipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
|
|
1166
|
+
readonly color?: readonly string[] | import("csstype").Property.Color | readonly import("csstype").Property.Color[] | undefined;
|
|
1167
|
+
readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1168
|
+
readonly colorScheme?: readonly string[] | import("csstype").Property.ColorScheme | readonly import("csstype").Property.ColorScheme[] | undefined;
|
|
1169
|
+
readonly columnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
1170
|
+
readonly columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
1171
|
+
readonly columnGap?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined;
|
|
1172
|
+
readonly columnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1173
|
+
readonly columnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1174
|
+
readonly columnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
1175
|
+
readonly columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
|
|
1176
|
+
readonly columnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
1177
|
+
readonly contain?: readonly string[] | import("csstype").Property.Contain | readonly import("csstype").Property.Contain[] | undefined;
|
|
1178
|
+
readonly containIntrinsicBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined;
|
|
1179
|
+
readonly containIntrinsicHeight?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined;
|
|
1180
|
+
readonly containIntrinsicInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined;
|
|
1181
|
+
readonly containIntrinsicWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined;
|
|
1182
|
+
readonly containerName?: readonly string[] | import("csstype").Property.ContainerName | readonly import("csstype").Property.ContainerName[] | undefined;
|
|
1183
|
+
readonly containerType?: import("csstype").Property.ContainerType | readonly NonNullable<import("csstype").Property.ContainerType | undefined>[] | readonly import("csstype").Property.ContainerType[] | undefined;
|
|
1184
|
+
readonly content?: readonly string[] | import("csstype").Property.Content | readonly import("csstype").Property.Content[] | undefined;
|
|
1185
|
+
readonly contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
|
|
1186
|
+
readonly counterIncrement?: readonly string[] | import("csstype").Property.CounterIncrement | readonly import("csstype").Property.CounterIncrement[] | undefined;
|
|
1187
|
+
readonly counterReset?: readonly string[] | import("csstype").Property.CounterReset | readonly import("csstype").Property.CounterReset[] | undefined;
|
|
1188
|
+
readonly counterSet?: readonly string[] | import("csstype").Property.CounterSet | readonly import("csstype").Property.CounterSet[] | undefined;
|
|
1189
|
+
readonly cursor?: readonly string[] | import("csstype").Property.Cursor | readonly import("csstype").Property.Cursor[] | undefined;
|
|
1190
|
+
readonly direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
|
|
1191
|
+
readonly display?: readonly string[] | import("csstype").Property.Display | readonly import("csstype").Property.Display[] | undefined;
|
|
1192
|
+
readonly emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
|
|
1193
|
+
readonly filter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
|
|
1194
|
+
readonly flexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
|
|
1195
|
+
readonly flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
1196
|
+
readonly flexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
1197
|
+
readonly flexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
|
|
1198
|
+
readonly flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
|
|
1199
|
+
readonly float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
|
|
1200
|
+
readonly fontFamily?: readonly string[] | import("csstype").Property.FontFamily | readonly import("csstype").Property.FontFamily[] | undefined;
|
|
1201
|
+
readonly fontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
1202
|
+
readonly fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
|
|
1203
|
+
readonly fontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
1204
|
+
readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
|
|
1205
|
+
readonly fontPalette?: readonly string[] | import("csstype").Property.FontPalette | readonly import("csstype").Property.FontPalette[] | undefined;
|
|
1206
|
+
readonly fontSize?: readonly (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined;
|
|
1207
|
+
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals | "from-font")[] | undefined;
|
|
1208
|
+
readonly fontSmooth?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
1209
|
+
readonly fontStretch?: readonly string[] | import("csstype").Property.FontStretch | readonly import("csstype").Property.FontStretch[] | undefined;
|
|
1210
|
+
readonly fontStyle?: readonly string[] | import("csstype").Property.FontStyle | readonly import("csstype").Property.FontStyle[] | undefined;
|
|
1211
|
+
readonly fontSynthesis?: readonly string[] | import("csstype").Property.FontSynthesis | readonly import("csstype").Property.FontSynthesis[] | undefined;
|
|
1212
|
+
readonly fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
|
|
1213
|
+
readonly fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
|
|
1214
|
+
readonly fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
|
|
1215
|
+
readonly fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
|
|
1216
|
+
readonly fontVariant?: readonly string[] | import("csstype").Property.FontVariant | readonly import("csstype").Property.FontVariant[] | undefined;
|
|
1217
|
+
readonly fontVariantAlternates?: readonly string[] | import("csstype").Property.FontVariantAlternates | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
|
|
1218
|
+
readonly fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
|
|
1219
|
+
readonly fontVariantEastAsian?: readonly string[] | import("csstype").Property.FontVariantEastAsian | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
|
|
1220
|
+
readonly fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
|
|
1221
|
+
readonly fontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
1222
|
+
readonly fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
1223
|
+
readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
|
|
1224
|
+
readonly fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[] | undefined;
|
|
1225
|
+
readonly fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ("bold" | (string & {}) | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
|
|
1226
|
+
readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
1227
|
+
readonly gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined;
|
|
1228
|
+
readonly gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[] | undefined;
|
|
1229
|
+
readonly gridAutoRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined;
|
|
1230
|
+
readonly gridColumnEnd?: import("csstype").Property.GridColumnEnd | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined;
|
|
1231
|
+
readonly gridColumnStart?: import("csstype").Property.GridColumnStart | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined;
|
|
1232
|
+
readonly gridRowEnd?: import("csstype").Property.GridRowEnd | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined;
|
|
1233
|
+
readonly gridRowStart?: import("csstype").Property.GridRowStart | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined;
|
|
1234
|
+
readonly gridTemplateAreas?: readonly string[] | import("csstype").Property.GridTemplateAreas | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
1235
|
+
readonly gridTemplateColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
|
|
1236
|
+
readonly gridTemplateRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined;
|
|
1237
|
+
readonly hangingPunctuation?: readonly string[] | import("csstype").Property.HangingPunctuation | readonly import("csstype").Property.HangingPunctuation[] | undefined;
|
|
1238
|
+
readonly height?: readonly (string | (string & {}))[] | import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined;
|
|
1239
|
+
readonly hyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
1240
|
+
readonly hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined;
|
|
1241
|
+
readonly hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
1242
|
+
readonly imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[] | undefined;
|
|
1243
|
+
readonly imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
|
|
1244
|
+
readonly imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[] | undefined;
|
|
1245
|
+
readonly initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
|
|
1246
|
+
readonly inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
|
|
1247
|
+
readonly inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity | undefined>[] | readonly import("csstype").Property.InputSecurity[] | undefined;
|
|
1248
|
+
readonly insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
|
|
1249
|
+
readonly insetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
|
|
1250
|
+
readonly insetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
|
|
1251
|
+
readonly insetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
|
|
1252
|
+
readonly isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
|
|
1253
|
+
readonly justifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
|
|
1254
|
+
readonly justifyItems?: readonly string[] | import("csstype").Property.JustifyItems | readonly import("csstype").Property.JustifyItems[] | undefined;
|
|
1255
|
+
readonly justifySelf?: readonly string[] | import("csstype").Property.JustifySelf | readonly import("csstype").Property.JustifySelf[] | undefined;
|
|
1256
|
+
readonly justifyTracks?: readonly string[] | import("csstype").Property.JustifyTracks | readonly import("csstype").Property.JustifyTracks[] | undefined;
|
|
1257
|
+
readonly left?: readonly (string | (string & {}))[] | import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined;
|
|
1258
|
+
readonly letterSpacing?: readonly string[] | import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
|
|
1259
|
+
readonly lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
1260
|
+
readonly lineHeight?: readonly (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined;
|
|
1261
|
+
readonly lineHeightStep?: readonly string[] | import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
|
|
1262
|
+
readonly listStyleImage?: readonly string[] | import("csstype").Property.ListStyleImage | readonly import("csstype").Property.ListStyleImage[] | undefined;
|
|
1263
|
+
readonly listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
|
|
1264
|
+
readonly listStyleType?: readonly string[] | import("csstype").Property.ListStyleType | readonly import("csstype").Property.ListStyleType[] | undefined;
|
|
1265
|
+
readonly marginBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined;
|
|
1266
|
+
readonly marginBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined;
|
|
1267
|
+
readonly marginBottom?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined;
|
|
1268
|
+
readonly marginInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
1269
|
+
readonly marginInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
1270
|
+
readonly marginLeft?: readonly (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined;
|
|
1271
|
+
readonly marginRight?: readonly (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined;
|
|
1272
|
+
readonly marginTop?: readonly (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined;
|
|
1273
|
+
readonly marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
|
|
1274
|
+
readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
|
|
1275
|
+
readonly maskBorderOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
|
|
1276
|
+
readonly maskBorderRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
1277
|
+
readonly maskBorderSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
|
|
1278
|
+
readonly maskBorderSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
|
|
1279
|
+
readonly maskBorderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
|
|
1280
|
+
readonly maskClip?: readonly string[] | import("csstype").Property.MaskClip | readonly import("csstype").Property.MaskClip[] | undefined;
|
|
1281
|
+
readonly maskComposite?: readonly string[] | import("csstype").Property.MaskComposite | readonly import("csstype").Property.MaskComposite[] | undefined;
|
|
1282
|
+
readonly maskImage?: readonly string[] | import("csstype").Property.MaskImage | readonly import("csstype").Property.MaskImage[] | undefined;
|
|
1283
|
+
readonly maskMode?: readonly string[] | import("csstype").Property.MaskMode | readonly import("csstype").Property.MaskMode[] | undefined;
|
|
1284
|
+
readonly maskOrigin?: readonly string[] | import("csstype").Property.MaskOrigin | readonly import("csstype").Property.MaskOrigin[] | undefined;
|
|
1285
|
+
readonly maskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined;
|
|
1286
|
+
readonly maskRepeat?: readonly string[] | import("csstype").Property.MaskRepeat | readonly import("csstype").Property.MaskRepeat[] | undefined;
|
|
1287
|
+
readonly maskSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined;
|
|
1288
|
+
readonly maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
|
|
1289
|
+
readonly masonryAutoFlow?: readonly string[] | import("csstype").Property.MasonryAutoFlow | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
|
|
1290
|
+
readonly mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "auto-add")[] | undefined;
|
|
1291
|
+
readonly mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
|
|
1292
|
+
readonly mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
|
|
1293
|
+
readonly maxBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined;
|
|
1294
|
+
readonly maxHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined;
|
|
1295
|
+
readonly maxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
|
|
1296
|
+
readonly maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
|
|
1297
|
+
readonly maxWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined;
|
|
1298
|
+
readonly minBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined;
|
|
1299
|
+
readonly minHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined;
|
|
1300
|
+
readonly minInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined;
|
|
1301
|
+
readonly minWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined;
|
|
1302
|
+
readonly mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
|
|
1303
|
+
readonly motionDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
|
|
1304
|
+
readonly motionPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
|
|
1305
|
+
readonly motionRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
1306
|
+
readonly objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
|
|
1307
|
+
readonly objectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
|
|
1308
|
+
readonly offsetAnchor?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined;
|
|
1309
|
+
readonly offsetDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
|
|
1310
|
+
readonly offsetPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
|
|
1311
|
+
readonly offsetPosition?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined;
|
|
1312
|
+
readonly offsetRotate?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
1313
|
+
readonly offsetRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
1314
|
+
readonly opacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
1315
|
+
readonly order?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
1316
|
+
readonly orphans?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined;
|
|
1317
|
+
readonly outlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
|
|
1318
|
+
readonly outlineOffset?: readonly string[] | import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
|
|
1319
|
+
readonly outlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
|
|
1320
|
+
readonly outlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
|
|
1321
|
+
readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
|
|
1322
|
+
readonly overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
|
|
1323
|
+
readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
|
|
1324
|
+
readonly overflowClipMargin?: readonly (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined;
|
|
1325
|
+
readonly overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
|
|
1326
|
+
readonly overflowWrap?: import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | readonly import("csstype").Property.OverflowWrap[] | undefined;
|
|
1327
|
+
readonly overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
|
|
1328
|
+
readonly overflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
|
|
1329
|
+
readonly overlay?: import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | readonly import("csstype").Property.Overlay[] | undefined;
|
|
1330
|
+
readonly overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
|
|
1331
|
+
readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
1332
|
+
readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
1333
|
+
readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
|
|
1334
|
+
readonly paddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined;
|
|
1335
|
+
readonly paddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined;
|
|
1336
|
+
readonly paddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined;
|
|
1337
|
+
readonly paddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
1338
|
+
readonly paddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
1339
|
+
readonly paddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined;
|
|
1340
|
+
readonly paddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined;
|
|
1341
|
+
readonly paddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined;
|
|
1342
|
+
readonly page?: readonly string[] | import("csstype").Property.Page | readonly import("csstype").Property.Page[] | undefined;
|
|
1343
|
+
readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
|
|
1344
|
+
readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
|
|
1345
|
+
readonly pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
|
|
1346
|
+
readonly paintOrder?: readonly string[] | import("csstype").Property.PaintOrder | readonly import("csstype").Property.PaintOrder[] | undefined;
|
|
1347
|
+
readonly perspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
1348
|
+
readonly perspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
1349
|
+
readonly pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
|
|
1350
|
+
readonly position?: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | readonly import("csstype").Property.Position[] | undefined;
|
|
1351
|
+
readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1352
|
+
readonly quotes?: readonly string[] | import("csstype").Property.Quotes | readonly import("csstype").Property.Quotes[] | undefined;
|
|
1353
|
+
readonly resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
|
|
1354
|
+
readonly right?: readonly (string | (string & {}))[] | import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined;
|
|
1355
|
+
readonly rotate?: readonly string[] | import("csstype").Property.Rotate | readonly import("csstype").Property.Rotate[] | undefined;
|
|
1356
|
+
readonly rowGap?: readonly (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined;
|
|
1357
|
+
readonly rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
|
|
1358
|
+
readonly rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
|
|
1359
|
+
readonly rubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
|
|
1360
|
+
readonly scale?: import("csstype").Property.Scale | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined;
|
|
1361
|
+
readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
|
|
1362
|
+
readonly scrollMarginBlockEnd?: readonly string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
|
|
1363
|
+
readonly scrollMarginBlockStart?: readonly string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
|
|
1364
|
+
readonly scrollMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
|
|
1365
|
+
readonly scrollMarginInlineEnd?: readonly string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
1366
|
+
readonly scrollMarginInlineStart?: readonly string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
|
|
1367
|
+
readonly scrollMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
|
|
1368
|
+
readonly scrollMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
|
|
1369
|
+
readonly scrollMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
|
|
1370
|
+
readonly scrollPaddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined;
|
|
1371
|
+
readonly scrollPaddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined;
|
|
1372
|
+
readonly scrollPaddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined;
|
|
1373
|
+
readonly scrollPaddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
1374
|
+
readonly scrollPaddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
1375
|
+
readonly scrollPaddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined;
|
|
1376
|
+
readonly scrollPaddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined;
|
|
1377
|
+
readonly scrollPaddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined;
|
|
1378
|
+
readonly scrollSnapAlign?: readonly string[] | import("csstype").Property.ScrollSnapAlign | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
|
|
1379
|
+
readonly scrollSnapMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
|
|
1380
|
+
readonly scrollSnapMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
|
|
1381
|
+
readonly scrollSnapMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
|
|
1382
|
+
readonly scrollSnapMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
|
|
1383
|
+
readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
1384
|
+
readonly scrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
|
|
1385
|
+
readonly scrollTimelineAxis?: readonly string[] | import("csstype").Property.ScrollTimelineAxis | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
|
|
1386
|
+
readonly scrollTimelineName?: readonly string[] | import("csstype").Property.ScrollTimelineName | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
|
|
1387
|
+
readonly scrollbarColor?: readonly string[] | import("csstype").Property.ScrollbarColor | readonly import("csstype").Property.ScrollbarColor[] | undefined;
|
|
1388
|
+
readonly scrollbarGutter?: readonly string[] | import("csstype").Property.ScrollbarGutter | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
1389
|
+
readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
1390
|
+
readonly shapeImageThreshold?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined;
|
|
1391
|
+
readonly shapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
|
|
1392
|
+
readonly shapeOutside?: readonly string[] | import("csstype").Property.ShapeOutside | readonly import("csstype").Property.ShapeOutside[] | undefined;
|
|
1393
|
+
readonly tabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
1394
|
+
readonly tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
|
|
1395
|
+
readonly textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
|
|
1396
|
+
readonly textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
|
|
1397
|
+
readonly textCombineUpright?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
1398
|
+
readonly textDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
1399
|
+
readonly textDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
1400
|
+
readonly textDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
1401
|
+
readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
1402
|
+
readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
1403
|
+
readonly textDecorationThickness?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined;
|
|
1404
|
+
readonly textEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
1405
|
+
readonly textEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
1406
|
+
readonly textEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
1407
|
+
readonly textIndent?: readonly (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined;
|
|
1408
|
+
readonly textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
|
|
1409
|
+
readonly textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
|
|
1410
|
+
readonly textOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
1411
|
+
readonly textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
|
|
1412
|
+
readonly textShadow?: readonly string[] | import("csstype").Property.TextShadow | readonly import("csstype").Property.TextShadow[] | undefined;
|
|
1413
|
+
readonly textSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1414
|
+
readonly textTransform?: import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | readonly import("csstype").Property.TextTransform[] | undefined;
|
|
1415
|
+
readonly textUnderlineOffset?: readonly (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined;
|
|
1416
|
+
readonly textUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
1417
|
+
readonly textWrap?: import("csstype").Property.TextWrap | readonly NonNullable<import("csstype").Property.TextWrap | undefined>[] | readonly import("csstype").Property.TextWrap[] | undefined;
|
|
1418
|
+
readonly timelineScope?: readonly string[] | import("csstype").Property.TimelineScope | readonly import("csstype").Property.TimelineScope[] | undefined;
|
|
1419
|
+
readonly top?: readonly (string | (string & {}))[] | import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined;
|
|
1420
|
+
readonly touchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
|
|
1421
|
+
readonly transform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
1422
|
+
readonly transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
|
|
1423
|
+
readonly transformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
1424
|
+
readonly transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
1425
|
+
readonly transitionBehavior?: readonly string[] | import("csstype").Property.TransitionBehavior | readonly import("csstype").Property.TransitionBehavior[] | undefined;
|
|
1426
|
+
readonly transitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1427
|
+
readonly transitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1428
|
+
readonly transitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
1429
|
+
readonly transitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1430
|
+
readonly translate?: readonly (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined;
|
|
1431
|
+
readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
|
|
1432
|
+
readonly userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
1433
|
+
readonly verticalAlign?: readonly (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined;
|
|
1434
|
+
readonly viewTimelineAxis?: readonly string[] | import("csstype").Property.ViewTimelineAxis | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
|
|
1435
|
+
readonly viewTimelineInset?: readonly (string | (string & {}))[] | import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined;
|
|
1436
|
+
readonly viewTimelineName?: readonly string[] | import("csstype").Property.ViewTimelineName | readonly import("csstype").Property.ViewTimelineName[] | undefined;
|
|
1437
|
+
readonly viewTransitionName?: readonly string[] | import("csstype").Property.ViewTransitionName | readonly import("csstype").Property.ViewTransitionName[] | undefined;
|
|
1438
|
+
readonly visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
|
|
1439
|
+
readonly whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
|
|
1440
|
+
readonly whiteSpaceTrim?: readonly string[] | import("csstype").Property.WhiteSpaceTrim | readonly import("csstype").Property.WhiteSpaceTrim[] | undefined;
|
|
1441
|
+
readonly widows?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined;
|
|
1442
|
+
readonly width?: readonly (string | (string & {}))[] | import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined;
|
|
1443
|
+
readonly willChange?: readonly string[] | import("csstype").Property.WillChange | readonly import("csstype").Property.WillChange[] | undefined;
|
|
1444
|
+
readonly wordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
|
|
1445
|
+
readonly wordSpacing?: readonly string[] | import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
1446
|
+
readonly wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
1447
|
+
readonly writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
1448
|
+
readonly zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | undefined;
|
|
1449
|
+
readonly zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
|
|
1450
|
+
readonly all?: import("csstype").Globals | readonly NonNullable<import("csstype").Globals | undefined>[] | readonly import("csstype").Globals[] | undefined;
|
|
1451
|
+
readonly animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
1452
|
+
readonly animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined;
|
|
1453
|
+
readonly background?: readonly (string | (string & {}))[] | import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined;
|
|
1454
|
+
readonly backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined;
|
|
1455
|
+
readonly border?: import("csstype").Property.Border<string | number> | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
|
|
1456
|
+
readonly borderBlock?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined;
|
|
1457
|
+
readonly borderBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined;
|
|
1458
|
+
readonly borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined;
|
|
1459
|
+
readonly borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
|
|
1460
|
+
readonly borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
|
|
1461
|
+
readonly borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
1462
|
+
readonly borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
|
|
1463
|
+
readonly borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
|
|
1464
|
+
readonly borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined;
|
|
1465
|
+
readonly borderLeft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined;
|
|
1466
|
+
readonly borderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
1467
|
+
readonly borderRight?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined;
|
|
1468
|
+
readonly borderStyle?: readonly string[] | import("csstype").Property.BorderStyle | readonly import("csstype").Property.BorderStyle[] | undefined;
|
|
1469
|
+
readonly borderTop?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined;
|
|
1470
|
+
readonly borderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined;
|
|
1471
|
+
readonly caret?: readonly string[] | import("csstype").Property.Caret | readonly import("csstype").Property.Caret[] | undefined;
|
|
1472
|
+
readonly columnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
1473
|
+
readonly columns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
1474
|
+
readonly containIntrinsicSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined;
|
|
1475
|
+
readonly container?: readonly string[] | import("csstype").Property.Container | readonly import("csstype").Property.Container[] | undefined;
|
|
1476
|
+
readonly flex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
1477
|
+
readonly flexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
|
|
1478
|
+
readonly font?: readonly string[] | import("csstype").Property.Font | readonly import("csstype").Property.Font[] | undefined;
|
|
1479
|
+
readonly gap?: readonly (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined;
|
|
1480
|
+
readonly grid?: readonly string[] | import("csstype").Property.Grid | readonly import("csstype").Property.Grid[] | undefined;
|
|
1481
|
+
readonly gridArea?: import("csstype").Property.GridArea | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined;
|
|
1482
|
+
readonly gridColumn?: import("csstype").Property.GridColumn | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined;
|
|
1483
|
+
readonly gridRow?: import("csstype").Property.GridRow | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined;
|
|
1484
|
+
readonly gridTemplate?: readonly string[] | import("csstype").Property.GridTemplate | readonly import("csstype").Property.GridTemplate[] | undefined;
|
|
1485
|
+
readonly inset?: readonly (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined;
|
|
1486
|
+
readonly insetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
|
|
1487
|
+
readonly insetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
|
|
1488
|
+
readonly lineClamp?: import("csstype").Property.LineClamp | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined;
|
|
1489
|
+
readonly listStyle?: readonly string[] | import("csstype").Property.ListStyle | readonly import("csstype").Property.ListStyle[] | undefined;
|
|
1490
|
+
readonly margin?: readonly (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined;
|
|
1491
|
+
readonly marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
|
|
1492
|
+
readonly marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
|
|
1493
|
+
readonly mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
|
|
1494
|
+
readonly maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
|
|
1495
|
+
readonly motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
|
|
1496
|
+
readonly offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
|
|
1497
|
+
readonly outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
|
|
1498
|
+
readonly overflow?: readonly string[] | import("csstype").Property.Overflow | readonly import("csstype").Property.Overflow[] | undefined;
|
|
1499
|
+
readonly overscrollBehavior?: readonly string[] | import("csstype").Property.OverscrollBehavior | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
1500
|
+
readonly padding?: readonly (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined;
|
|
1501
|
+
readonly paddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined;
|
|
1502
|
+
readonly paddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined;
|
|
1503
|
+
readonly placeContent?: readonly string[] | import("csstype").Property.PlaceContent | readonly import("csstype").Property.PlaceContent[] | undefined;
|
|
1504
|
+
readonly placeItems?: readonly string[] | import("csstype").Property.PlaceItems | readonly import("csstype").Property.PlaceItems[] | undefined;
|
|
1505
|
+
readonly placeSelf?: readonly string[] | import("csstype").Property.PlaceSelf | readonly import("csstype").Property.PlaceSelf[] | undefined;
|
|
1506
|
+
readonly scrollMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
|
|
1507
|
+
readonly scrollMarginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined;
|
|
1508
|
+
readonly scrollMarginInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined;
|
|
1509
|
+
readonly scrollPadding?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined;
|
|
1510
|
+
readonly scrollPaddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined;
|
|
1511
|
+
readonly scrollPaddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined;
|
|
1512
|
+
readonly scrollSnapMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
|
|
1513
|
+
readonly scrollTimeline?: readonly string[] | import("csstype").Property.ScrollTimeline | readonly import("csstype").Property.ScrollTimeline[] | undefined;
|
|
1514
|
+
readonly textDecoration?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined;
|
|
1515
|
+
readonly textEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
|
|
1516
|
+
readonly transition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1517
|
+
readonly viewTimeline?: readonly string[] | import("csstype").Property.ViewTimeline | readonly import("csstype").Property.ViewTimeline[] | undefined;
|
|
1518
|
+
readonly MozAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1519
|
+
readonly MozAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
1520
|
+
readonly MozAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1521
|
+
readonly MozAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1522
|
+
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
1523
|
+
readonly MozAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
1524
|
+
readonly MozAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1525
|
+
readonly MozAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
1526
|
+
readonly MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
|
|
1527
|
+
readonly MozBinding?: readonly string[] | import("csstype").Property.MozBinding | readonly import("csstype").Property.MozBinding[] | undefined;
|
|
1528
|
+
readonly MozBorderBottomColors?: readonly string[] | import("csstype").Property.MozBorderBottomColors | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
1529
|
+
readonly MozBorderEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
1530
|
+
readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
1531
|
+
readonly MozBorderEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
|
|
1532
|
+
readonly MozBorderLeftColors?: readonly string[] | import("csstype").Property.MozBorderLeftColors | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
1533
|
+
readonly MozBorderRightColors?: readonly string[] | import("csstype").Property.MozBorderRightColors | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
1534
|
+
readonly MozBorderStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
1535
|
+
readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
1536
|
+
readonly MozBorderTopColors?: readonly string[] | import("csstype").Property.MozBorderTopColors | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
1537
|
+
readonly MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
1538
|
+
readonly MozColumnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
1539
|
+
readonly MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
1540
|
+
readonly MozColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1541
|
+
readonly MozColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1542
|
+
readonly MozColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
1543
|
+
readonly MozColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
1544
|
+
readonly MozContextProperties?: readonly string[] | import("csstype").Property.MozContextProperties | readonly import("csstype").Property.MozContextProperties[] | undefined;
|
|
1545
|
+
readonly MozFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
1546
|
+
readonly MozFontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
1547
|
+
readonly MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
1548
|
+
readonly MozImageRegion?: readonly string[] | import("csstype").Property.MozImageRegion | readonly import("csstype").Property.MozImageRegion[] | undefined;
|
|
1549
|
+
readonly MozMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
1550
|
+
readonly MozMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
1551
|
+
readonly MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
|
|
1552
|
+
readonly MozOsxFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
1553
|
+
readonly MozOutlineRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined;
|
|
1554
|
+
readonly MozOutlineRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined;
|
|
1555
|
+
readonly MozOutlineRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined;
|
|
1556
|
+
readonly MozOutlineRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined;
|
|
1557
|
+
readonly MozPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
1558
|
+
readonly MozPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
1559
|
+
readonly MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
|
|
1560
|
+
readonly MozTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
1561
|
+
readonly MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
|
|
1562
|
+
readonly MozTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1563
|
+
readonly MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
|
|
1564
|
+
readonly MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
|
|
1565
|
+
readonly MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
1566
|
+
readonly MozWindowDragging?: import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | readonly import("csstype").Property.MozWindowDragging[] | undefined;
|
|
1567
|
+
readonly MozWindowShadow?: import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | readonly import("csstype").Property.MozWindowShadow[] | undefined;
|
|
1568
|
+
readonly msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
|
|
1569
|
+
readonly msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
|
|
1570
|
+
readonly msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
|
|
1571
|
+
readonly msContentZoomLimitMax?: readonly string[] | import("csstype").Property.MsContentZoomLimitMax | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
|
|
1572
|
+
readonly msContentZoomLimitMin?: readonly string[] | import("csstype").Property.MsContentZoomLimitMin | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
|
|
1573
|
+
readonly msContentZoomSnapPoints?: readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
|
|
1574
|
+
readonly msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
|
|
1575
|
+
readonly msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
|
|
1576
|
+
readonly msFilter?: readonly string[] | import("csstype").Property.MsFilter | readonly import("csstype").Property.MsFilter[] | undefined;
|
|
1577
|
+
readonly msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
1578
|
+
readonly msFlexPositive?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
1579
|
+
readonly msFlowFrom?: readonly string[] | import("csstype").Property.MsFlowFrom | readonly import("csstype").Property.MsFlowFrom[] | undefined;
|
|
1580
|
+
readonly msFlowInto?: readonly string[] | import("csstype").Property.MsFlowInto | readonly import("csstype").Property.MsFlowInto[] | undefined;
|
|
1581
|
+
readonly msGridColumns?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined;
|
|
1582
|
+
readonly msGridRows?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined;
|
|
1583
|
+
readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
|
|
1584
|
+
readonly msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined;
|
|
1585
|
+
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "no-limit")[] | undefined;
|
|
1586
|
+
readonly msHyphenateLimitZone?: readonly (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
|
|
1587
|
+
readonly msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
1588
|
+
readonly msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
|
|
1589
|
+
readonly msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
1590
|
+
readonly msOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
1591
|
+
readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
1592
|
+
readonly msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
|
|
1593
|
+
readonly msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
|
|
1594
|
+
readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
|
|
1595
|
+
readonly msScrollLimitXMax?: readonly string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
|
|
1596
|
+
readonly msScrollLimitXMin?: readonly string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
|
|
1597
|
+
readonly msScrollLimitYMax?: readonly string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
|
|
1598
|
+
readonly msScrollLimitYMin?: readonly string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
|
|
1599
|
+
readonly msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
|
|
1600
|
+
readonly msScrollSnapPointsX?: readonly string[] | import("csstype").Property.MsScrollSnapPointsX | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
1601
|
+
readonly msScrollSnapPointsY?: readonly string[] | import("csstype").Property.MsScrollSnapPointsY | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
1602
|
+
readonly msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
|
|
1603
|
+
readonly msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
|
|
1604
|
+
readonly msScrollbar3dlightColor?: readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
|
|
1605
|
+
readonly msScrollbarArrowColor?: readonly string[] | import("csstype").Property.MsScrollbarArrowColor | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
|
|
1606
|
+
readonly msScrollbarBaseColor?: readonly string[] | import("csstype").Property.MsScrollbarBaseColor | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
|
|
1607
|
+
readonly msScrollbarDarkshadowColor?: readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
|
|
1608
|
+
readonly msScrollbarFaceColor?: readonly string[] | import("csstype").Property.MsScrollbarFaceColor | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
|
|
1609
|
+
readonly msScrollbarHighlightColor?: readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
|
|
1610
|
+
readonly msScrollbarShadowColor?: readonly string[] | import("csstype").Property.MsScrollbarShadowColor | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
|
|
1611
|
+
readonly msScrollbarTrackColor?: readonly string[] | import("csstype").Property.MsScrollbarTrackColor | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
1612
|
+
readonly msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
|
|
1613
|
+
readonly msTextCombineHorizontal?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
1614
|
+
readonly msTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
1615
|
+
readonly msTouchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
|
|
1616
|
+
readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
|
|
1617
|
+
readonly msTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
1618
|
+
readonly msTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
1619
|
+
readonly msTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1620
|
+
readonly msTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1621
|
+
readonly msTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
1622
|
+
readonly msTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1623
|
+
readonly msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
|
|
1624
|
+
readonly msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
|
|
1625
|
+
readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
|
|
1626
|
+
readonly msWrapMargin?: readonly string[] | import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
|
|
1627
|
+
readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
|
|
1628
|
+
readonly msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
1629
|
+
readonly WebkitAlignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
|
|
1630
|
+
readonly WebkitAlignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
|
|
1631
|
+
readonly WebkitAlignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
|
|
1632
|
+
readonly WebkitAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1633
|
+
readonly WebkitAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
1634
|
+
readonly WebkitAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1635
|
+
readonly WebkitAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1636
|
+
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
1637
|
+
readonly WebkitAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
1638
|
+
readonly WebkitAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1639
|
+
readonly WebkitAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
1640
|
+
readonly WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
|
|
1641
|
+
readonly WebkitBackdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
|
|
1642
|
+
readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
1643
|
+
readonly WebkitBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
1644
|
+
readonly WebkitBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1645
|
+
readonly WebkitBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
1646
|
+
readonly WebkitBorderBeforeColor?: readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
1647
|
+
readonly WebkitBorderBeforeStyle?: readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
|
|
1648
|
+
readonly WebkitBorderBeforeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined;
|
|
1649
|
+
readonly WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
1650
|
+
readonly WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
1651
|
+
readonly WebkitBorderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
|
|
1652
|
+
readonly WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
1653
|
+
readonly WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
1654
|
+
readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1655
|
+
readonly WebkitBoxReflect?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
|
|
1656
|
+
readonly WebkitBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
1657
|
+
readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
1658
|
+
readonly WebkitClipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
|
|
1659
|
+
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
1660
|
+
readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
1661
|
+
readonly WebkitColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1662
|
+
readonly WebkitColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1663
|
+
readonly WebkitColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
1664
|
+
readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
|
|
1665
|
+
readonly WebkitColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
1666
|
+
readonly WebkitFilter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
|
|
1667
|
+
readonly WebkitFlexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
|
|
1668
|
+
readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
1669
|
+
readonly WebkitFlexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
1670
|
+
readonly WebkitFlexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
|
|
1671
|
+
readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
|
|
1672
|
+
readonly WebkitFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
1673
|
+
readonly WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
|
|
1674
|
+
readonly WebkitFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
1675
|
+
readonly WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
1676
|
+
readonly WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
1677
|
+
readonly WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
1678
|
+
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
|
|
1679
|
+
readonly WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
|
|
1680
|
+
readonly WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
1681
|
+
readonly WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined;
|
|
1682
|
+
readonly WebkitMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
1683
|
+
readonly WebkitMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
1684
|
+
readonly WebkitMaskAttachment?: readonly string[] | import("csstype").Property.WebkitMaskAttachment | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
1685
|
+
readonly WebkitMaskBoxImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
|
|
1686
|
+
readonly WebkitMaskBoxImageRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
1687
|
+
readonly WebkitMaskBoxImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
|
|
1688
|
+
readonly WebkitMaskBoxImageSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
|
|
1689
|
+
readonly WebkitMaskBoxImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
|
|
1690
|
+
readonly WebkitMaskClip?: readonly string[] | import("csstype").Property.WebkitMaskClip | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
1691
|
+
readonly WebkitMaskComposite?: readonly string[] | import("csstype").Property.WebkitMaskComposite | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
1692
|
+
readonly WebkitMaskImage?: readonly string[] | import("csstype").Property.WebkitMaskImage | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
1693
|
+
readonly WebkitMaskOrigin?: readonly string[] | import("csstype").Property.WebkitMaskOrigin | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
1694
|
+
readonly WebkitMaskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined;
|
|
1695
|
+
readonly WebkitMaskPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined;
|
|
1696
|
+
readonly WebkitMaskPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined;
|
|
1697
|
+
readonly WebkitMaskRepeat?: readonly string[] | import("csstype").Property.WebkitMaskRepeat | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
1698
|
+
readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
1699
|
+
readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
1700
|
+
readonly WebkitMaskSize?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined;
|
|
1701
|
+
readonly WebkitMaxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
|
|
1702
|
+
readonly WebkitOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
1703
|
+
readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
1704
|
+
readonly WebkitPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
1705
|
+
readonly WebkitPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
1706
|
+
readonly WebkitPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
1707
|
+
readonly WebkitPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
1708
|
+
readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1709
|
+
readonly WebkitRubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
|
|
1710
|
+
readonly WebkitScrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
|
|
1711
|
+
readonly WebkitShapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
|
|
1712
|
+
readonly WebkitTapHighlightColor?: readonly string[] | import("csstype").Property.WebkitTapHighlightColor | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
1713
|
+
readonly WebkitTextCombine?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
1714
|
+
readonly WebkitTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
1715
|
+
readonly WebkitTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
1716
|
+
readonly WebkitTextDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
1717
|
+
readonly WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
1718
|
+
readonly WebkitTextEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
1719
|
+
readonly WebkitTextEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
1720
|
+
readonly WebkitTextEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
1721
|
+
readonly WebkitTextFillColor?: readonly string[] | import("csstype").Property.WebkitTextFillColor | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
|
|
1722
|
+
readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
|
|
1723
|
+
readonly WebkitTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1724
|
+
readonly WebkitTextStrokeColor?: readonly string[] | import("csstype").Property.WebkitTextStrokeColor | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
1725
|
+
readonly WebkitTextStrokeWidth?: readonly string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
|
|
1726
|
+
readonly WebkitTextUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
1727
|
+
readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
1728
|
+
readonly WebkitTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
1729
|
+
readonly WebkitTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
1730
|
+
readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
1731
|
+
readonly WebkitTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1732
|
+
readonly WebkitTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1733
|
+
readonly WebkitTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
1734
|
+
readonly WebkitTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1735
|
+
readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
|
|
1736
|
+
readonly WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
1737
|
+
readonly WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
1738
|
+
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
1739
|
+
readonly MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
1740
|
+
readonly MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
1741
|
+
readonly MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
1742
|
+
readonly MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
|
|
1743
|
+
readonly msContentZoomLimit?: readonly string[] | import("csstype").Property.MsContentZoomLimit | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
1744
|
+
readonly msContentZoomSnap?: readonly string[] | import("csstype").Property.MsContentZoomSnap | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
1745
|
+
readonly msFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
1746
|
+
readonly msScrollLimit?: readonly string[] | import("csstype").Property.MsScrollLimit | readonly import("csstype").Property.MsScrollLimit[] | undefined;
|
|
1747
|
+
readonly msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
1748
|
+
readonly msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
1749
|
+
readonly msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1750
|
+
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
1751
|
+
readonly WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
|
|
1752
|
+
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
1753
|
+
readonly WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
1754
|
+
readonly WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
1755
|
+
readonly WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
1756
|
+
readonly WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
1757
|
+
readonly WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
|
|
1758
|
+
readonly WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
|
|
1759
|
+
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
|
|
1760
|
+
readonly WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
|
|
1761
|
+
readonly WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
|
|
1762
|
+
readonly WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1763
|
+
readonly azimuth?: readonly string[] | import("csstype").Property.Azimuth | readonly import("csstype").Property.Azimuth[] | undefined;
|
|
1764
|
+
readonly boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
1765
|
+
readonly boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
1766
|
+
readonly boxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
1767
|
+
readonly boxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
1768
|
+
readonly boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
1769
|
+
readonly boxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
1770
|
+
readonly boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
1771
|
+
readonly boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
1772
|
+
readonly clip?: readonly string[] | import("csstype").Property.Clip | readonly import("csstype").Property.Clip[] | undefined;
|
|
1773
|
+
readonly gridColumnGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined;
|
|
1774
|
+
readonly gridGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined;
|
|
1775
|
+
readonly gridRowGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined;
|
|
1776
|
+
readonly imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
|
|
1777
|
+
readonly offsetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
|
|
1778
|
+
readonly offsetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
|
|
1779
|
+
readonly offsetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
|
|
1780
|
+
readonly offsetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
|
|
1781
|
+
readonly offsetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
|
|
1782
|
+
readonly offsetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
|
|
1783
|
+
readonly scrollSnapCoordinate?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined;
|
|
1784
|
+
readonly scrollSnapDestination?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined;
|
|
1785
|
+
readonly scrollSnapPointsX?: readonly string[] | import("csstype").Property.ScrollSnapPointsX | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
1786
|
+
readonly scrollSnapPointsY?: readonly string[] | import("csstype").Property.ScrollSnapPointsY | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
1787
|
+
readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
1788
|
+
readonly scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
|
|
1789
|
+
readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
1790
|
+
readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
1791
|
+
readonly KhtmlBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
1792
|
+
readonly KhtmlBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
1793
|
+
readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
1794
|
+
readonly KhtmlBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
1795
|
+
readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
1796
|
+
readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
1797
|
+
readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
1798
|
+
readonly KhtmlOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
1799
|
+
readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
1800
|
+
readonly MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
1801
|
+
readonly MozBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
1802
|
+
readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1803
|
+
readonly MozBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1804
|
+
readonly MozBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
1805
|
+
readonly MozBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
1806
|
+
readonly MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
1807
|
+
readonly MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
1808
|
+
readonly MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
1809
|
+
readonly MozBorderRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
1810
|
+
readonly MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
1811
|
+
readonly MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
1812
|
+
readonly MozBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
1813
|
+
readonly MozBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
1814
|
+
readonly MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
1815
|
+
readonly MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
1816
|
+
readonly MozBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
1817
|
+
readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
|
|
1818
|
+
readonly MozForceBrokenImageIcon?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined;
|
|
1819
|
+
readonly MozOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
1820
|
+
readonly MozOutline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
|
|
1821
|
+
readonly MozOutlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
|
|
1822
|
+
readonly MozOutlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
|
|
1823
|
+
readonly MozOutlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
|
|
1824
|
+
readonly MozPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
1825
|
+
readonly MozPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
1826
|
+
readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
|
|
1827
|
+
readonly MozTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
1828
|
+
readonly MozTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
1829
|
+
readonly MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
1830
|
+
readonly MozTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
1831
|
+
readonly MozTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
1832
|
+
readonly MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
1833
|
+
readonly MozTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1834
|
+
readonly MozTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1835
|
+
readonly MozTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1836
|
+
readonly MozTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
1837
|
+
readonly MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1838
|
+
readonly MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
|
|
1839
|
+
readonly msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
|
|
1840
|
+
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
1841
|
+
readonly OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1842
|
+
readonly OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
1843
|
+
readonly OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1844
|
+
readonly OAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1845
|
+
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
1846
|
+
readonly OAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
1847
|
+
readonly OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1848
|
+
readonly OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
1849
|
+
readonly OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
1850
|
+
readonly OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
1851
|
+
readonly OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
|
|
1852
|
+
readonly OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
|
|
1853
|
+
readonly OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
1854
|
+
readonly OTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
1855
|
+
readonly OTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
1856
|
+
readonly OTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
1857
|
+
readonly OTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1858
|
+
readonly OTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1859
|
+
readonly OTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1860
|
+
readonly OTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
1861
|
+
readonly OTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1862
|
+
readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
1863
|
+
readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
1864
|
+
readonly WebkitBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
1865
|
+
readonly WebkitBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
1866
|
+
readonly WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
1867
|
+
readonly WebkitBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
1868
|
+
readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
1869
|
+
readonly WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
1870
|
+
readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
1871
|
+
readonly baselineShift?: readonly (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined;
|
|
1872
|
+
readonly clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
|
|
1873
|
+
readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
|
|
1874
|
+
readonly colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
|
|
1875
|
+
readonly dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
|
|
1876
|
+
readonly fill?: readonly string[] | import("csstype").Property.Fill | readonly import("csstype").Property.Fill[] | undefined;
|
|
1877
|
+
readonly fillOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined;
|
|
1878
|
+
readonly fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
|
|
1879
|
+
readonly floodColor?: readonly string[] | import("csstype").Property.FloodColor | readonly import("csstype").Property.FloodColor[] | undefined;
|
|
1880
|
+
readonly floodOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined;
|
|
1881
|
+
readonly glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined;
|
|
1882
|
+
readonly lightingColor?: readonly string[] | import("csstype").Property.LightingColor | readonly import("csstype").Property.LightingColor[] | undefined;
|
|
1883
|
+
readonly marker?: readonly string[] | import("csstype").Property.Marker | readonly import("csstype").Property.Marker[] | undefined;
|
|
1884
|
+
readonly markerEnd?: readonly string[] | import("csstype").Property.MarkerEnd | readonly import("csstype").Property.MarkerEnd[] | undefined;
|
|
1885
|
+
readonly markerMid?: readonly string[] | import("csstype").Property.MarkerMid | readonly import("csstype").Property.MarkerMid[] | undefined;
|
|
1886
|
+
readonly markerStart?: readonly string[] | import("csstype").Property.MarkerStart | readonly import("csstype").Property.MarkerStart[] | undefined;
|
|
1887
|
+
readonly shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
|
|
1888
|
+
readonly stopColor?: readonly string[] | import("csstype").Property.StopColor | readonly import("csstype").Property.StopColor[] | undefined;
|
|
1889
|
+
readonly stopOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined;
|
|
1890
|
+
readonly stroke?: readonly string[] | import("csstype").Property.Stroke | readonly import("csstype").Property.Stroke[] | undefined;
|
|
1891
|
+
readonly strokeDasharray?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined;
|
|
1892
|
+
readonly strokeDashoffset?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined;
|
|
1893
|
+
readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
|
|
1894
|
+
readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
1895
|
+
readonly strokeMiterlimit?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined;
|
|
1896
|
+
readonly strokeOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined;
|
|
1897
|
+
readonly strokeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined;
|
|
1898
|
+
readonly textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
|
|
1899
|
+
readonly vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
|
|
1900
|
+
readonly ":-moz-any()"?: import("@emotion/react").CSSObject | undefined;
|
|
1901
|
+
readonly ":-moz-dir"?: import("@emotion/react").CSSObject | undefined;
|
|
1902
|
+
readonly ":-webkit-any()"?: import("@emotion/react").CSSObject | undefined;
|
|
1903
|
+
readonly "::cue"?: import("@emotion/react").CSSObject | undefined;
|
|
1904
|
+
readonly "::cue-region"?: import("@emotion/react").CSSObject | undefined;
|
|
1905
|
+
readonly "::part"?: import("@emotion/react").CSSObject | undefined;
|
|
1906
|
+
readonly "::slotted"?: import("@emotion/react").CSSObject | undefined;
|
|
1907
|
+
readonly "::view-transition-group"?: import("@emotion/react").CSSObject | undefined;
|
|
1908
|
+
readonly "::view-transition-image-pair"?: import("@emotion/react").CSSObject | undefined;
|
|
1909
|
+
readonly "::view-transition-new"?: import("@emotion/react").CSSObject | undefined;
|
|
1910
|
+
readonly "::view-transition-old"?: import("@emotion/react").CSSObject | undefined;
|
|
1911
|
+
readonly ":dir"?: import("@emotion/react").CSSObject | undefined;
|
|
1912
|
+
readonly ":has"?: import("@emotion/react").CSSObject | undefined;
|
|
1913
|
+
readonly ":host"?: import("@emotion/react").CSSObject | undefined;
|
|
1914
|
+
readonly ":host-context"?: import("@emotion/react").CSSObject | undefined;
|
|
1915
|
+
readonly ":is"?: import("@emotion/react").CSSObject | undefined;
|
|
1916
|
+
readonly ":lang"?: import("@emotion/react").CSSObject | undefined;
|
|
1917
|
+
readonly ":matches()"?: import("@emotion/react").CSSObject | undefined;
|
|
1918
|
+
readonly ":not"?: import("@emotion/react").CSSObject | undefined;
|
|
1919
|
+
readonly ":nth-child"?: import("@emotion/react").CSSObject | undefined;
|
|
1920
|
+
readonly ":nth-last-child"?: import("@emotion/react").CSSObject | undefined;
|
|
1921
|
+
readonly ":nth-last-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
1922
|
+
readonly ":nth-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
1923
|
+
readonly ":where"?: import("@emotion/react").CSSObject | undefined;
|
|
1924
|
+
readonly ":-khtml-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
1925
|
+
readonly ":-moz-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
1926
|
+
readonly ":-moz-focusring"?: import("@emotion/react").CSSObject | undefined;
|
|
1927
|
+
readonly ":-moz-full-screen"?: import("@emotion/react").CSSObject | undefined;
|
|
1928
|
+
readonly ":-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
1929
|
+
readonly ":-moz-read-only"?: import("@emotion/react").CSSObject | undefined;
|
|
1930
|
+
readonly ":-moz-read-write"?: import("@emotion/react").CSSObject | undefined;
|
|
1931
|
+
readonly ":-moz-ui-invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
1932
|
+
readonly ":-moz-ui-valid"?: import("@emotion/react").CSSObject | undefined;
|
|
1933
|
+
readonly ":-ms-fullscreen"?: import("@emotion/react").CSSObject | undefined;
|
|
1934
|
+
readonly ":-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
1935
|
+
readonly ":-webkit-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
1936
|
+
readonly ":-webkit-full-screen"?: import("@emotion/react").CSSObject | undefined;
|
|
1937
|
+
readonly "::-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
1938
|
+
readonly "::-moz-progress-bar"?: import("@emotion/react").CSSObject | undefined;
|
|
1939
|
+
readonly "::-moz-range-progress"?: import("@emotion/react").CSSObject | undefined;
|
|
1940
|
+
readonly "::-moz-range-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
1941
|
+
readonly "::-moz-range-track"?: import("@emotion/react").CSSObject | undefined;
|
|
1942
|
+
readonly "::-moz-selection"?: import("@emotion/react").CSSObject | undefined;
|
|
1943
|
+
readonly "::-ms-backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
1944
|
+
readonly "::-ms-browse"?: import("@emotion/react").CSSObject | undefined;
|
|
1945
|
+
readonly "::-ms-check"?: import("@emotion/react").CSSObject | undefined;
|
|
1946
|
+
readonly "::-ms-clear"?: import("@emotion/react").CSSObject | undefined;
|
|
1947
|
+
readonly "::-ms-expand"?: import("@emotion/react").CSSObject | undefined;
|
|
1948
|
+
readonly "::-ms-fill"?: import("@emotion/react").CSSObject | undefined;
|
|
1949
|
+
readonly "::-ms-fill-lower"?: import("@emotion/react").CSSObject | undefined;
|
|
1950
|
+
readonly "::-ms-fill-upper"?: import("@emotion/react").CSSObject | undefined;
|
|
1951
|
+
readonly "::-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
1952
|
+
readonly "::-ms-reveal"?: import("@emotion/react").CSSObject | undefined;
|
|
1953
|
+
readonly "::-ms-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
1954
|
+
readonly "::-ms-ticks-after"?: import("@emotion/react").CSSObject | undefined;
|
|
1955
|
+
readonly "::-ms-ticks-before"?: import("@emotion/react").CSSObject | undefined;
|
|
1956
|
+
readonly "::-ms-tooltip"?: import("@emotion/react").CSSObject | undefined;
|
|
1957
|
+
readonly "::-ms-track"?: import("@emotion/react").CSSObject | undefined;
|
|
1958
|
+
readonly "::-ms-value"?: import("@emotion/react").CSSObject | undefined;
|
|
1959
|
+
readonly "::-webkit-backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
1960
|
+
readonly "::-webkit-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
1961
|
+
readonly "::-webkit-progress-bar"?: import("@emotion/react").CSSObject | undefined;
|
|
1962
|
+
readonly "::-webkit-progress-inner-value"?: import("@emotion/react").CSSObject | undefined;
|
|
1963
|
+
readonly "::-webkit-progress-value"?: import("@emotion/react").CSSObject | undefined;
|
|
1964
|
+
readonly "::-webkit-slider-runnable-track"?: import("@emotion/react").CSSObject | undefined;
|
|
1965
|
+
readonly "::-webkit-slider-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
1966
|
+
readonly "::after"?: import("@emotion/react").CSSObject | undefined;
|
|
1967
|
+
readonly "::backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
1968
|
+
readonly "::before"?: import("@emotion/react").CSSObject | undefined;
|
|
1969
|
+
readonly "::first-letter"?: import("@emotion/react").CSSObject | undefined;
|
|
1970
|
+
readonly "::first-line"?: import("@emotion/react").CSSObject | undefined;
|
|
1971
|
+
readonly "::grammar-error"?: import("@emotion/react").CSSObject | undefined;
|
|
1972
|
+
readonly "::marker"?: import("@emotion/react").CSSObject | undefined;
|
|
1973
|
+
readonly "::placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
1974
|
+
readonly "::selection"?: import("@emotion/react").CSSObject | undefined;
|
|
1975
|
+
readonly "::spelling-error"?: import("@emotion/react").CSSObject | undefined;
|
|
1976
|
+
readonly "::target-text"?: import("@emotion/react").CSSObject | undefined;
|
|
1977
|
+
readonly "::view-transition"?: import("@emotion/react").CSSObject | undefined;
|
|
1978
|
+
readonly ":active"?: import("@emotion/react").CSSObject | undefined;
|
|
1979
|
+
readonly ":after"?: import("@emotion/react").CSSObject | undefined;
|
|
1980
|
+
readonly ":any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
1981
|
+
readonly ":before"?: import("@emotion/react").CSSObject | undefined;
|
|
1982
|
+
readonly ":blank"?: import("@emotion/react").CSSObject | undefined;
|
|
1983
|
+
readonly ":checked"?: import("@emotion/react").CSSObject | undefined;
|
|
1984
|
+
readonly ":current"?: import("@emotion/react").CSSObject | undefined;
|
|
1985
|
+
readonly ":default"?: import("@emotion/react").CSSObject | undefined;
|
|
1986
|
+
readonly ":defined"?: import("@emotion/react").CSSObject | undefined;
|
|
1987
|
+
readonly ":disabled"?: import("@emotion/react").CSSObject | undefined;
|
|
1988
|
+
readonly ":empty"?: import("@emotion/react").CSSObject | undefined;
|
|
1989
|
+
readonly ":first"?: import("@emotion/react").CSSObject | undefined;
|
|
1990
|
+
readonly ":first-child"?: import("@emotion/react").CSSObject | undefined;
|
|
1991
|
+
readonly ":first-letter"?: import("@emotion/react").CSSObject | undefined;
|
|
1992
|
+
readonly ":first-line"?: import("@emotion/react").CSSObject | undefined;
|
|
1993
|
+
readonly ":first-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
1994
|
+
readonly ":focus-visible"?: import("@emotion/react").CSSObject | undefined;
|
|
1995
|
+
readonly ":focus-within"?: import("@emotion/react").CSSObject | undefined;
|
|
1996
|
+
readonly ":fullscreen"?: import("@emotion/react").CSSObject | undefined;
|
|
1997
|
+
readonly ":future"?: import("@emotion/react").CSSObject | undefined;
|
|
1998
|
+
readonly ":hover"?: import("@emotion/react").CSSObject | undefined;
|
|
1999
|
+
readonly ":in-range"?: import("@emotion/react").CSSObject | undefined;
|
|
2000
|
+
readonly ":indeterminate"?: import("@emotion/react").CSSObject | undefined;
|
|
2001
|
+
readonly ":invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
2002
|
+
readonly ":last-child"?: import("@emotion/react").CSSObject | undefined;
|
|
2003
|
+
readonly ":last-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
2004
|
+
readonly ":left"?: import("@emotion/react").CSSObject | undefined;
|
|
2005
|
+
readonly ":link"?: import("@emotion/react").CSSObject | undefined;
|
|
2006
|
+
readonly ":local-link"?: import("@emotion/react").CSSObject | undefined;
|
|
2007
|
+
readonly ":nth-col"?: import("@emotion/react").CSSObject | undefined;
|
|
2008
|
+
readonly ":nth-last-col"?: import("@emotion/react").CSSObject | undefined;
|
|
2009
|
+
readonly ":only-child"?: import("@emotion/react").CSSObject | undefined;
|
|
2010
|
+
readonly ":only-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
2011
|
+
readonly ":optional"?: import("@emotion/react").CSSObject | undefined;
|
|
2012
|
+
readonly ":out-of-range"?: import("@emotion/react").CSSObject | undefined;
|
|
2013
|
+
readonly ":past"?: import("@emotion/react").CSSObject | undefined;
|
|
2014
|
+
readonly ":paused"?: import("@emotion/react").CSSObject | undefined;
|
|
2015
|
+
readonly ":picture-in-picture"?: import("@emotion/react").CSSObject | undefined;
|
|
2016
|
+
readonly ":placeholder-shown"?: import("@emotion/react").CSSObject | undefined;
|
|
2017
|
+
readonly ":playing"?: import("@emotion/react").CSSObject | undefined;
|
|
2018
|
+
readonly ":read-only"?: import("@emotion/react").CSSObject | undefined;
|
|
2019
|
+
readonly ":read-write"?: import("@emotion/react").CSSObject | undefined;
|
|
2020
|
+
readonly ":required"?: import("@emotion/react").CSSObject | undefined;
|
|
2021
|
+
readonly ":right"?: import("@emotion/react").CSSObject | undefined;
|
|
2022
|
+
readonly ":root"?: import("@emotion/react").CSSObject | undefined;
|
|
2023
|
+
readonly ":scope"?: import("@emotion/react").CSSObject | undefined;
|
|
2024
|
+
readonly ":target"?: import("@emotion/react").CSSObject | undefined;
|
|
2025
|
+
readonly ":target-within"?: import("@emotion/react").CSSObject | undefined;
|
|
2026
|
+
readonly ":user-invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
2027
|
+
readonly ":user-valid"?: import("@emotion/react").CSSObject | undefined;
|
|
2028
|
+
readonly ":valid"?: import("@emotion/react").CSSObject | undefined;
|
|
2029
|
+
readonly ":visited"?: import("@emotion/react").CSSObject | undefined;
|
|
2030
|
+
} | {
|
|
2031
|
+
readonly ':enabled': {
|
|
2032
|
+
readonly ':focus + [data-focus-indicator]': {
|
|
2033
|
+
boxShadow?: string;
|
|
2034
|
+
outline?: string;
|
|
2035
|
+
outlineOffset?: string;
|
|
2036
|
+
} | {
|
|
2037
|
+
boxShadow: string;
|
|
2038
|
+
outline: string;
|
|
2039
|
+
outlineOffset: string;
|
|
2040
|
+
borderColor: string;
|
|
2041
|
+
} | {
|
|
2042
|
+
"[data-brighte-focus-visible] &": {
|
|
2043
|
+
boxShadow: string;
|
|
2044
|
+
};
|
|
2045
|
+
outline: string;
|
|
2046
|
+
outlineOffset: string;
|
|
2047
|
+
borderColor: string;
|
|
2048
|
+
};
|
|
2049
|
+
};
|
|
2050
|
+
readonly ':focus': {
|
|
2051
|
+
readonly outline: "none";
|
|
2052
|
+
};
|
|
2053
|
+
readonly '&[aria-invalid=true]': {
|
|
2054
|
+
readonly color: string;
|
|
2055
|
+
};
|
|
2056
|
+
readonly display: "block";
|
|
2057
|
+
readonly overflowWrap: "break-word";
|
|
2058
|
+
readonly wordBreak: "break-word";
|
|
2059
|
+
readonly wordWrap: "break-word";
|
|
2060
|
+
readonly accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
|
|
2061
|
+
readonly alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
|
|
2062
|
+
readonly alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
|
|
2063
|
+
readonly alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
|
|
2064
|
+
readonly alignTracks?: readonly string[] | import("csstype").Property.AlignTracks | readonly import("csstype").Property.AlignTracks[] | undefined;
|
|
2065
|
+
readonly animationComposition?: readonly string[] | import("csstype").Property.AnimationComposition | readonly import("csstype").Property.AnimationComposition[] | undefined;
|
|
2066
|
+
readonly animationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
2067
|
+
readonly animationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
2068
|
+
readonly animationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
2069
|
+
readonly animationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
2070
|
+
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
2071
|
+
readonly animationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
2072
|
+
readonly animationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
2073
|
+
readonly animationRangeEnd?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined;
|
|
2074
|
+
readonly animationRangeStart?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined;
|
|
2075
|
+
readonly animationTimeline?: readonly string[] | import("csstype").Property.AnimationTimeline | readonly import("csstype").Property.AnimationTimeline[] | undefined;
|
|
2076
|
+
readonly animationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
2077
|
+
readonly appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
|
|
2078
|
+
readonly aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
|
|
2079
|
+
readonly backdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
|
|
2080
|
+
readonly backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
2081
|
+
readonly backgroundAttachment?: readonly string[] | import("csstype").Property.BackgroundAttachment | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
|
|
2082
|
+
readonly backgroundBlendMode?: readonly string[] | import("csstype").Property.BackgroundBlendMode | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
|
|
2083
|
+
readonly backgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
2084
|
+
readonly backgroundColor?: readonly string[] | import("csstype").Property.BackgroundColor | readonly import("csstype").Property.BackgroundColor[] | undefined;
|
|
2085
|
+
readonly backgroundImage?: readonly string[] | import("csstype").Property.BackgroundImage | readonly import("csstype").Property.BackgroundImage[] | undefined;
|
|
2086
|
+
readonly backgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
2087
|
+
readonly backgroundPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined;
|
|
2088
|
+
readonly backgroundPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined;
|
|
2089
|
+
readonly backgroundRepeat?: readonly string[] | import("csstype").Property.BackgroundRepeat | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
2090
|
+
readonly backgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
2091
|
+
readonly blockOverflow?: readonly string[] | import("csstype").Property.BlockOverflow | readonly import("csstype").Property.BlockOverflow[] | undefined;
|
|
2092
|
+
readonly blockSize?: readonly (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
|
|
2093
|
+
readonly borderBlockColor?: readonly string[] | import("csstype").Property.BorderBlockColor | readonly import("csstype").Property.BorderBlockColor[] | undefined;
|
|
2094
|
+
readonly borderBlockEndColor?: readonly string[] | import("csstype").Property.BorderBlockEndColor | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
2095
|
+
readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
2096
|
+
readonly borderBlockEndWidth?: readonly string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
|
|
2097
|
+
readonly borderBlockStartColor?: readonly string[] | import("csstype").Property.BorderBlockStartColor | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
2098
|
+
readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
2099
|
+
readonly borderBlockStartWidth?: readonly string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
|
|
2100
|
+
readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
2101
|
+
readonly borderBlockWidth?: readonly string[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
|
|
2102
|
+
readonly borderBottomColor?: readonly string[] | import("csstype").Property.BorderBottomColor | readonly import("csstype").Property.BorderBottomColor[] | undefined;
|
|
2103
|
+
readonly borderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
2104
|
+
readonly borderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
2105
|
+
readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
2106
|
+
readonly borderBottomWidth?: readonly string[] | import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
|
|
2107
|
+
readonly borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
|
|
2108
|
+
readonly borderEndEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined;
|
|
2109
|
+
readonly borderEndStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined;
|
|
2110
|
+
readonly borderImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined;
|
|
2111
|
+
readonly borderImageRepeat?: readonly string[] | import("csstype").Property.BorderImageRepeat | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
2112
|
+
readonly borderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
|
|
2113
|
+
readonly borderImageSource?: readonly string[] | import("csstype").Property.BorderImageSource | readonly import("csstype").Property.BorderImageSource[] | undefined;
|
|
2114
|
+
readonly borderImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined;
|
|
2115
|
+
readonly borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
|
|
2116
|
+
readonly borderInlineEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
2117
|
+
readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
2118
|
+
readonly borderInlineEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
|
|
2119
|
+
readonly borderInlineStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
2120
|
+
readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
2121
|
+
readonly borderInlineStartWidth?: readonly string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
|
|
2122
|
+
readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
2123
|
+
readonly borderInlineWidth?: readonly string[] | import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
|
|
2124
|
+
readonly borderLeftColor?: readonly string[] | import("csstype").Property.BorderLeftColor | readonly import("csstype").Property.BorderLeftColor[] | undefined;
|
|
2125
|
+
readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
2126
|
+
readonly borderLeftWidth?: readonly string[] | import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
|
|
2127
|
+
readonly borderRightColor?: readonly string[] | import("csstype").Property.BorderRightColor | readonly import("csstype").Property.BorderRightColor[] | undefined;
|
|
2128
|
+
readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
|
|
2129
|
+
readonly borderRightWidth?: readonly string[] | import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
|
|
2130
|
+
readonly borderSpacing?: readonly (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined;
|
|
2131
|
+
readonly borderStartEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
|
|
2132
|
+
readonly borderStartStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
|
|
2133
|
+
readonly borderTopColor?: readonly string[] | import("csstype").Property.BorderTopColor | readonly import("csstype").Property.BorderTopColor[] | undefined;
|
|
2134
|
+
readonly borderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
2135
|
+
readonly borderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
2136
|
+
readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
|
|
2137
|
+
readonly borderTopWidth?: readonly string[] | import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
|
|
2138
|
+
readonly bottom?: readonly (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined;
|
|
2139
|
+
readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
2140
|
+
readonly boxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
2141
|
+
readonly boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
2142
|
+
readonly breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
|
|
2143
|
+
readonly breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
|
|
2144
|
+
readonly breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
|
|
2145
|
+
readonly captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
|
|
2146
|
+
readonly caretColor?: readonly string[] | import("csstype").Property.CaretColor | readonly import("csstype").Property.CaretColor[] | undefined;
|
|
2147
|
+
readonly caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
|
|
2148
|
+
readonly clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
|
|
2149
|
+
readonly clipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
|
|
2150
|
+
readonly color?: readonly string[] | import("csstype").Property.Color | readonly import("csstype").Property.Color[] | undefined;
|
|
2151
|
+
readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
2152
|
+
readonly colorScheme?: readonly string[] | import("csstype").Property.ColorScheme | readonly import("csstype").Property.ColorScheme[] | undefined;
|
|
2153
|
+
readonly columnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
2154
|
+
readonly columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
2155
|
+
readonly columnGap?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined;
|
|
2156
|
+
readonly columnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
2157
|
+
readonly columnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
2158
|
+
readonly columnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
2159
|
+
readonly columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
|
|
2160
|
+
readonly columnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
2161
|
+
readonly contain?: readonly string[] | import("csstype").Property.Contain | readonly import("csstype").Property.Contain[] | undefined;
|
|
2162
|
+
readonly containIntrinsicBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined;
|
|
2163
|
+
readonly containIntrinsicHeight?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined;
|
|
2164
|
+
readonly containIntrinsicInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined;
|
|
2165
|
+
readonly containIntrinsicWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined;
|
|
2166
|
+
readonly containerName?: readonly string[] | import("csstype").Property.ContainerName | readonly import("csstype").Property.ContainerName[] | undefined;
|
|
2167
|
+
readonly containerType?: import("csstype").Property.ContainerType | readonly NonNullable<import("csstype").Property.ContainerType | undefined>[] | readonly import("csstype").Property.ContainerType[] | undefined;
|
|
2168
|
+
readonly content?: readonly string[] | import("csstype").Property.Content | readonly import("csstype").Property.Content[] | undefined;
|
|
2169
|
+
readonly contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
|
|
2170
|
+
readonly counterIncrement?: readonly string[] | import("csstype").Property.CounterIncrement | readonly import("csstype").Property.CounterIncrement[] | undefined;
|
|
2171
|
+
readonly counterReset?: readonly string[] | import("csstype").Property.CounterReset | readonly import("csstype").Property.CounterReset[] | undefined;
|
|
2172
|
+
readonly counterSet?: readonly string[] | import("csstype").Property.CounterSet | readonly import("csstype").Property.CounterSet[] | undefined;
|
|
2173
|
+
readonly cursor?: readonly string[] | import("csstype").Property.Cursor | readonly import("csstype").Property.Cursor[] | undefined;
|
|
2174
|
+
readonly direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
|
|
2175
|
+
readonly emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
|
|
2176
|
+
readonly filter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
|
|
2177
|
+
readonly flexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
|
|
2178
|
+
readonly flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
2179
|
+
readonly flexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
2180
|
+
readonly flexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
|
|
2181
|
+
readonly flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
|
|
2182
|
+
readonly float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
|
|
2183
|
+
readonly fontFamily?: readonly string[] | import("csstype").Property.FontFamily | readonly import("csstype").Property.FontFamily[] | undefined;
|
|
2184
|
+
readonly fontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
2185
|
+
readonly fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
|
|
2186
|
+
readonly fontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
2187
|
+
readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
|
|
2188
|
+
readonly fontPalette?: readonly string[] | import("csstype").Property.FontPalette | readonly import("csstype").Property.FontPalette[] | undefined;
|
|
2189
|
+
readonly fontSize?: readonly (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined;
|
|
2190
|
+
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals | "from-font")[] | undefined;
|
|
2191
|
+
readonly fontSmooth?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
2192
|
+
readonly fontStretch?: readonly string[] | import("csstype").Property.FontStretch | readonly import("csstype").Property.FontStretch[] | undefined;
|
|
2193
|
+
readonly fontStyle?: readonly string[] | import("csstype").Property.FontStyle | readonly import("csstype").Property.FontStyle[] | undefined;
|
|
2194
|
+
readonly fontSynthesis?: readonly string[] | import("csstype").Property.FontSynthesis | readonly import("csstype").Property.FontSynthesis[] | undefined;
|
|
2195
|
+
readonly fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
|
|
2196
|
+
readonly fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
|
|
2197
|
+
readonly fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
|
|
2198
|
+
readonly fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
|
|
2199
|
+
readonly fontVariant?: readonly string[] | import("csstype").Property.FontVariant | readonly import("csstype").Property.FontVariant[] | undefined;
|
|
2200
|
+
readonly fontVariantAlternates?: readonly string[] | import("csstype").Property.FontVariantAlternates | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
|
|
2201
|
+
readonly fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
|
|
2202
|
+
readonly fontVariantEastAsian?: readonly string[] | import("csstype").Property.FontVariantEastAsian | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
|
|
2203
|
+
readonly fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
|
|
2204
|
+
readonly fontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
2205
|
+
readonly fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
2206
|
+
readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
|
|
2207
|
+
readonly fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[] | undefined;
|
|
2208
|
+
readonly fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ("bold" | (string & {}) | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
|
|
2209
|
+
readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
2210
|
+
readonly gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined;
|
|
2211
|
+
readonly gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[] | undefined;
|
|
2212
|
+
readonly gridAutoRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined;
|
|
2213
|
+
readonly gridColumnEnd?: import("csstype").Property.GridColumnEnd | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined;
|
|
2214
|
+
readonly gridColumnStart?: import("csstype").Property.GridColumnStart | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined;
|
|
2215
|
+
readonly gridRowEnd?: import("csstype").Property.GridRowEnd | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined;
|
|
2216
|
+
readonly gridRowStart?: import("csstype").Property.GridRowStart | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined;
|
|
2217
|
+
readonly gridTemplateAreas?: readonly string[] | import("csstype").Property.GridTemplateAreas | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
2218
|
+
readonly gridTemplateColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
|
|
2219
|
+
readonly gridTemplateRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined;
|
|
2220
|
+
readonly hangingPunctuation?: readonly string[] | import("csstype").Property.HangingPunctuation | readonly import("csstype").Property.HangingPunctuation[] | undefined;
|
|
2221
|
+
readonly height?: readonly (string | (string & {}))[] | import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined;
|
|
2222
|
+
readonly hyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
2223
|
+
readonly hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined;
|
|
2224
|
+
readonly hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
2225
|
+
readonly imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[] | undefined;
|
|
2226
|
+
readonly imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
|
|
2227
|
+
readonly imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[] | undefined;
|
|
2228
|
+
readonly initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
|
|
2229
|
+
readonly inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
|
|
2230
|
+
readonly inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity | undefined>[] | readonly import("csstype").Property.InputSecurity[] | undefined;
|
|
2231
|
+
readonly insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
|
|
2232
|
+
readonly insetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
|
|
2233
|
+
readonly insetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
|
|
2234
|
+
readonly insetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
|
|
2235
|
+
readonly isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
|
|
2236
|
+
readonly justifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
|
|
2237
|
+
readonly justifyItems?: readonly string[] | import("csstype").Property.JustifyItems | readonly import("csstype").Property.JustifyItems[] | undefined;
|
|
2238
|
+
readonly justifySelf?: readonly string[] | import("csstype").Property.JustifySelf | readonly import("csstype").Property.JustifySelf[] | undefined;
|
|
2239
|
+
readonly justifyTracks?: readonly string[] | import("csstype").Property.JustifyTracks | readonly import("csstype").Property.JustifyTracks[] | undefined;
|
|
2240
|
+
readonly left?: readonly (string | (string & {}))[] | import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined;
|
|
2241
|
+
readonly letterSpacing?: readonly string[] | import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
|
|
2242
|
+
readonly lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
2243
|
+
readonly lineHeight?: readonly (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined;
|
|
2244
|
+
readonly lineHeightStep?: readonly string[] | import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
|
|
2245
|
+
readonly listStyleImage?: readonly string[] | import("csstype").Property.ListStyleImage | readonly import("csstype").Property.ListStyleImage[] | undefined;
|
|
2246
|
+
readonly listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
|
|
2247
|
+
readonly listStyleType?: readonly string[] | import("csstype").Property.ListStyleType | readonly import("csstype").Property.ListStyleType[] | undefined;
|
|
2248
|
+
readonly marginBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined;
|
|
2249
|
+
readonly marginBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined;
|
|
2250
|
+
readonly marginBottom?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined;
|
|
2251
|
+
readonly marginInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
2252
|
+
readonly marginInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
2253
|
+
readonly marginLeft?: readonly (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined;
|
|
2254
|
+
readonly marginRight?: readonly (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined;
|
|
2255
|
+
readonly marginTop?: readonly (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined;
|
|
2256
|
+
readonly marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
|
|
2257
|
+
readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
|
|
2258
|
+
readonly maskBorderOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
|
|
2259
|
+
readonly maskBorderRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
2260
|
+
readonly maskBorderSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
|
|
2261
|
+
readonly maskBorderSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
|
|
2262
|
+
readonly maskBorderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
|
|
2263
|
+
readonly maskClip?: readonly string[] | import("csstype").Property.MaskClip | readonly import("csstype").Property.MaskClip[] | undefined;
|
|
2264
|
+
readonly maskComposite?: readonly string[] | import("csstype").Property.MaskComposite | readonly import("csstype").Property.MaskComposite[] | undefined;
|
|
2265
|
+
readonly maskImage?: readonly string[] | import("csstype").Property.MaskImage | readonly import("csstype").Property.MaskImage[] | undefined;
|
|
2266
|
+
readonly maskMode?: readonly string[] | import("csstype").Property.MaskMode | readonly import("csstype").Property.MaskMode[] | undefined;
|
|
2267
|
+
readonly maskOrigin?: readonly string[] | import("csstype").Property.MaskOrigin | readonly import("csstype").Property.MaskOrigin[] | undefined;
|
|
2268
|
+
readonly maskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined;
|
|
2269
|
+
readonly maskRepeat?: readonly string[] | import("csstype").Property.MaskRepeat | readonly import("csstype").Property.MaskRepeat[] | undefined;
|
|
2270
|
+
readonly maskSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined;
|
|
2271
|
+
readonly maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
|
|
2272
|
+
readonly masonryAutoFlow?: readonly string[] | import("csstype").Property.MasonryAutoFlow | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
|
|
2273
|
+
readonly mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "auto-add")[] | undefined;
|
|
2274
|
+
readonly mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
|
|
2275
|
+
readonly mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
|
|
2276
|
+
readonly maxBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined;
|
|
2277
|
+
readonly maxHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined;
|
|
2278
|
+
readonly maxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
|
|
2279
|
+
readonly maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
|
|
2280
|
+
readonly maxWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined;
|
|
2281
|
+
readonly minBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined;
|
|
2282
|
+
readonly minHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined;
|
|
2283
|
+
readonly minInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined;
|
|
2284
|
+
readonly minWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined;
|
|
2285
|
+
readonly mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
|
|
2286
|
+
readonly motionDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
|
|
2287
|
+
readonly motionPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
|
|
2288
|
+
readonly motionRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
2289
|
+
readonly objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
|
|
2290
|
+
readonly objectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
|
|
2291
|
+
readonly offsetAnchor?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined;
|
|
2292
|
+
readonly offsetDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
|
|
2293
|
+
readonly offsetPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
|
|
2294
|
+
readonly offsetPosition?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined;
|
|
2295
|
+
readonly offsetRotate?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
2296
|
+
readonly offsetRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
2297
|
+
readonly opacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
2298
|
+
readonly order?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
2299
|
+
readonly orphans?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined;
|
|
2300
|
+
readonly outlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
|
|
2301
|
+
readonly outlineOffset?: readonly string[] | import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
|
|
2302
|
+
readonly outlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
|
|
2303
|
+
readonly outlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
|
|
2304
|
+
readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
|
|
2305
|
+
readonly overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
|
|
2306
|
+
readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
|
|
2307
|
+
readonly overflowClipMargin?: readonly (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined;
|
|
2308
|
+
readonly overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
|
|
2309
|
+
readonly overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
|
|
2310
|
+
readonly overflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
|
|
2311
|
+
readonly overlay?: import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | readonly import("csstype").Property.Overlay[] | undefined;
|
|
2312
|
+
readonly overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
|
|
2313
|
+
readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
2314
|
+
readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
2315
|
+
readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
|
|
2316
|
+
readonly paddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined;
|
|
2317
|
+
readonly paddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined;
|
|
2318
|
+
readonly paddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined;
|
|
2319
|
+
readonly paddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
2320
|
+
readonly paddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
2321
|
+
readonly paddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined;
|
|
2322
|
+
readonly paddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined;
|
|
2323
|
+
readonly paddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined;
|
|
2324
|
+
readonly page?: readonly string[] | import("csstype").Property.Page | readonly import("csstype").Property.Page[] | undefined;
|
|
2325
|
+
readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
|
|
2326
|
+
readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
|
|
2327
|
+
readonly pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
|
|
2328
|
+
readonly paintOrder?: readonly string[] | import("csstype").Property.PaintOrder | readonly import("csstype").Property.PaintOrder[] | undefined;
|
|
2329
|
+
readonly perspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
2330
|
+
readonly perspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
2331
|
+
readonly pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
|
|
2332
|
+
readonly position?: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | readonly import("csstype").Property.Position[] | undefined;
|
|
2333
|
+
readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
2334
|
+
readonly quotes?: readonly string[] | import("csstype").Property.Quotes | readonly import("csstype").Property.Quotes[] | undefined;
|
|
2335
|
+
readonly resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
|
|
2336
|
+
readonly right?: readonly (string | (string & {}))[] | import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined;
|
|
2337
|
+
readonly rotate?: readonly string[] | import("csstype").Property.Rotate | readonly import("csstype").Property.Rotate[] | undefined;
|
|
2338
|
+
readonly rowGap?: readonly (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined;
|
|
2339
|
+
readonly rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
|
|
2340
|
+
readonly rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
|
|
2341
|
+
readonly rubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
|
|
2342
|
+
readonly scale?: import("csstype").Property.Scale | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined;
|
|
2343
|
+
readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
|
|
2344
|
+
readonly scrollMarginBlockEnd?: readonly string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
|
|
2345
|
+
readonly scrollMarginBlockStart?: readonly string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
|
|
2346
|
+
readonly scrollMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
|
|
2347
|
+
readonly scrollMarginInlineEnd?: readonly string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
2348
|
+
readonly scrollMarginInlineStart?: readonly string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
|
|
2349
|
+
readonly scrollMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
|
|
2350
|
+
readonly scrollMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
|
|
2351
|
+
readonly scrollMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
|
|
2352
|
+
readonly scrollPaddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined;
|
|
2353
|
+
readonly scrollPaddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined;
|
|
2354
|
+
readonly scrollPaddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined;
|
|
2355
|
+
readonly scrollPaddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
2356
|
+
readonly scrollPaddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
2357
|
+
readonly scrollPaddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined;
|
|
2358
|
+
readonly scrollPaddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined;
|
|
2359
|
+
readonly scrollPaddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined;
|
|
2360
|
+
readonly scrollSnapAlign?: readonly string[] | import("csstype").Property.ScrollSnapAlign | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
|
|
2361
|
+
readonly scrollSnapMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
|
|
2362
|
+
readonly scrollSnapMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
|
|
2363
|
+
readonly scrollSnapMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
|
|
2364
|
+
readonly scrollSnapMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
|
|
2365
|
+
readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
2366
|
+
readonly scrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
|
|
2367
|
+
readonly scrollTimelineAxis?: readonly string[] | import("csstype").Property.ScrollTimelineAxis | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
|
|
2368
|
+
readonly scrollTimelineName?: readonly string[] | import("csstype").Property.ScrollTimelineName | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
|
|
2369
|
+
readonly scrollbarColor?: readonly string[] | import("csstype").Property.ScrollbarColor | readonly import("csstype").Property.ScrollbarColor[] | undefined;
|
|
2370
|
+
readonly scrollbarGutter?: readonly string[] | import("csstype").Property.ScrollbarGutter | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
2371
|
+
readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
2372
|
+
readonly shapeImageThreshold?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined;
|
|
2373
|
+
readonly shapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
|
|
2374
|
+
readonly shapeOutside?: readonly string[] | import("csstype").Property.ShapeOutside | readonly import("csstype").Property.ShapeOutside[] | undefined;
|
|
2375
|
+
readonly tabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
2376
|
+
readonly tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
|
|
2377
|
+
readonly textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
|
|
2378
|
+
readonly textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
|
|
2379
|
+
readonly textCombineUpright?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
2380
|
+
readonly textDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
2381
|
+
readonly textDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
2382
|
+
readonly textDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
2383
|
+
readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
2384
|
+
readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
2385
|
+
readonly textDecorationThickness?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined;
|
|
2386
|
+
readonly textEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
2387
|
+
readonly textEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
2388
|
+
readonly textEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
2389
|
+
readonly textIndent?: readonly (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined;
|
|
2390
|
+
readonly textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
|
|
2391
|
+
readonly textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
|
|
2392
|
+
readonly textOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
2393
|
+
readonly textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
|
|
2394
|
+
readonly textShadow?: readonly string[] | import("csstype").Property.TextShadow | readonly import("csstype").Property.TextShadow[] | undefined;
|
|
2395
|
+
readonly textSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
2396
|
+
readonly textTransform?: import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | readonly import("csstype").Property.TextTransform[] | undefined;
|
|
2397
|
+
readonly textUnderlineOffset?: readonly (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined;
|
|
2398
|
+
readonly textUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
2399
|
+
readonly textWrap?: import("csstype").Property.TextWrap | readonly NonNullable<import("csstype").Property.TextWrap | undefined>[] | readonly import("csstype").Property.TextWrap[] | undefined;
|
|
2400
|
+
readonly timelineScope?: readonly string[] | import("csstype").Property.TimelineScope | readonly import("csstype").Property.TimelineScope[] | undefined;
|
|
2401
|
+
readonly top?: readonly (string | (string & {}))[] | import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined;
|
|
2402
|
+
readonly touchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
|
|
2403
|
+
readonly transform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
2404
|
+
readonly transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
|
|
2405
|
+
readonly transformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
2406
|
+
readonly transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
2407
|
+
readonly transitionBehavior?: readonly string[] | import("csstype").Property.TransitionBehavior | readonly import("csstype").Property.TransitionBehavior[] | undefined;
|
|
2408
|
+
readonly transitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2409
|
+
readonly transitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2410
|
+
readonly transitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
2411
|
+
readonly transitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2412
|
+
readonly translate?: readonly (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined;
|
|
2413
|
+
readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
|
|
2414
|
+
readonly userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
2415
|
+
readonly verticalAlign?: readonly (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined;
|
|
2416
|
+
readonly viewTimelineAxis?: readonly string[] | import("csstype").Property.ViewTimelineAxis | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
|
|
2417
|
+
readonly viewTimelineInset?: readonly (string | (string & {}))[] | import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined;
|
|
2418
|
+
readonly viewTimelineName?: readonly string[] | import("csstype").Property.ViewTimelineName | readonly import("csstype").Property.ViewTimelineName[] | undefined;
|
|
2419
|
+
readonly viewTransitionName?: readonly string[] | import("csstype").Property.ViewTransitionName | readonly import("csstype").Property.ViewTransitionName[] | undefined;
|
|
2420
|
+
readonly visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
|
|
2421
|
+
readonly whiteSpace?: readonly string[] | import("csstype").Property.WhiteSpace | readonly import("csstype").Property.WhiteSpace[] | undefined;
|
|
2422
|
+
readonly whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
|
|
2423
|
+
readonly whiteSpaceTrim?: readonly string[] | import("csstype").Property.WhiteSpaceTrim | readonly import("csstype").Property.WhiteSpaceTrim[] | undefined;
|
|
2424
|
+
readonly widows?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined;
|
|
2425
|
+
readonly width?: readonly (string | (string & {}))[] | import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined;
|
|
2426
|
+
readonly willChange?: readonly string[] | import("csstype").Property.WillChange | readonly import("csstype").Property.WillChange[] | undefined;
|
|
2427
|
+
readonly wordSpacing?: readonly string[] | import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
2428
|
+
readonly writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
2429
|
+
readonly zIndex?: import("csstype").Property.ZIndex | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | undefined;
|
|
2430
|
+
readonly zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
|
|
2431
|
+
readonly all?: import("csstype").Globals | readonly NonNullable<import("csstype").Globals | undefined>[] | readonly import("csstype").Globals[] | undefined;
|
|
2432
|
+
readonly animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
2433
|
+
readonly animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined;
|
|
2434
|
+
readonly background?: readonly (string | (string & {}))[] | import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined;
|
|
2435
|
+
readonly backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined;
|
|
2436
|
+
readonly border?: import("csstype").Property.Border<string | number> | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
|
|
2437
|
+
readonly borderBlock?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined;
|
|
2438
|
+
readonly borderBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined;
|
|
2439
|
+
readonly borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined;
|
|
2440
|
+
readonly borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
|
|
2441
|
+
readonly borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
|
|
2442
|
+
readonly borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
2443
|
+
readonly borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
|
|
2444
|
+
readonly borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
|
|
2445
|
+
readonly borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined;
|
|
2446
|
+
readonly borderLeft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined;
|
|
2447
|
+
readonly borderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
2448
|
+
readonly borderRight?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined;
|
|
2449
|
+
readonly borderStyle?: readonly string[] | import("csstype").Property.BorderStyle | readonly import("csstype").Property.BorderStyle[] | undefined;
|
|
2450
|
+
readonly borderTop?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined;
|
|
2451
|
+
readonly borderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined;
|
|
2452
|
+
readonly caret?: readonly string[] | import("csstype").Property.Caret | readonly import("csstype").Property.Caret[] | undefined;
|
|
2453
|
+
readonly columnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
2454
|
+
readonly columns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
2455
|
+
readonly containIntrinsicSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined;
|
|
2456
|
+
readonly container?: readonly string[] | import("csstype").Property.Container | readonly import("csstype").Property.Container[] | undefined;
|
|
2457
|
+
readonly flex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
2458
|
+
readonly flexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
|
|
2459
|
+
readonly font?: readonly string[] | import("csstype").Property.Font | readonly import("csstype").Property.Font[] | undefined;
|
|
2460
|
+
readonly gap?: readonly (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined;
|
|
2461
|
+
readonly grid?: readonly string[] | import("csstype").Property.Grid | readonly import("csstype").Property.Grid[] | undefined;
|
|
2462
|
+
readonly gridArea?: import("csstype").Property.GridArea | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined;
|
|
2463
|
+
readonly gridColumn?: import("csstype").Property.GridColumn | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined;
|
|
2464
|
+
readonly gridRow?: import("csstype").Property.GridRow | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined;
|
|
2465
|
+
readonly gridTemplate?: readonly string[] | import("csstype").Property.GridTemplate | readonly import("csstype").Property.GridTemplate[] | undefined;
|
|
2466
|
+
readonly inset?: readonly (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined;
|
|
2467
|
+
readonly insetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
|
|
2468
|
+
readonly insetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
|
|
2469
|
+
readonly lineClamp?: import("csstype").Property.LineClamp | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined;
|
|
2470
|
+
readonly listStyle?: readonly string[] | import("csstype").Property.ListStyle | readonly import("csstype").Property.ListStyle[] | undefined;
|
|
2471
|
+
readonly margin?: readonly (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined;
|
|
2472
|
+
readonly marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
|
|
2473
|
+
readonly marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
|
|
2474
|
+
readonly mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
|
|
2475
|
+
readonly maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
|
|
2476
|
+
readonly motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
|
|
2477
|
+
readonly offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
|
|
2478
|
+
readonly outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
|
|
2479
|
+
readonly overflow?: readonly string[] | import("csstype").Property.Overflow | readonly import("csstype").Property.Overflow[] | undefined;
|
|
2480
|
+
readonly overscrollBehavior?: readonly string[] | import("csstype").Property.OverscrollBehavior | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
2481
|
+
readonly padding?: readonly (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined;
|
|
2482
|
+
readonly paddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined;
|
|
2483
|
+
readonly paddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined;
|
|
2484
|
+
readonly placeContent?: readonly string[] | import("csstype").Property.PlaceContent | readonly import("csstype").Property.PlaceContent[] | undefined;
|
|
2485
|
+
readonly placeItems?: readonly string[] | import("csstype").Property.PlaceItems | readonly import("csstype").Property.PlaceItems[] | undefined;
|
|
2486
|
+
readonly placeSelf?: readonly string[] | import("csstype").Property.PlaceSelf | readonly import("csstype").Property.PlaceSelf[] | undefined;
|
|
2487
|
+
readonly scrollMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
|
|
2488
|
+
readonly scrollMarginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined;
|
|
2489
|
+
readonly scrollMarginInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined;
|
|
2490
|
+
readonly scrollPadding?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined;
|
|
2491
|
+
readonly scrollPaddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined;
|
|
2492
|
+
readonly scrollPaddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined;
|
|
2493
|
+
readonly scrollSnapMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
|
|
2494
|
+
readonly scrollTimeline?: readonly string[] | import("csstype").Property.ScrollTimeline | readonly import("csstype").Property.ScrollTimeline[] | undefined;
|
|
2495
|
+
readonly textDecoration?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined;
|
|
2496
|
+
readonly textEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
|
|
2497
|
+
readonly transition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2498
|
+
readonly viewTimeline?: readonly string[] | import("csstype").Property.ViewTimeline | readonly import("csstype").Property.ViewTimeline[] | undefined;
|
|
2499
|
+
readonly MozAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
2500
|
+
readonly MozAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
2501
|
+
readonly MozAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
2502
|
+
readonly MozAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
2503
|
+
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
2504
|
+
readonly MozAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
2505
|
+
readonly MozAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
2506
|
+
readonly MozAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
2507
|
+
readonly MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
|
|
2508
|
+
readonly MozBinding?: readonly string[] | import("csstype").Property.MozBinding | readonly import("csstype").Property.MozBinding[] | undefined;
|
|
2509
|
+
readonly MozBorderBottomColors?: readonly string[] | import("csstype").Property.MozBorderBottomColors | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
2510
|
+
readonly MozBorderEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
2511
|
+
readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
2512
|
+
readonly MozBorderEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
|
|
2513
|
+
readonly MozBorderLeftColors?: readonly string[] | import("csstype").Property.MozBorderLeftColors | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
2514
|
+
readonly MozBorderRightColors?: readonly string[] | import("csstype").Property.MozBorderRightColors | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
2515
|
+
readonly MozBorderStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
2516
|
+
readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
2517
|
+
readonly MozBorderTopColors?: readonly string[] | import("csstype").Property.MozBorderTopColors | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
2518
|
+
readonly MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
2519
|
+
readonly MozColumnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
2520
|
+
readonly MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
2521
|
+
readonly MozColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
2522
|
+
readonly MozColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
2523
|
+
readonly MozColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
2524
|
+
readonly MozColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
2525
|
+
readonly MozContextProperties?: readonly string[] | import("csstype").Property.MozContextProperties | readonly import("csstype").Property.MozContextProperties[] | undefined;
|
|
2526
|
+
readonly MozFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
2527
|
+
readonly MozFontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
2528
|
+
readonly MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
2529
|
+
readonly MozImageRegion?: readonly string[] | import("csstype").Property.MozImageRegion | readonly import("csstype").Property.MozImageRegion[] | undefined;
|
|
2530
|
+
readonly MozMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
2531
|
+
readonly MozMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
2532
|
+
readonly MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
|
|
2533
|
+
readonly MozOsxFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
2534
|
+
readonly MozOutlineRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined;
|
|
2535
|
+
readonly MozOutlineRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined;
|
|
2536
|
+
readonly MozOutlineRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined;
|
|
2537
|
+
readonly MozOutlineRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined;
|
|
2538
|
+
readonly MozPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
2539
|
+
readonly MozPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
2540
|
+
readonly MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
|
|
2541
|
+
readonly MozTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
2542
|
+
readonly MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
|
|
2543
|
+
readonly MozTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
2544
|
+
readonly MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
|
|
2545
|
+
readonly MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
|
|
2546
|
+
readonly MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
2547
|
+
readonly MozWindowDragging?: import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | readonly import("csstype").Property.MozWindowDragging[] | undefined;
|
|
2548
|
+
readonly MozWindowShadow?: import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | readonly import("csstype").Property.MozWindowShadow[] | undefined;
|
|
2549
|
+
readonly msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
|
|
2550
|
+
readonly msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
|
|
2551
|
+
readonly msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
|
|
2552
|
+
readonly msContentZoomLimitMax?: readonly string[] | import("csstype").Property.MsContentZoomLimitMax | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
|
|
2553
|
+
readonly msContentZoomLimitMin?: readonly string[] | import("csstype").Property.MsContentZoomLimitMin | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
|
|
2554
|
+
readonly msContentZoomSnapPoints?: readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
|
|
2555
|
+
readonly msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
|
|
2556
|
+
readonly msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
|
|
2557
|
+
readonly msFilter?: readonly string[] | import("csstype").Property.MsFilter | readonly import("csstype").Property.MsFilter[] | undefined;
|
|
2558
|
+
readonly msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
2559
|
+
readonly msFlexPositive?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
2560
|
+
readonly msFlowFrom?: readonly string[] | import("csstype").Property.MsFlowFrom | readonly import("csstype").Property.MsFlowFrom[] | undefined;
|
|
2561
|
+
readonly msFlowInto?: readonly string[] | import("csstype").Property.MsFlowInto | readonly import("csstype").Property.MsFlowInto[] | undefined;
|
|
2562
|
+
readonly msGridColumns?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined;
|
|
2563
|
+
readonly msGridRows?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined;
|
|
2564
|
+
readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
|
|
2565
|
+
readonly msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined;
|
|
2566
|
+
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "no-limit")[] | undefined;
|
|
2567
|
+
readonly msHyphenateLimitZone?: readonly (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
|
|
2568
|
+
readonly msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
2569
|
+
readonly msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
|
|
2570
|
+
readonly msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
2571
|
+
readonly msOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
2572
|
+
readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
2573
|
+
readonly msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
|
|
2574
|
+
readonly msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
|
|
2575
|
+
readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
|
|
2576
|
+
readonly msScrollLimitXMax?: readonly string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
|
|
2577
|
+
readonly msScrollLimitXMin?: readonly string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
|
|
2578
|
+
readonly msScrollLimitYMax?: readonly string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
|
|
2579
|
+
readonly msScrollLimitYMin?: readonly string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
|
|
2580
|
+
readonly msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
|
|
2581
|
+
readonly msScrollSnapPointsX?: readonly string[] | import("csstype").Property.MsScrollSnapPointsX | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
2582
|
+
readonly msScrollSnapPointsY?: readonly string[] | import("csstype").Property.MsScrollSnapPointsY | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
2583
|
+
readonly msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
|
|
2584
|
+
readonly msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
|
|
2585
|
+
readonly msScrollbar3dlightColor?: readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
|
|
2586
|
+
readonly msScrollbarArrowColor?: readonly string[] | import("csstype").Property.MsScrollbarArrowColor | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
|
|
2587
|
+
readonly msScrollbarBaseColor?: readonly string[] | import("csstype").Property.MsScrollbarBaseColor | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
|
|
2588
|
+
readonly msScrollbarDarkshadowColor?: readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
|
|
2589
|
+
readonly msScrollbarFaceColor?: readonly string[] | import("csstype").Property.MsScrollbarFaceColor | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
|
|
2590
|
+
readonly msScrollbarHighlightColor?: readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
|
|
2591
|
+
readonly msScrollbarShadowColor?: readonly string[] | import("csstype").Property.MsScrollbarShadowColor | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
|
|
2592
|
+
readonly msScrollbarTrackColor?: readonly string[] | import("csstype").Property.MsScrollbarTrackColor | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
2593
|
+
readonly msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
|
|
2594
|
+
readonly msTextCombineHorizontal?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
2595
|
+
readonly msTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
2596
|
+
readonly msTouchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
|
|
2597
|
+
readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
|
|
2598
|
+
readonly msTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
2599
|
+
readonly msTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
2600
|
+
readonly msTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2601
|
+
readonly msTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2602
|
+
readonly msTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
2603
|
+
readonly msTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2604
|
+
readonly msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
|
|
2605
|
+
readonly msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
|
|
2606
|
+
readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
|
|
2607
|
+
readonly msWrapMargin?: readonly string[] | import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
|
|
2608
|
+
readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
|
|
2609
|
+
readonly msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
2610
|
+
readonly WebkitAlignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
|
|
2611
|
+
readonly WebkitAlignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
|
|
2612
|
+
readonly WebkitAlignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
|
|
2613
|
+
readonly WebkitAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
2614
|
+
readonly WebkitAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
2615
|
+
readonly WebkitAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
2616
|
+
readonly WebkitAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
2617
|
+
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
2618
|
+
readonly WebkitAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
2619
|
+
readonly WebkitAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
2620
|
+
readonly WebkitAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
2621
|
+
readonly WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
|
|
2622
|
+
readonly WebkitBackdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
|
|
2623
|
+
readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
2624
|
+
readonly WebkitBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
2625
|
+
readonly WebkitBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
2626
|
+
readonly WebkitBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
2627
|
+
readonly WebkitBorderBeforeColor?: readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
2628
|
+
readonly WebkitBorderBeforeStyle?: readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
|
|
2629
|
+
readonly WebkitBorderBeforeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined;
|
|
2630
|
+
readonly WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
2631
|
+
readonly WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
2632
|
+
readonly WebkitBorderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
|
|
2633
|
+
readonly WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
2634
|
+
readonly WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
2635
|
+
readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
2636
|
+
readonly WebkitBoxReflect?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
|
|
2637
|
+
readonly WebkitBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
2638
|
+
readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
2639
|
+
readonly WebkitClipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
|
|
2640
|
+
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
2641
|
+
readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
2642
|
+
readonly WebkitColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
2643
|
+
readonly WebkitColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
2644
|
+
readonly WebkitColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
2645
|
+
readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
|
|
2646
|
+
readonly WebkitColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
2647
|
+
readonly WebkitFilter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
|
|
2648
|
+
readonly WebkitFlexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
|
|
2649
|
+
readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
2650
|
+
readonly WebkitFlexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
2651
|
+
readonly WebkitFlexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
|
|
2652
|
+
readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
|
|
2653
|
+
readonly WebkitFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
2654
|
+
readonly WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
|
|
2655
|
+
readonly WebkitFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
2656
|
+
readonly WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
2657
|
+
readonly WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
2658
|
+
readonly WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
2659
|
+
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
|
|
2660
|
+
readonly WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
|
|
2661
|
+
readonly WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
2662
|
+
readonly WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | readonly ("none" | (string & {}) | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined;
|
|
2663
|
+
readonly WebkitMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
2664
|
+
readonly WebkitMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
2665
|
+
readonly WebkitMaskAttachment?: readonly string[] | import("csstype").Property.WebkitMaskAttachment | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
2666
|
+
readonly WebkitMaskBoxImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
|
|
2667
|
+
readonly WebkitMaskBoxImageRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
2668
|
+
readonly WebkitMaskBoxImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
|
|
2669
|
+
readonly WebkitMaskBoxImageSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
|
|
2670
|
+
readonly WebkitMaskBoxImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
|
|
2671
|
+
readonly WebkitMaskClip?: readonly string[] | import("csstype").Property.WebkitMaskClip | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
2672
|
+
readonly WebkitMaskComposite?: readonly string[] | import("csstype").Property.WebkitMaskComposite | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
2673
|
+
readonly WebkitMaskImage?: readonly string[] | import("csstype").Property.WebkitMaskImage | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
2674
|
+
readonly WebkitMaskOrigin?: readonly string[] | import("csstype").Property.WebkitMaskOrigin | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
2675
|
+
readonly WebkitMaskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined;
|
|
2676
|
+
readonly WebkitMaskPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined;
|
|
2677
|
+
readonly WebkitMaskPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined;
|
|
2678
|
+
readonly WebkitMaskRepeat?: readonly string[] | import("csstype").Property.WebkitMaskRepeat | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
2679
|
+
readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
2680
|
+
readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
2681
|
+
readonly WebkitMaskSize?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined;
|
|
2682
|
+
readonly WebkitMaxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
|
|
2683
|
+
readonly WebkitOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
2684
|
+
readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
2685
|
+
readonly WebkitPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
2686
|
+
readonly WebkitPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
2687
|
+
readonly WebkitPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
2688
|
+
readonly WebkitPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
2689
|
+
readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
2690
|
+
readonly WebkitRubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
|
|
2691
|
+
readonly WebkitScrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
|
|
2692
|
+
readonly WebkitShapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
|
|
2693
|
+
readonly WebkitTapHighlightColor?: readonly string[] | import("csstype").Property.WebkitTapHighlightColor | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
2694
|
+
readonly WebkitTextCombine?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
2695
|
+
readonly WebkitTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
2696
|
+
readonly WebkitTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
2697
|
+
readonly WebkitTextDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
2698
|
+
readonly WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
2699
|
+
readonly WebkitTextEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
2700
|
+
readonly WebkitTextEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
2701
|
+
readonly WebkitTextEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
2702
|
+
readonly WebkitTextFillColor?: readonly string[] | import("csstype").Property.WebkitTextFillColor | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
|
|
2703
|
+
readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
|
|
2704
|
+
readonly WebkitTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
2705
|
+
readonly WebkitTextStrokeColor?: readonly string[] | import("csstype").Property.WebkitTextStrokeColor | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
2706
|
+
readonly WebkitTextStrokeWidth?: readonly string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
|
|
2707
|
+
readonly WebkitTextUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
2708
|
+
readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
2709
|
+
readonly WebkitTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
2710
|
+
readonly WebkitTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
2711
|
+
readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
2712
|
+
readonly WebkitTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2713
|
+
readonly WebkitTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2714
|
+
readonly WebkitTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
2715
|
+
readonly WebkitTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2716
|
+
readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
|
|
2717
|
+
readonly WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
2718
|
+
readonly WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
2719
|
+
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
2720
|
+
readonly MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
2721
|
+
readonly MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
2722
|
+
readonly MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
2723
|
+
readonly MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
|
|
2724
|
+
readonly msContentZoomLimit?: readonly string[] | import("csstype").Property.MsContentZoomLimit | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
2725
|
+
readonly msContentZoomSnap?: readonly string[] | import("csstype").Property.MsContentZoomSnap | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
2726
|
+
readonly msFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
2727
|
+
readonly msScrollLimit?: readonly string[] | import("csstype").Property.MsScrollLimit | readonly import("csstype").Property.MsScrollLimit[] | undefined;
|
|
2728
|
+
readonly msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
2729
|
+
readonly msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
2730
|
+
readonly msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2731
|
+
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
2732
|
+
readonly WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
|
|
2733
|
+
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
2734
|
+
readonly WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
2735
|
+
readonly WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
2736
|
+
readonly WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
2737
|
+
readonly WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
2738
|
+
readonly WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
|
|
2739
|
+
readonly WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
|
|
2740
|
+
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
|
|
2741
|
+
readonly WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
|
|
2742
|
+
readonly WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
|
|
2743
|
+
readonly WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2744
|
+
readonly azimuth?: readonly string[] | import("csstype").Property.Azimuth | readonly import("csstype").Property.Azimuth[] | undefined;
|
|
2745
|
+
readonly boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
2746
|
+
readonly boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
2747
|
+
readonly boxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
2748
|
+
readonly boxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
2749
|
+
readonly boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
2750
|
+
readonly boxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
2751
|
+
readonly boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
2752
|
+
readonly boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
2753
|
+
readonly clip?: readonly string[] | import("csstype").Property.Clip | readonly import("csstype").Property.Clip[] | undefined;
|
|
2754
|
+
readonly gridColumnGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined;
|
|
2755
|
+
readonly gridGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined;
|
|
2756
|
+
readonly gridRowGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined;
|
|
2757
|
+
readonly imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
|
|
2758
|
+
readonly offsetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
|
|
2759
|
+
readonly offsetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
|
|
2760
|
+
readonly offsetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
|
|
2761
|
+
readonly offsetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
|
|
2762
|
+
readonly offsetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
|
|
2763
|
+
readonly offsetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
|
|
2764
|
+
readonly scrollSnapCoordinate?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined;
|
|
2765
|
+
readonly scrollSnapDestination?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined;
|
|
2766
|
+
readonly scrollSnapPointsX?: readonly string[] | import("csstype").Property.ScrollSnapPointsX | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
2767
|
+
readonly scrollSnapPointsY?: readonly string[] | import("csstype").Property.ScrollSnapPointsY | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
2768
|
+
readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
2769
|
+
readonly scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
|
|
2770
|
+
readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
2771
|
+
readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
2772
|
+
readonly KhtmlBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
2773
|
+
readonly KhtmlBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
2774
|
+
readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
2775
|
+
readonly KhtmlBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
2776
|
+
readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
2777
|
+
readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
2778
|
+
readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
2779
|
+
readonly KhtmlOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
2780
|
+
readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
2781
|
+
readonly MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
2782
|
+
readonly MozBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
2783
|
+
readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
2784
|
+
readonly MozBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
2785
|
+
readonly MozBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
2786
|
+
readonly MozBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
2787
|
+
readonly MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
2788
|
+
readonly MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
2789
|
+
readonly MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
2790
|
+
readonly MozBorderRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
2791
|
+
readonly MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
2792
|
+
readonly MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
2793
|
+
readonly MozBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
2794
|
+
readonly MozBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
2795
|
+
readonly MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
2796
|
+
readonly MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
2797
|
+
readonly MozBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
2798
|
+
readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
|
|
2799
|
+
readonly MozForceBrokenImageIcon?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined;
|
|
2800
|
+
readonly MozOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
2801
|
+
readonly MozOutline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
|
|
2802
|
+
readonly MozOutlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
|
|
2803
|
+
readonly MozOutlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
|
|
2804
|
+
readonly MozOutlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
|
|
2805
|
+
readonly MozPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
2806
|
+
readonly MozPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
2807
|
+
readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
|
|
2808
|
+
readonly MozTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
2809
|
+
readonly MozTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
2810
|
+
readonly MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
2811
|
+
readonly MozTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
2812
|
+
readonly MozTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
2813
|
+
readonly MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
2814
|
+
readonly MozTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2815
|
+
readonly MozTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2816
|
+
readonly MozTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2817
|
+
readonly MozTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
2818
|
+
readonly MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2819
|
+
readonly MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
|
|
2820
|
+
readonly msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
|
|
2821
|
+
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "both" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
|
|
2822
|
+
readonly OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
2823
|
+
readonly OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
2824
|
+
readonly OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
2825
|
+
readonly OAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
2826
|
+
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
2827
|
+
readonly OAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
2828
|
+
readonly OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
2829
|
+
readonly OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
2830
|
+
readonly OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
2831
|
+
readonly OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
2832
|
+
readonly OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
|
|
2833
|
+
readonly OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
|
|
2834
|
+
readonly OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
2835
|
+
readonly OTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
2836
|
+
readonly OTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
|
|
2837
|
+
readonly OTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
2838
|
+
readonly OTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2839
|
+
readonly OTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2840
|
+
readonly OTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2841
|
+
readonly OTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
2842
|
+
readonly OTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2843
|
+
readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
2844
|
+
readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
2845
|
+
readonly WebkitBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
2846
|
+
readonly WebkitBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
2847
|
+
readonly WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
2848
|
+
readonly WebkitBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
2849
|
+
readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
2850
|
+
readonly WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
2851
|
+
readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
2852
|
+
readonly baselineShift?: readonly (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined;
|
|
2853
|
+
readonly clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
|
|
2854
|
+
readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
|
|
2855
|
+
readonly colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
|
|
2856
|
+
readonly dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
|
|
2857
|
+
readonly fill?: readonly string[] | import("csstype").Property.Fill | readonly import("csstype").Property.Fill[] | undefined;
|
|
2858
|
+
readonly fillOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined;
|
|
2859
|
+
readonly fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
|
|
2860
|
+
readonly floodColor?: readonly string[] | import("csstype").Property.FloodColor | readonly import("csstype").Property.FloodColor[] | undefined;
|
|
2861
|
+
readonly floodOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined;
|
|
2862
|
+
readonly glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined;
|
|
2863
|
+
readonly lightingColor?: readonly string[] | import("csstype").Property.LightingColor | readonly import("csstype").Property.LightingColor[] | undefined;
|
|
2864
|
+
readonly marker?: readonly string[] | import("csstype").Property.Marker | readonly import("csstype").Property.Marker[] | undefined;
|
|
2865
|
+
readonly markerEnd?: readonly string[] | import("csstype").Property.MarkerEnd | readonly import("csstype").Property.MarkerEnd[] | undefined;
|
|
2866
|
+
readonly markerMid?: readonly string[] | import("csstype").Property.MarkerMid | readonly import("csstype").Property.MarkerMid[] | undefined;
|
|
2867
|
+
readonly markerStart?: readonly string[] | import("csstype").Property.MarkerStart | readonly import("csstype").Property.MarkerStart[] | undefined;
|
|
2868
|
+
readonly shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
|
|
2869
|
+
readonly stopColor?: readonly string[] | import("csstype").Property.StopColor | readonly import("csstype").Property.StopColor[] | undefined;
|
|
2870
|
+
readonly stopOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined;
|
|
2871
|
+
readonly stroke?: readonly string[] | import("csstype").Property.Stroke | readonly import("csstype").Property.Stroke[] | undefined;
|
|
2872
|
+
readonly strokeDasharray?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined;
|
|
2873
|
+
readonly strokeDashoffset?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined;
|
|
2874
|
+
readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
|
|
2875
|
+
readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
2876
|
+
readonly strokeMiterlimit?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined;
|
|
2877
|
+
readonly strokeOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined;
|
|
2878
|
+
readonly strokeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined;
|
|
2879
|
+
readonly textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
|
|
2880
|
+
readonly vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
|
|
2881
|
+
readonly ":-moz-any()"?: import("@emotion/react").CSSObject | undefined;
|
|
2882
|
+
readonly ":-moz-dir"?: import("@emotion/react").CSSObject | undefined;
|
|
2883
|
+
readonly ":-webkit-any()"?: import("@emotion/react").CSSObject | undefined;
|
|
2884
|
+
readonly "::cue"?: import("@emotion/react").CSSObject | undefined;
|
|
2885
|
+
readonly "::cue-region"?: import("@emotion/react").CSSObject | undefined;
|
|
2886
|
+
readonly "::part"?: import("@emotion/react").CSSObject | undefined;
|
|
2887
|
+
readonly "::slotted"?: import("@emotion/react").CSSObject | undefined;
|
|
2888
|
+
readonly "::view-transition-group"?: import("@emotion/react").CSSObject | undefined;
|
|
2889
|
+
readonly "::view-transition-image-pair"?: import("@emotion/react").CSSObject | undefined;
|
|
2890
|
+
readonly "::view-transition-new"?: import("@emotion/react").CSSObject | undefined;
|
|
2891
|
+
readonly "::view-transition-old"?: import("@emotion/react").CSSObject | undefined;
|
|
2892
|
+
readonly ":dir"?: import("@emotion/react").CSSObject | undefined;
|
|
2893
|
+
readonly ":has"?: import("@emotion/react").CSSObject | undefined;
|
|
2894
|
+
readonly ":host"?: import("@emotion/react").CSSObject | undefined;
|
|
2895
|
+
readonly ":host-context"?: import("@emotion/react").CSSObject | undefined;
|
|
2896
|
+
readonly ":is"?: import("@emotion/react").CSSObject | undefined;
|
|
2897
|
+
readonly ":lang"?: import("@emotion/react").CSSObject | undefined;
|
|
2898
|
+
readonly ":matches()"?: import("@emotion/react").CSSObject | undefined;
|
|
2899
|
+
readonly ":not"?: import("@emotion/react").CSSObject | undefined;
|
|
2900
|
+
readonly ":nth-child"?: import("@emotion/react").CSSObject | undefined;
|
|
2901
|
+
readonly ":nth-last-child"?: import("@emotion/react").CSSObject | undefined;
|
|
2902
|
+
readonly ":nth-last-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
2903
|
+
readonly ":nth-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
2904
|
+
readonly ":where"?: import("@emotion/react").CSSObject | undefined;
|
|
2905
|
+
readonly ":-khtml-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
2906
|
+
readonly ":-moz-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
2907
|
+
readonly ":-moz-focusring"?: import("@emotion/react").CSSObject | undefined;
|
|
2908
|
+
readonly ":-moz-full-screen"?: import("@emotion/react").CSSObject | undefined;
|
|
2909
|
+
readonly ":-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
2910
|
+
readonly ":-moz-read-only"?: import("@emotion/react").CSSObject | undefined;
|
|
2911
|
+
readonly ":-moz-read-write"?: import("@emotion/react").CSSObject | undefined;
|
|
2912
|
+
readonly ":-moz-ui-invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
2913
|
+
readonly ":-moz-ui-valid"?: import("@emotion/react").CSSObject | undefined;
|
|
2914
|
+
readonly ":-ms-fullscreen"?: import("@emotion/react").CSSObject | undefined;
|
|
2915
|
+
readonly ":-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
2916
|
+
readonly ":-webkit-any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
2917
|
+
readonly ":-webkit-full-screen"?: import("@emotion/react").CSSObject | undefined;
|
|
2918
|
+
readonly "::-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
2919
|
+
readonly "::-moz-progress-bar"?: import("@emotion/react").CSSObject | undefined;
|
|
2920
|
+
readonly "::-moz-range-progress"?: import("@emotion/react").CSSObject | undefined;
|
|
2921
|
+
readonly "::-moz-range-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
2922
|
+
readonly "::-moz-range-track"?: import("@emotion/react").CSSObject | undefined;
|
|
2923
|
+
readonly "::-moz-selection"?: import("@emotion/react").CSSObject | undefined;
|
|
2924
|
+
readonly "::-ms-backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
2925
|
+
readonly "::-ms-browse"?: import("@emotion/react").CSSObject | undefined;
|
|
2926
|
+
readonly "::-ms-check"?: import("@emotion/react").CSSObject | undefined;
|
|
2927
|
+
readonly "::-ms-clear"?: import("@emotion/react").CSSObject | undefined;
|
|
2928
|
+
readonly "::-ms-expand"?: import("@emotion/react").CSSObject | undefined;
|
|
2929
|
+
readonly "::-ms-fill"?: import("@emotion/react").CSSObject | undefined;
|
|
2930
|
+
readonly "::-ms-fill-lower"?: import("@emotion/react").CSSObject | undefined;
|
|
2931
|
+
readonly "::-ms-fill-upper"?: import("@emotion/react").CSSObject | undefined;
|
|
2932
|
+
readonly "::-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
2933
|
+
readonly "::-ms-reveal"?: import("@emotion/react").CSSObject | undefined;
|
|
2934
|
+
readonly "::-ms-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
2935
|
+
readonly "::-ms-ticks-after"?: import("@emotion/react").CSSObject | undefined;
|
|
2936
|
+
readonly "::-ms-ticks-before"?: import("@emotion/react").CSSObject | undefined;
|
|
2937
|
+
readonly "::-ms-tooltip"?: import("@emotion/react").CSSObject | undefined;
|
|
2938
|
+
readonly "::-ms-track"?: import("@emotion/react").CSSObject | undefined;
|
|
2939
|
+
readonly "::-ms-value"?: import("@emotion/react").CSSObject | undefined;
|
|
2940
|
+
readonly "::-webkit-backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
2941
|
+
readonly "::-webkit-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
2942
|
+
readonly "::-webkit-progress-bar"?: import("@emotion/react").CSSObject | undefined;
|
|
2943
|
+
readonly "::-webkit-progress-inner-value"?: import("@emotion/react").CSSObject | undefined;
|
|
2944
|
+
readonly "::-webkit-progress-value"?: import("@emotion/react").CSSObject | undefined;
|
|
2945
|
+
readonly "::-webkit-slider-runnable-track"?: import("@emotion/react").CSSObject | undefined;
|
|
2946
|
+
readonly "::-webkit-slider-thumb"?: import("@emotion/react").CSSObject | undefined;
|
|
2947
|
+
readonly "::after"?: import("@emotion/react").CSSObject | undefined;
|
|
2948
|
+
readonly "::backdrop"?: import("@emotion/react").CSSObject | undefined;
|
|
2949
|
+
readonly "::before"?: import("@emotion/react").CSSObject | undefined;
|
|
2950
|
+
readonly "::first-letter"?: import("@emotion/react").CSSObject | undefined;
|
|
2951
|
+
readonly "::first-line"?: import("@emotion/react").CSSObject | undefined;
|
|
2952
|
+
readonly "::grammar-error"?: import("@emotion/react").CSSObject | undefined;
|
|
2953
|
+
readonly "::marker"?: import("@emotion/react").CSSObject | undefined;
|
|
2954
|
+
readonly "::placeholder"?: import("@emotion/react").CSSObject | undefined;
|
|
2955
|
+
readonly "::selection"?: import("@emotion/react").CSSObject | undefined;
|
|
2956
|
+
readonly "::spelling-error"?: import("@emotion/react").CSSObject | undefined;
|
|
2957
|
+
readonly "::target-text"?: import("@emotion/react").CSSObject | undefined;
|
|
2958
|
+
readonly "::view-transition"?: import("@emotion/react").CSSObject | undefined;
|
|
2959
|
+
readonly ":active"?: import("@emotion/react").CSSObject | undefined;
|
|
2960
|
+
readonly ":after"?: import("@emotion/react").CSSObject | undefined;
|
|
2961
|
+
readonly ":any-link"?: import("@emotion/react").CSSObject | undefined;
|
|
2962
|
+
readonly ":before"?: import("@emotion/react").CSSObject | undefined;
|
|
2963
|
+
readonly ":blank"?: import("@emotion/react").CSSObject | undefined;
|
|
2964
|
+
readonly ":checked"?: import("@emotion/react").CSSObject | undefined;
|
|
2965
|
+
readonly ":current"?: import("@emotion/react").CSSObject | undefined;
|
|
2966
|
+
readonly ":default"?: import("@emotion/react").CSSObject | undefined;
|
|
2967
|
+
readonly ":defined"?: import("@emotion/react").CSSObject | undefined;
|
|
2968
|
+
readonly ":disabled"?: import("@emotion/react").CSSObject | undefined;
|
|
2969
|
+
readonly ":empty"?: import("@emotion/react").CSSObject | undefined;
|
|
2970
|
+
readonly ":first"?: import("@emotion/react").CSSObject | undefined;
|
|
2971
|
+
readonly ":first-child"?: import("@emotion/react").CSSObject | undefined;
|
|
2972
|
+
readonly ":first-letter"?: import("@emotion/react").CSSObject | undefined;
|
|
2973
|
+
readonly ":first-line"?: import("@emotion/react").CSSObject | undefined;
|
|
2974
|
+
readonly ":first-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
2975
|
+
readonly ":focus-visible"?: import("@emotion/react").CSSObject | undefined;
|
|
2976
|
+
readonly ":focus-within"?: import("@emotion/react").CSSObject | undefined;
|
|
2977
|
+
readonly ":fullscreen"?: import("@emotion/react").CSSObject | undefined;
|
|
2978
|
+
readonly ":future"?: import("@emotion/react").CSSObject | undefined;
|
|
2979
|
+
readonly ":hover"?: import("@emotion/react").CSSObject | undefined;
|
|
2980
|
+
readonly ":in-range"?: import("@emotion/react").CSSObject | undefined;
|
|
2981
|
+
readonly ":indeterminate"?: import("@emotion/react").CSSObject | undefined;
|
|
2982
|
+
readonly ":invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
2983
|
+
readonly ":last-child"?: import("@emotion/react").CSSObject | undefined;
|
|
2984
|
+
readonly ":last-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
2985
|
+
readonly ":left"?: import("@emotion/react").CSSObject | undefined;
|
|
2986
|
+
readonly ":link"?: import("@emotion/react").CSSObject | undefined;
|
|
2987
|
+
readonly ":local-link"?: import("@emotion/react").CSSObject | undefined;
|
|
2988
|
+
readonly ":nth-col"?: import("@emotion/react").CSSObject | undefined;
|
|
2989
|
+
readonly ":nth-last-col"?: import("@emotion/react").CSSObject | undefined;
|
|
2990
|
+
readonly ":only-child"?: import("@emotion/react").CSSObject | undefined;
|
|
2991
|
+
readonly ":only-of-type"?: import("@emotion/react").CSSObject | undefined;
|
|
2992
|
+
readonly ":optional"?: import("@emotion/react").CSSObject | undefined;
|
|
2993
|
+
readonly ":out-of-range"?: import("@emotion/react").CSSObject | undefined;
|
|
2994
|
+
readonly ":past"?: import("@emotion/react").CSSObject | undefined;
|
|
2995
|
+
readonly ":paused"?: import("@emotion/react").CSSObject | undefined;
|
|
2996
|
+
readonly ":picture-in-picture"?: import("@emotion/react").CSSObject | undefined;
|
|
2997
|
+
readonly ":placeholder-shown"?: import("@emotion/react").CSSObject | undefined;
|
|
2998
|
+
readonly ":playing"?: import("@emotion/react").CSSObject | undefined;
|
|
2999
|
+
readonly ":read-only"?: import("@emotion/react").CSSObject | undefined;
|
|
3000
|
+
readonly ":read-write"?: import("@emotion/react").CSSObject | undefined;
|
|
3001
|
+
readonly ":required"?: import("@emotion/react").CSSObject | undefined;
|
|
3002
|
+
readonly ":right"?: import("@emotion/react").CSSObject | undefined;
|
|
3003
|
+
readonly ":root"?: import("@emotion/react").CSSObject | undefined;
|
|
3004
|
+
readonly ":scope"?: import("@emotion/react").CSSObject | undefined;
|
|
3005
|
+
readonly ":target"?: import("@emotion/react").CSSObject | undefined;
|
|
3006
|
+
readonly ":target-within"?: import("@emotion/react").CSSObject | undefined;
|
|
3007
|
+
readonly ":user-invalid"?: import("@emotion/react").CSSObject | undefined;
|
|
3008
|
+
readonly ":user-valid"?: import("@emotion/react").CSSObject | undefined;
|
|
3009
|
+
readonly ":valid"?: import("@emotion/react").CSSObject | undefined;
|
|
3010
|
+
readonly ":visited"?: import("@emotion/react").CSSObject | undefined;
|
|
3011
|
+
}];
|
|
3012
|
+
export {};
|