File size: 343 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* eslint-disable @typescript-eslint/no-unused-vars */

/**
 * This file acts as a dummy implementor for the interface that
 * `runtime-utils.ts` expects to be available in the global scope.
 *
 * This interface will be implemented by runtimes.
 */

declare function getOrInstantiateModuleFromParent<M>(
  id: ModuleId,
  sourceModule: M
): M