1#![allow(unused)] 2use super::prelude::*; 3 4use crate::Todo; 5 6/// <https://drafts.csswg.org/fill-stroke-3/#typedef-paint> 7/// 8/// ```text,ignore 9/// <paint> = none | <image> | <svg-paint> 10/// <svg-paint> = child | child( <integer> ) 11/// ``` 12pub type Paint = Todo;