Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个组件库,如您所见,我具有以下结构。
src - components + Button + Spinner - interfaces + Button.interface
我想要的是,当我进行构建时,界面路径不会出现在 Button.d.ts 文件中,而是界面本身。
我知道这可以通过在 Button.tsx 文件中创建接口来完成,但我希望将所有接口都放在同一个文件夹中。
编译时有没有办法将接口的内容放入组件中?
这是我的代码