We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06716fb commit 720685aCopy full SHA for 720685a
index.d.ts
@@ -0,0 +1,9 @@
1
+/**
2
+ * An identity object using ES6 proxies. Useful for mocking webpack imports. For instance, you can
3
+ * tell Jest to mock this object as imported
4
+ * [CSS modules](https://github.com/css-modules/css-modules); then all your `className` lookups on
5
+ * the imported `styles` object will be returned as-is.
6
+ */
7
+declare const idObj: Record<string, string>;
8
+
9
+export = idObj
0 commit comments