123456789101112131415161718192021222324252627 |
- import type compat from './compat'
- import type getModulesListForTargetVersion from './get-modules-list-for-target-version';
- import type { ModuleName, Target, TargetVersion } from './shared'
- type CompatData = {
- [module: ModuleName]: {
- [target in Target]?: TargetVersion
- }
- };
- declare const ExportedCompatObject: typeof compat & {
- compat: typeof compat,
-
- getModulesListForTargetVersion: typeof getModulesListForTargetVersion,
-
- data: CompatData,
-
- entries: {[entry_point: string]: readonly ModuleName[]},
-
- modules: readonly ModuleName[]
- }
- export = ExportedCompatObject
|