fynixui 1.0.1 → 1.0.2
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.
Potentially problematic release.
This version of fynixui might be problematic. Click here for more details.
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/types/global.d.ts +4 -0
- package/types/vite-env.d.ts +4 -1
package/dist/package.json
CHANGED
package/package.json
CHANGED
package/types/global.d.ts
CHANGED
|
@@ -264,6 +264,10 @@ declare module "*.js" {
|
|
|
264
264
|
const Component: any;
|
|
265
265
|
export default Component;
|
|
266
266
|
}
|
|
267
|
+
declare module "*.fnx" {
|
|
268
|
+
const Component: any;
|
|
269
|
+
export default Component;
|
|
270
|
+
}
|
|
267
271
|
declare module "*.ts" {
|
|
268
272
|
const Component: any;
|
|
269
273
|
export default Component;
|
package/types/vite-env.d.ts
CHANGED