vue-fragment
vue-fragment copied to clipboard
Publish TS typings to npm
Published package doesn't seem to include typings. Can we have those published as well?
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