grimoire_css_lib/core/compiled_css.rs
1//! Types for representing compiled CSS output in filesystem and memory.
2
3use std::path::PathBuf;
4
5/// A vector of tuples containing output file paths and their CSS content
6pub type CompiledCssFs = Vec<(PathBuf, String)>;
7
8/// In-memory representation of compiled CSS with a name identifier
9#[derive(Debug)]
10pub struct CompiledCssInMemory {
11 /// Name identifier for the compiled CSS
12 pub name: String,
13 /// The compiled CSS content
14 pub content: String,
15}