Open
Description
The current implementation doesn't allow to import the .css files using absolute import.
To support it, the .d.ts would need to do
declare module 'path/to/your/cssfile.css' {
const styles: {
readonly "drawer": string;
readonly "overlay": string;
...
};
export = styles;
}
instead of
declare const styles: {
readonly "drawer": string;
readonly "overlay": string;
...
};
export = styles;
Metadata
Metadata
Assignees
Labels
No labels