1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
use std::collections::HashSet;

use crate::Result;
use parcel_css::stylesheet::{MinifyOptions, ParserOptions, PrinterOptions, StyleSheet};
mod methods;

///
#[derive(Clone, Debug)]
pub struct CssProcessor {
    pub minify: bool,
    pub unused_symbols: HashSet<String>,
}