11 lines
258 B
TypeScript
11 lines
258 B
TypeScript
import { z } from "zod";
|
|
import { AnimatedValue } from "./Values";
|
|
|
|
export const AnimatedProperty = z.object({
|
|
propertyPath: z.string(),
|
|
animatedValue: AnimatedValue,
|
|
label: z.string(),
|
|
});
|
|
|
|
export const AnimatedProperties = z.array(AnimatedProperty);
|