| use turbo_tasks::Vc; | |
| use turbopack_core::{asset::Asset, chunk::ChunkingContext, module::Module, output::OutputAsset}; | |
| pub trait CssEmbed: Module + Asset { | |
| fn embedded_asset( | |
| self: Vc<Self>, | |
| chunking_context: Vc<Box<dyn ChunkingContext>>, | |
| ) -> Vc<Box<dyn OutputAsset>>; | |
| } | |