Skip to main content

stylex_enums/
import_path_resolution.rs

1#[derive(Debug, PartialEq, Clone)]
2pub enum ImportPathResolution {
3  False,
4  Tuple(ImportPathResolutionType, String),
5}
6
7#[derive(Debug, PartialEq, Clone, Copy)]
8pub enum ImportPathResolutionType {
9  ThemeNameRef,
10  // FilePath,
11}