We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e0a9c0 commit 66b9a83Copy full SHA for 66b9a83
1 file changed
packages/scenes-client/src/models/object/types/sceneObjectSchemas.ts
@@ -23,7 +23,13 @@ export type RestrictedString = string;
23
/** Expression that determines styling conditions or a single expression. */
24
export type ExpressionOrConditions =
25
| ExpressionString
26
- | { conditions: { condition: ExpressionString; expression: ExpressionString; label?: SafeString }[] };
+ | {
27
+ conditions: {
28
+ condition: ExpressionString;
29
+ expression: ExpressionString;
30
+ label?: SafeString;
31
+ }[];
32
+ };
33
34
/** A structured expression definition that wraps an expression or conditions with optional reusable variable definitions. */
35
export type StyleExpression = {
0 commit comments