`index.d.ts` is not published to NPM. You can add `types` to `package.json` to publish `index.d.ts`. ``` { "main": "index.js", + "types": "types/index.d.ts", } ```