带打字稿的eslint,使用函数类型时缺少函数的返回类型

时间:2019-10-30 14:45:06

标签: typescript eslint typescript-typings

我不断得到:

warning Missing return type on function @typescript-eslint/explicit-function-return-type

但是我的函数如下:

type GetSpecificList = (params: GetSpecificListParams) => Promise<List | undefined>;
export const getSpecificList = (api: ApiType): GetSpecificList => async p => {...}

即使类型是使用类型化函数提供的,但eslint似乎仍会抱怨吗? 关于此规则我缺少什么?

0 个答案:

没有答案