2017-05-29 93 views

回答

1

我不知道是否有更乾淨的方式來做到這一點,但它在技術上是可行的。

function f<T>(o: {[key: string]: T}): T { 
    return undefined!; 
} 

const garbage = f(MapDispatchToProps); 

export type ActionsType = typeof garbage; 

凝結(只要我能管理):

const garbage = (<T>(o: {[key: string]: T}): T => undefined!)(MapDispatchToProps); 

export type ActionsType = typeof garbage;