grass/src/atrule/supports.rs
2020-06-25 00:27:24 -04:00

8 lines
133 B
Rust

use crate::parse::Stmt;
#[derive(Debug, Clone)]
pub(crate) struct SupportsRule {
pub params: String,
pub body: Vec<Stmt>,
}