File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ import type * as _ts from 'typescript';
10
10
// @public
11
11
export function create(rawOptions ? : CreateOptions ): Service ;
12
12
13
+ // Warning: (ae-forgotten-export) The symbol "createEsmHooks" needs to be exported by the entry point index.d.ts
14
+ //
15
+ // @public (undocumented)
16
+ export const createEsmHooks: typeof createEsmHooks_2 ;
17
+
13
18
// @public
14
19
export interface CreateOptions {
15
20
compiler? : string ;
@@ -79,6 +84,9 @@ export type Register = Service;
79
84
// @public
80
85
export function register(opts ? : RegisterOptions ): Service ;
81
86
87
+ // @public
88
+ export function register(service : Service ): Service ;
89
+
82
90
// @public
83
91
export const REGISTER_INSTANCE: unique symbol ;
84
92
@@ -213,7 +221,7 @@ export interface TSCommon {
213
221
}
214
222
215
223
// @public
216
- export interface TsConfigOptions extends Omit <RegisterOptions , ' transformers' | ' readFile' | ' fileExists' | ' skipProject' | ' project' | ' dir' | ' cwd' | ' projectSearchDir' | ' experimentalEsmLoader ' | ' optionBasePaths' > {
224
+ export interface TsConfigOptions extends Omit <RegisterOptions , ' transformers' | ' readFile' | ' fileExists' | ' skipProject' | ' project' | ' dir' | ' cwd' | ' projectSearchDir' | ' optionBasePaths' > {
217
225
}
218
226
219
227
// @public
You can’t perform that action at this time.
0 commit comments