/** * Created by liuchang on 16/1/18. */ declare var co: coStatic; declare module 'co' { export = co; } interface coStatic { (genFunc: ()=> IterableIterator): Promise; warp(genFunc: ()=> IterableIterator): (...para: any[]) => Promise; }