Skip to content

Write the .d.ts as declare module ${pathToFile} #270

Open
@ftzi

Description

@ftzi

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions