main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
782 bytes
|
Line | |
---|
1 | import type compat from './compat'
|
---|
2 | import type getModulesListForTargetVersion from './get-modules-list-for-target-version';
|
---|
3 | import type { ModuleName, Target, TargetVersion } from './shared'
|
---|
4 |
|
---|
5 | type CompatData = {
|
---|
6 | [module: ModuleName]: {
|
---|
7 | [target in Target]?: TargetVersion
|
---|
8 | }
|
---|
9 | };
|
---|
10 |
|
---|
11 | declare const ExportedCompatObject: typeof compat & {
|
---|
12 | compat: typeof compat,
|
---|
13 |
|
---|
14 | /** The subset of modules which available in the passed `core-js` version */
|
---|
15 | getModulesListForTargetVersion: typeof getModulesListForTargetVersion,
|
---|
16 |
|
---|
17 | /** Full list compatibility data */
|
---|
18 | data: CompatData,
|
---|
19 |
|
---|
20 | /** map of modules by `core-js` entry points */
|
---|
21 | entries: {[entry_point: string]: readonly ModuleName[]},
|
---|
22 |
|
---|
23 | /** Full list of modules */
|
---|
24 | modules: readonly ModuleName[]
|
---|
25 | }
|
---|
26 |
|
---|
27 | export = ExportedCompatObject
|
---|
Note:
See
TracBrowser
for help on using the repository browser.