Skip to content

Commit

Permalink
fix: add css inline definitions (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
tleperou authored Apr 6, 2023
1 parent 8df0cc8 commit 0ed7d96
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/daisy/type.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module '*.css?inline' {
const content: string;
export = content;
}
4 changes: 4 additions & 0 deletions packages/headless/type.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module '*.css?inline' {
const content: string;
export = content;
}
4 changes: 4 additions & 0 deletions packages/material/type.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module '*.css?inline' {
const content: string;
export = content;
}

0 comments on commit 0ed7d96

Please sign in to comment.