解析错误:意外的令牌接口

时间:2019-01-02 13:16:15

标签: javascript reactjs typescript

将应用程序从响应迁移到使用打字稿。证明有点痛苦

我在.tsx文件中遇到此错误:Parsing error: Unexpected token interface

我在哪里

export interface IProps {
    propOne: any
    propTwo: any
}

知道为什么要这样做吗?

该界面位于我的组件上方

export interface IProps {
    propOne: any
    propTwo: any
}

export const mYComponent = (props: IProps) => {
   //component stuff
}

我在做什么错了?

我刚刚从项目中删除了eslint并安装了它:https://www.npmjs.com/package/tslint-eslint-rules,而我仅在tslint.json文件中使用它。不知道为什么它不喜欢单词界面? :/

1 个答案:

答案 0 :(得分:1)

我认为您只需删除export之前的interface

因为每个文件只能导出一件东西。