I have the following TypeScript code:
const allDescribeBlocks: Array<ITestSuite> = suman.allDescribeBlocks;
async.eachSeries(allDescribeBlocks, function (block: ITestSuite, cb: Function) {
//....
}, cb);
this will transpile with warnings:
Argument of type ITestSuite[] is not assignable to parameter of type Dictionary<{}>. Index signature is missing in ITestSuite[].
How to fix?

Have you installed the latest type definition for async library?
I just checked their source and it should accept both array and collection:
I think if you install the type definition module and add the definition directory to your
tsconfig.jsonusing"typeRoots": ["node_modules/@types"], it should solve the issue.Edit - Also, you should avoid
Array<T>definition for simple types and useT[]instead.