Open unematiii opened 4 years ago
This would be useful seeing as they're already in the repo.
Have to ts ignore the import...
// @ts-ignore
import { Fragment } from 'vue-fragment';
So yea would be nice!
Have to ts ignore the import...
// @ts-ignore import { Fragment } from 'vue-fragment';
So yea would be nice!
Or add .d.ts with
declare module "vue-fragment";
I will often create a types/missing-modules.d.ts
file and declare any missing package types here:
// types/missing-modules.d.ts
declare module "vue-fragment";
// ...etc
Published package doesn't seem to include typings. Can we have those published as well?