Skip to content

Commit

Permalink
wip(scrim-inline): fix tsc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoMcA committed Sep 17, 2024
1 parent a0a519e commit cb68df4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ssr/react-app.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,16 @@ declare module "*.svg" {
export default src;
}

declare module "*?url" {
const src: string;
export default src;
}

declare module "*?raw" {
const src: string;
export default src;
}

declare module "*.module.css" {
const classes: { readonly [key: string]: string };
export default classes;
Expand Down

0 comments on commit cb68df4

Please sign in to comment.