This commit is contained in:
Maciej Caderek
2022-01-30 05:04:17 +01:00
parent a7c2d09c96
commit 3023329586
19 changed files with 4431 additions and 274 deletions

View File

@@ -8,6 +8,7 @@ export type GradientDir =
export type GradientData = {
dir: GradientDir;
colors: string[];
[key: string]: any;
};
export type Gradient = {
@@ -17,6 +18,7 @@ export type Gradient = {
export type SolidData = {
color: string;
[key: string]: any;
};
export type Solid = {
@@ -26,6 +28,7 @@ export type Solid = {
export type ImageData = {
src: string;
[key: string]: any;
};
export type Image = {