Skip to content

Commit

Permalink
run yarn build-ast
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinMalfait committed Mar 23, 2024
1 parent cfc438e commit b7200b4
Showing 1 changed file with 45 additions and 37 deletions.
82 changes: 45 additions & 37 deletions node/ast.d.ts
@@ -1,4 +1,4 @@
/* tslint:disable */
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
Expand Down Expand Up @@ -5597,6 +5597,48 @@ export type Perspective =
type: "length";
value: Length;
};
/**
* A value for the [translate](https://drafts.csswg.org/css-transforms-2/#propdef-translate) property.
*/
export type Translate =
| "None"
| {
XYZ: {
/**
* The x translation.
*/
x: DimensionPercentageFor_LengthValue;
/**
* The y translation.
*/
y: DimensionPercentageFor_LengthValue;
/**
* The z translation.
*/
z: Length;
};
};
/**
* A value for the [scale](https://drafts.csswg.org/css-transforms-2/#propdef-scale) property.
*/
export type Scale =
| "None"
| {
XYZ: {
/**
* Scale on the x axis.
*/
x: NumberOrPercentage;
/**
* Scale on the y axis.
*/
y: NumberOrPercentage;
/**
* Scale on the z axis.
*/
z: NumberOrPercentage;
};
};
/**
* Defines how text case should be transformed in the [text-transform](https://www.w3.org/TR/2021/CRD-css-text-3-20210422/#text-transform-property) property.
*/
Expand Down Expand Up @@ -7040,8 +7082,8 @@ export type ParsedComponent =
};
}
| {
type: "token";
value: Token;
type: "token-list";
value: TokenOrValue[];
};
/**
* A [multiplier](https://drafts.css-houdini.org/css-properties-values-api/#multipliers) for a [SyntaxComponent](SyntaxComponent). Indicates whether and how the component may be repeated.
Expand Down Expand Up @@ -8489,23 +8531,6 @@ export interface Matrix3DForFloat {
m43: number;
m44: number;
}
/**
* A value for the [translate](https://drafts.csswg.org/css-transforms-2/#propdef-translate) property.
*/
export interface Translate {
/**
* The x translation.
*/
x: DimensionPercentageFor_LengthValue;
/**
* The y translation.
*/
y: DimensionPercentageFor_LengthValue;
/**
* The z translation.
*/
z: Length;
}
/**
* A value for the [rotate](https://drafts.csswg.org/css-transforms-2/#propdef-rotate) property.
*/
Expand All @@ -8527,23 +8552,6 @@ export interface Rotate {
*/
z: number;
}
/**
* A value for the [scale](https://drafts.csswg.org/css-transforms-2/#propdef-scale) property.
*/
export interface Scale {
/**
* Scale on the x axis.
*/
x: NumberOrPercentage;
/**
* Scale on the y axis.
*/
y: NumberOrPercentage;
/**
* Scale on the z axis.
*/
z: NumberOrPercentage;
}
/**
* A value for the [text-transform](https://www.w3.org/TR/2021/CRD-css-text-3-20210422/#text-transform-property) property.
*/
Expand Down

0 comments on commit b7200b4

Please sign in to comment.