source: imaps-frontend/node_modules/core-js-compat/index.d.ts

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 782 bytes
RevLine 
[79a0317]1import type compat from './compat'
2import type getModulesListForTargetVersion from './get-modules-list-for-target-version';
3import type { ModuleName, Target, TargetVersion } from './shared'
4
5type CompatData = {
6 [module: ModuleName]: {
7 [target in Target]?: TargetVersion
8 }
9};
10
11declare 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
27export = ExportedCompatObject
Note: See TracBrowser for help on using the repository browser.