@frontfriend/tailwind 2.1.4 → 2.1.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/types/index.d.ts +2 -4
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ declare module '@frontfriend/tailwind' {
|
|
|
50
50
|
[key: string]: string | IconSetStructure;
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
-
const plugin: PluginCreator
|
|
53
|
+
const plugin: PluginCreator;
|
|
54
54
|
export default plugin;
|
|
55
55
|
}
|
|
56
56
|
|
|
@@ -71,14 +71,12 @@ declare module '@frontfriend/tailwind/runtime' {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
declare module '@frontfriend/tailwind/next' {
|
|
74
|
-
import { NextConfig } from 'next';
|
|
75
|
-
|
|
76
74
|
/**
|
|
77
75
|
* Wraps Next.js configuration to inject FrontFriend globals
|
|
78
76
|
* @param config - Next.js configuration object
|
|
79
77
|
* @returns Modified Next.js configuration
|
|
80
78
|
*/
|
|
81
|
-
export default function frontfriend(config?:
|
|
79
|
+
export default function frontfriend(config?: any): any;
|
|
82
80
|
}
|
|
83
81
|
|
|
84
82
|
declare module '@frontfriend/tailwind/cli' {
|