在TypeScript中,为什么不能返回任何类型的Array?

时间:2018-07-11 15:26:24

标签: typescript

我的代码如下:

const commands: any[] = [];

export function getCommands(): any[] {
    return getCommands;
}

我的错误消息是:

Type () => any() is not assignable to type any[]

为什么会出现此错误?

0 个答案:

没有答案