我有一个类型def文件,如下所示:
// Type Definitions
export interface IPane {
key: string;
tab?: string;
closable?: boolean;
title?: string;
}
export interface ApolloGraphQLResult<T> {
data: T;
errors: Array<any>;
loading: boolean;
networkStatus: NetworkStatus;
stale: boolean;
}
但是,当我导入这些类型时,Flow会被视为任何类型:
import type { IPane } from '../../types'; // [Flow] IPane: any
这是我的flowconfig设置。
[ignore]
.*/dist/.*
.*/node_modules/jsonlint/.*
.*/node_modules/rc-util/.*
[include]
[libs]
./src/global.js
flow-typed
[options]
esproposal.decorators=ignore
module.name_mapper='^.*\.css$' -> 'css-module-flow'
module.name_mapper='^.*\.scss$' -> 'css-module-flow'
module.name_mapper='^.*\.less$' -> 'css-module-flow'
module.name_mapper='^components\(.*\)$' -> '<PROJECT_ROOT>/src/components/\1'
module.name_mapper='^containers\(.*\)$' -> '<PROJECT_ROOT>/src/containers/\1'
module.system=haste
module.system.node.resolve_dirname=node_modules
[lints]
我的设置似乎没有错。重新启动流程没有任何改变。
我想念什么?为什么将Flow视为任何类型?
答案 0 :(得分:0)
您是否尝试过使用export type
而不是export interface
?