css_ast/types/single_animation.rs
1#![allow(unused)]
2use super::prelude::*;
3
4use crate::Todo;
5
6/// <https://drafts.csswg.org/css-animations-2/#typedef-single-animation>
7///
8/// ```text,ignore
9/// <single-animation> =
10/// <'animation-duration'> ||
11/// <easing-function> ||
12/// <'animation-delay'> ||
13/// <single-animation-iteration-count> ||
14/// <single-animation-direction> ||
15/// <single-animation-fill-mode> ||
16/// <single-animation-play-state> ||
17/// [ none | <keyframes-name> ] ||
18/// <single-animation-timeline>
19/// `` `
20pub type SingleAnimation = Todo;