我已经在项目中导入了带有分页组件的表格。我收到此错误:
意外令牌。构造函数,方法,访问器或属性是预期的。
由于此接口代码,它显示错误:
export interface PeriodicElement {
name: string;
position: number;
weight: number;
symbol: string;
}
我已经看到许多解决Stack Overflow中相同错误的建议,但对我没有任何帮助。我知道接口的概念,但这对我来说是新的。我哪里出错了?
答案 0 :(得分:1)
您提供的代码可以正常运行:
您可能在<resources>
<declare-styleable name="MyBehavior_Layout">
<attr name="android:behavior_peekHeight" >
<enum name="auto" value="-1"/>
</attr>
<attr name="android:behavior_hideable" />
<attr name="android:behavior_skipCollapsed" />
<attr name="android:behavior_fitToContents" />
</declare-styleable>
</resources>
和interface
都不是的地方使用A constructor, method, accessor, or property was expected.
。