@bace51/cocktailjs-react 1.0.4 → 1.0.5
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/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// Minimal fallback typings for consumers until full type declarations are added.
|
|
2
|
+
// This file will be copied into `dist/index.d.ts` by the package `prepare` script.
|
|
3
|
+
|
|
4
|
+
declare module '@bace51/cocktailjs-react' {
|
|
5
|
+
// permissive any-based exports to avoid TypeScript errors in consumer projects
|
|
6
|
+
const content: { [key: string]: any };
|
|
7
|
+
export = content;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export {};
|