export interface ModuleRegistry {
  has(specifier: string): boolean;

  get(specifier: string): any;
}
