作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为 storybook-router
写一个类型定义.它不需要那么准确,因为这是一个次要的开发工具(即 any
是可以接受的),但我什至似乎无法让它工作。
我要代表的是:
import StoryRouter from 'storybook-router';
StoryRouter
是匹配接口(interface)
StoryDecorator
的函数来自
@types/storybook__react
.
import { StoryDecorator } from '@storybook/react';
declare type StoryRouter = StoryDecorator;
export default StoryRouter;
TS7016: Could not find a declaration file for module 'storybook-router'. '/<path snipped>/node_modules/storybook-router/dist/StoryRouter.js' implicitly has an 'any' type. Try
npm install @types/storybook-router
if it exists or add a new declaration (.d.ts) file containingdeclare module 'storybook-router';
declare module 'storybook-router'
),我似乎无法弄清楚如何设置默认导出。
最佳答案
您无需导入 .d.ts 文件,只需声明模块。
通常,它看起来像这样(任何最简单的用例):
// storybook-router.d.ts
declare module 'storybook-router' {
const StoryDecorator:any;
export default StoryDecorator;
}
关于typescript - 如何为具有默认导出的模块编写类型定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47903313/
我是一名优秀的程序员,十分优秀!