我的流代码看起来像这样。当我flow check
时收到错误1: const docs: Array<LeadDoc> = property docType of LeadDoc. Property not found in
流程中是否尚未支持此功能?
export interface LeadDoc {
docType(): string;
}
class Foo {
docType(): string {
return 'foo';
}
}
const docs: Array<LeadDoc> = [
Foo,
];
答案 0 :(得分:1)
docType
是Foo
的实例的属性,但[Foo]
是{{>>的静态的单例数组1}}。 Foo
的类型为[new Foo]
。