@shohojdhara/atomix 0.1.7 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/css.d.ts ADDED
@@ -0,0 +1,10 @@
1
+ // Type definitions for CSS imports
2
+ declare module '*.css' {
3
+ const content: { [className: string]: string };
4
+ export default content;
5
+ }
6
+
7
+ declare module '*.scss' {
8
+ const content: { [className: string]: string };
9
+ export default content;
10
+ }