grass/src/atrule/supports.rs

8 lines
133 B
Rust
Raw Normal View History

2020-06-25 00:27:24 -04:00
use crate::parse::Stmt;
#[derive(Debug, Clone)]
pub(crate) struct SupportsRule {
pub params: String,
pub body: Vec<Stmt>,
}