1
2
3
4
5
6
7
8
9
use swc_common::{ast_node, Span};

use crate::Str;

#[ast_node("CharsetRule")]
pub struct CharsetRule {
    pub span: Span,
    pub charset: Str,
}