framework7io / framework7-icons

Free iOS-icons font for Framework7
http://framework7.io/icons/
MIT License
208 stars 125 forks source link

Could not find a declaration file for module 'framework7-icons/vue' #43

Open riderx opened 2 years ago

riderx commented 2 years ago

When using TS in vue i got this issue:

CleanShot 2022-08-28 at 11 44 15@2x CleanShot 2022-08-28 at 11 44 33@2x
peitschie commented 2 years ago

As a stopgap for this, I've added a framework7-icons.d.ts TypeScript declaration file with content like the following:

declare module "framework7-icons/vue" {
  const ShiftFill: unknown;
  const RocketFill: unknown;
}

This clears up the warning for me!