gpt4 book ai didi

javascript - 如何使用 react typescript 在 Electron 中获取 Node 类型?

转载 作者:行者123 更新时间:2023-12-03 12:39:46 32 4
gpt4 key购买 nike

这是代码
在 react App.tsx

const fs = window.require('fs')
fs.readFile(....)
目标
  • 获取 Node 模块类型
  • 像 fs 一样获取 Node 模块智能感知。

  • 问题
    如果我想在 Electron React 项目中使用 Node 模块,我应该从窗口中要求“fs”,但这会丢失 Node 模块类型和智能感知

    最佳答案

    你可以使用 TypeScript import() types .

    const fs: typeof import("fs") = window.require('fs');
    fs.readFile(...)
    enter image description here

    关于javascript - 如何使用 react typescript 在 Electron 中获取 Node 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63006896/

    32 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com