8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
/**
|
|
* List of css files imported by the current fresh route.
|
|
*/
|
|
export const styles = new Map<
|
|
string,
|
|
{ url: string; layer: string | undefined; scope: string | undefined }
|
|
>()
|