css_ast 0.0.25

CSS Abstract Syntax Trees with visitable nodes and style value types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(unused)]
use super::prelude::*;

use crate::Todo;

/// <https://drafts.csswg.org/fill-stroke-3/#typedef-paint>
///
/// ```text,ignore
/// <paint> = none | <image> | <svg-paint>
/// <svg-paint> = child | child( <integer> )
/// ```
pub type Paint = Todo;