We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6168ef4 commit fd776c0Copy full SHA for fd776c0
.changeset/wicked-mice-pretend.md
@@ -0,0 +1,5 @@
1
+---
2
+"@typescript/ata": patch
3
4
+
5
+Fix return type of `setupTypeAcquisition`
packages/ata/src/userFacingTypes.d.ts
@@ -33,7 +33,7 @@ type ModuleMeta = { state: "loading" }
33
* basically exported for tests and should be considered
34
* implementation details by consumers.
35
*/
36
-export const setupTypeAcquisition: (config: ATABootstrapConfig) => (initialSourceFile: string) => void
+export const setupTypeAcquisition: (config: ATABootstrapConfig) => (initialSourceFile: string) => Promise<void>
37
38
interface Logger {
39
log: (...args: any[]) => void
0 commit comments