我正在使用Typescript,我想在jasmine(2.8.0)中实现自定义匹配器。 当我尝试在https://jasmine.github.io/2.0/custom_matcher.html使用示例时 我从业力中得到以下错误:
(96,12): error TS2339: Property 'toBeGoofy' does not exist on type 'Matchers<{ hyuk: string; }>'.
我在这里缺少什么?
答案 0 :(得分:0)
您必须在界面中声明方法,如下所示:
declare namespace jasmine {
interface Matchers {
toBeGoofy(expected?: string): boolean;
}
}