使用 tsc 时从 p5.play.js 生成 d.ts 文件时出现问题

Problem generating d.ts files from p5.play.js when using tsc

我想为 p5.play.js 生成一个 d.ts 文件,因为没有任何文件,而且 p5.play.js 是一个大图书馆,输入它会很痛苦,我非常d.ts 文件的新手显示我只知道如何声明函数,p5.play.js 也有属性。但是当我尝试创建它时,它会创建一个空的 d.ts 文件 export {};

以下是我尝试过的方法:

  1. 我尝试使用 tsconfig.json 和 tsc 来生成文件,但结果是 export {};,这是我用于 tsc 的配置:
{
  // Change this to match your project
  "include": ["src/"],
  "compilerOptions": {
    // Tells TypeScript to read JS files, as
    // normally they are ignored as source files
    "allowJs": true,
    // Generate d.ts files
    "declaration": true,
    // This compiler run should
    // only output d.ts files
    "emitDeclarationOnly": true,
    // Types should go into this directory.
    // Removing this would place the .d.ts files
    // next to the .js files
    "outDir": "dist"
  }
}

并且是我有 p5.play.js 文件的 src 文件夹

  1. 我尝试使用 d.ts make 和 main.js 并再次创建了一个 d.ts 文件: export {}; 这是我的 main.js for dts使:
require('dts-generator').default({
        name: 'p5.play',
        project: 'src/',
        out: 'p5.play.d.ts'
});

再次在 src 中,我有 p5.play.js。

如果有帮助,这里是 dts 的 npm gen/make https://www.npmjs.com/package/dts-generator 这是 p5.play.js 库:https://github.com/molleindustria/p5.play/blob/master/lib/p5.play.js

我也遇到了与您相同的问题,所以我没有找到预定义的 p5.play.d.ts,而是为 p5.play 创建了自己的文件。该文件在我的 GitHub 存储库中,希望对您有所帮助!!

Link 到文件 -> https://github.com/VisualCode44/Definition-File