/// ////const f: () => Array = function() { //// await Promise.resolve([]); ////} verify.codeFix({ index: 1, description: "Add async modifier to containing function", newFileContent: `const f: () => Promise> = async function() { await Promise.resolve([]); }`, });