From f925511bd8fc9b4d7bfc240f96b8235ddfe93654 Mon Sep 17 00:00:00 2001 From: Asaki Yuki Date: Tue, 27 Jan 2026 13:17:55 +0700 Subject: [PATCH] add animation keyframe for animation type --- src/types/properties/value.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/properties/value.ts b/src/types/properties/value.ts index 73f2d01..84cd6cc 100644 --- a/src/types/properties/value.ts +++ b/src/types/properties/value.ts @@ -9,10 +9,12 @@ import { InputModeCondition } from "../enums/InputModeCondition.js" import { Scope } from "../enums/Scope.js" import { ArrayName } from "../enums/ArrayName.js" import { Operation } from "../enums/Operation.js" +import { AnimType } from "../enums/AnimType.js" +import { AnimationKeyframe } from "../../components/AnimationKeyframe.js" export type Variable = `$${string}` export type Binding = `#${string}` -export type Animation = anim.Animation | `@${string}` +export type Animation = anim.Animation | AnimationKeyframe | `@${string}` export type Array2 = [T, T] export type Array3 = [T, T, T]