dragonfly_chrome_headless 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (228) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.travis.yml +12 -0
  4. data/Gemfile +4 -0
  5. data/README.md +53 -0
  6. data/Rakefile +10 -0
  7. data/bin/console +14 -0
  8. data/bin/setup +8 -0
  9. data/dragonfly_chrome_headless.gemspec +27 -0
  10. data/lib/dragonfly_chrome_headless.rb +9 -0
  11. data/lib/dragonfly_chrome_headless/plugin.rb +17 -0
  12. data/lib/dragonfly_chrome_headless/processors/rasterize.rb +33 -0
  13. data/lib/dragonfly_chrome_headless/version.rb +3 -0
  14. data/node_modules/.bin/chrome-remote-interface +1 -0
  15. data/node_modules/.bin/mkdirp +1 -0
  16. data/node_modules/.bin/rimraf +1 -0
  17. data/node_modules/@types/core-js/LICENSE +21 -0
  18. data/node_modules/@types/core-js/README.md +16 -0
  19. data/node_modules/@types/core-js/index.d.ts +2452 -0
  20. data/node_modules/@types/core-js/package.json +85 -0
  21. data/node_modules/@types/mkdirp/README.md +18 -0
  22. data/node_modules/@types/mkdirp/index.d.ts +14 -0
  23. data/node_modules/@types/mkdirp/package.json +77 -0
  24. data/node_modules/@types/mkdirp/types-metadata.json +25 -0
  25. data/node_modules/@types/node/README.md +16 -0
  26. data/node_modules/@types/node/index.d.ts +4132 -0
  27. data/node_modules/@types/node/package.json +84 -0
  28. data/node_modules/balanced-match/.npmignore +5 -0
  29. data/node_modules/balanced-match/LICENSE.md +21 -0
  30. data/node_modules/balanced-match/README.md +91 -0
  31. data/node_modules/balanced-match/index.js +59 -0
  32. data/node_modules/balanced-match/package.json +112 -0
  33. data/node_modules/brace-expansion/README.md +123 -0
  34. data/node_modules/brace-expansion/index.js +201 -0
  35. data/node_modules/brace-expansion/package.json +114 -0
  36. data/node_modules/chrome-launcher/.clang-format +6 -0
  37. data/node_modules/chrome-launcher/.npmignore +11 -0
  38. data/node_modules/chrome-launcher/README.md +123 -0
  39. data/node_modules/chrome-launcher/ask.js +32 -0
  40. data/node_modules/chrome-launcher/ask.ts +35 -0
  41. data/node_modules/chrome-launcher/chrome-finder.js +157 -0
  42. data/node_modules/chrome-launcher/chrome-finder.ts +186 -0
  43. data/node_modules/chrome-launcher/chrome-launcher.js +245 -0
  44. data/node_modules/chrome-launcher/chrome-launcher.ts +312 -0
  45. data/node_modules/chrome-launcher/compiled-check.js +14 -0
  46. data/node_modules/chrome-launcher/flags.js +27 -0
  47. data/node_modules/chrome-launcher/flags.ts +26 -0
  48. data/node_modules/chrome-launcher/index.js +7 -0
  49. data/node_modules/chrome-launcher/index.ts +1 -0
  50. data/node_modules/chrome-launcher/manual-chrome-launcher.js +30 -0
  51. data/node_modules/chrome-launcher/package.json +116 -0
  52. data/node_modules/chrome-launcher/random-port.js +24 -0
  53. data/node_modules/chrome-launcher/random-port.ts +23 -0
  54. data/node_modules/chrome-launcher/tsconfig.json +19 -0
  55. data/node_modules/chrome-launcher/utils.js +52 -0
  56. data/node_modules/chrome-launcher/utils.ts +44 -0
  57. data/node_modules/chrome-launcher/yarn.lock +1486 -0
  58. data/node_modules/chrome-remote-interface/LICENSE +18 -0
  59. data/node_modules/chrome-remote-interface/README.md +849 -0
  60. data/node_modules/chrome-remote-interface/bin/client.js +337 -0
  61. data/node_modules/chrome-remote-interface/chrome-remote-interface.js +11 -0
  62. data/node_modules/chrome-remote-interface/index.js +39 -0
  63. data/node_modules/chrome-remote-interface/lib/api.js +84 -0
  64. data/node_modules/chrome-remote-interface/lib/chrome.js +307 -0
  65. data/node_modules/chrome-remote-interface/lib/defaults.js +4 -0
  66. data/node_modules/chrome-remote-interface/lib/devtools.js +245 -0
  67. data/node_modules/chrome-remote-interface/lib/external-request.js +28 -0
  68. data/node_modules/chrome-remote-interface/lib/protocol.json +13780 -0
  69. data/node_modules/chrome-remote-interface/lib/websocket-wrapper.js +32 -0
  70. data/node_modules/chrome-remote-interface/package.json +128 -0
  71. data/node_modules/chrome-remote-interface/webpack.config.js +55 -0
  72. data/node_modules/commander/Readme.md +195 -0
  73. data/node_modules/commander/index.js +851 -0
  74. data/node_modules/commander/package.json +92 -0
  75. data/node_modules/concat-map/.travis.yml +4 -0
  76. data/node_modules/concat-map/LICENSE +18 -0
  77. data/node_modules/concat-map/README.markdown +62 -0
  78. data/node_modules/concat-map/example/map.js +6 -0
  79. data/node_modules/concat-map/index.js +13 -0
  80. data/node_modules/concat-map/package.json +117 -0
  81. data/node_modules/concat-map/test/map.js +39 -0
  82. data/node_modules/debug/.coveralls.yml +1 -0
  83. data/node_modules/debug/.eslintrc +11 -0
  84. data/node_modules/debug/.npmignore +9 -0
  85. data/node_modules/debug/.travis.yml +14 -0
  86. data/node_modules/debug/CHANGELOG.md +357 -0
  87. data/node_modules/debug/LICENSE +19 -0
  88. data/node_modules/debug/Makefile +50 -0
  89. data/node_modules/debug/Readme.md +312 -0
  90. data/node_modules/debug/component.json +19 -0
  91. data/node_modules/debug/karma.conf.js +70 -0
  92. data/node_modules/debug/node.js +1 -0
  93. data/node_modules/debug/package.json +124 -0
  94. data/node_modules/debug/src/browser.js +185 -0
  95. data/node_modules/debug/src/debug.js +202 -0
  96. data/node_modules/debug/src/index.js +10 -0
  97. data/node_modules/debug/src/node.js +246 -0
  98. data/node_modules/fs.realpath/LICENSE +43 -0
  99. data/node_modules/fs.realpath/README.md +33 -0
  100. data/node_modules/fs.realpath/index.js +66 -0
  101. data/node_modules/fs.realpath/old.js +303 -0
  102. data/node_modules/fs.realpath/package.json +94 -0
  103. data/node_modules/glob/LICENSE +15 -0
  104. data/node_modules/glob/README.md +368 -0
  105. data/node_modules/glob/changelog.md +67 -0
  106. data/node_modules/glob/common.js +240 -0
  107. data/node_modules/glob/glob.js +790 -0
  108. data/node_modules/glob/package.json +112 -0
  109. data/node_modules/glob/sync.js +486 -0
  110. data/node_modules/html-pdf-chrome/.npmignore +9 -0
  111. data/node_modules/html-pdf-chrome/LICENSE +21 -0
  112. data/node_modules/html-pdf-chrome/README.md +165 -0
  113. data/node_modules/html-pdf-chrome/lib/src/ChromePrintOptions.d.ts +87 -0
  114. data/node_modules/html-pdf-chrome/lib/src/ChromePrintOptions.js +4 -0
  115. data/node_modules/html-pdf-chrome/lib/src/ChromePrintOptions.js.map +1 -0
  116. data/node_modules/html-pdf-chrome/lib/src/CompletionTrigger.d.ts +120 -0
  117. data/node_modules/html-pdf-chrome/lib/src/CompletionTrigger.js +206 -0
  118. data/node_modules/html-pdf-chrome/lib/src/CompletionTrigger.js.map +1 -0
  119. data/node_modules/html-pdf-chrome/lib/src/CreateResult.d.ts +70 -0
  120. data/node_modules/html-pdf-chrome/lib/src/CreateResult.js +98 -0
  121. data/node_modules/html-pdf-chrome/lib/src/CreateResult.js.map +1 -0
  122. data/node_modules/html-pdf-chrome/lib/src/index.d.ts +72 -0
  123. data/node_modules/html-pdf-chrome/lib/src/index.js +123 -0
  124. data/node_modules/html-pdf-chrome/lib/src/index.js.map +1 -0
  125. data/node_modules/html-pdf-chrome/package.json +133 -0
  126. data/node_modules/html-pdf-chrome/src/ChromePrintOptions.ts +99 -0
  127. data/node_modules/html-pdf-chrome/src/CompletionTrigger.ts +201 -0
  128. data/node_modules/html-pdf-chrome/src/CreateResult.ts +100 -0
  129. data/node_modules/html-pdf-chrome/src/index.ts +179 -0
  130. data/node_modules/inflight/LICENSE +15 -0
  131. data/node_modules/inflight/README.md +37 -0
  132. data/node_modules/inflight/inflight.js +54 -0
  133. data/node_modules/inflight/package.json +105 -0
  134. data/node_modules/inherits/LICENSE +16 -0
  135. data/node_modules/inherits/README.md +42 -0
  136. data/node_modules/inherits/inherits.js +7 -0
  137. data/node_modules/inherits/inherits_browser.js +23 -0
  138. data/node_modules/inherits/package.json +97 -0
  139. data/node_modules/lighthouse-logger/README.md +4 -0
  140. data/node_modules/lighthouse-logger/index.js +212 -0
  141. data/node_modules/lighthouse-logger/package.json +69 -0
  142. data/node_modules/lighthouse-logger/yarn.lock +13 -0
  143. data/node_modules/minimatch/LICENSE +15 -0
  144. data/node_modules/minimatch/README.md +209 -0
  145. data/node_modules/minimatch/minimatch.js +923 -0
  146. data/node_modules/minimatch/package.json +99 -0
  147. data/node_modules/minimist/.travis.yml +4 -0
  148. data/node_modules/minimist/LICENSE +18 -0
  149. data/node_modules/minimist/example/parse.js +2 -0
  150. data/node_modules/minimist/index.js +187 -0
  151. data/node_modules/minimist/package.json +101 -0
  152. data/node_modules/minimist/readme.markdown +73 -0
  153. data/node_modules/minimist/test/dash.js +24 -0
  154. data/node_modules/minimist/test/default_bool.js +20 -0
  155. data/node_modules/minimist/test/dotted.js +16 -0
  156. data/node_modules/minimist/test/long.js +31 -0
  157. data/node_modules/minimist/test/parse.js +318 -0
  158. data/node_modules/minimist/test/parse_modified.js +9 -0
  159. data/node_modules/minimist/test/short.js +67 -0
  160. data/node_modules/minimist/test/whitespace.js +8 -0
  161. data/node_modules/mkdirp/.travis.yml +8 -0
  162. data/node_modules/mkdirp/LICENSE +21 -0
  163. data/node_modules/mkdirp/bin/cmd.js +33 -0
  164. data/node_modules/mkdirp/bin/usage.txt +12 -0
  165. data/node_modules/mkdirp/examples/pow.js +6 -0
  166. data/node_modules/mkdirp/index.js +98 -0
  167. data/node_modules/mkdirp/package.json +93 -0
  168. data/node_modules/mkdirp/readme.markdown +100 -0
  169. data/node_modules/mkdirp/test/chmod.js +41 -0
  170. data/node_modules/mkdirp/test/clobber.js +38 -0
  171. data/node_modules/mkdirp/test/mkdirp.js +28 -0
  172. data/node_modules/mkdirp/test/opts_fs.js +29 -0
  173. data/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  174. data/node_modules/mkdirp/test/perm.js +32 -0
  175. data/node_modules/mkdirp/test/perm_sync.js +36 -0
  176. data/node_modules/mkdirp/test/race.js +37 -0
  177. data/node_modules/mkdirp/test/rel.js +32 -0
  178. data/node_modules/mkdirp/test/return.js +25 -0
  179. data/node_modules/mkdirp/test/return_sync.js +24 -0
  180. data/node_modules/mkdirp/test/root.js +19 -0
  181. data/node_modules/mkdirp/test/sync.js +32 -0
  182. data/node_modules/mkdirp/test/umask.js +28 -0
  183. data/node_modules/mkdirp/test/umask_sync.js +32 -0
  184. data/node_modules/ms/README.md +51 -0
  185. data/node_modules/ms/index.js +152 -0
  186. data/node_modules/ms/license.md +21 -0
  187. data/node_modules/ms/package.json +109 -0
  188. data/node_modules/once/LICENSE +15 -0
  189. data/node_modules/once/README.md +79 -0
  190. data/node_modules/once/once.js +42 -0
  191. data/node_modules/once/package.json +101 -0
  192. data/node_modules/path-is-absolute/index.js +20 -0
  193. data/node_modules/path-is-absolute/license +21 -0
  194. data/node_modules/path-is-absolute/package.json +111 -0
  195. data/node_modules/path-is-absolute/readme.md +59 -0
  196. data/node_modules/rimraf/LICENSE +15 -0
  197. data/node_modules/rimraf/README.md +101 -0
  198. data/node_modules/rimraf/bin.js +50 -0
  199. data/node_modules/rimraf/package.json +99 -0
  200. data/node_modules/rimraf/rimraf.js +363 -0
  201. data/node_modules/ultron/LICENSE +22 -0
  202. data/node_modules/ultron/index.js +138 -0
  203. data/node_modules/ultron/package.json +112 -0
  204. data/node_modules/wrappy/LICENSE +15 -0
  205. data/node_modules/wrappy/README.md +36 -0
  206. data/node_modules/wrappy/package.json +97 -0
  207. data/node_modules/wrappy/wrappy.js +33 -0
  208. data/node_modules/ws/LICENSE +21 -0
  209. data/node_modules/ws/README.md +259 -0
  210. data/node_modules/ws/SECURITY.md +33 -0
  211. data/node_modules/ws/index.js +15 -0
  212. data/node_modules/ws/lib/BufferUtil.fallback.js +56 -0
  213. data/node_modules/ws/lib/BufferUtil.js +15 -0
  214. data/node_modules/ws/lib/ErrorCodes.js +28 -0
  215. data/node_modules/ws/lib/EventTarget.js +158 -0
  216. data/node_modules/ws/lib/Extensions.js +69 -0
  217. data/node_modules/ws/lib/PerMessageDeflate.js +339 -0
  218. data/node_modules/ws/lib/Receiver.js +520 -0
  219. data/node_modules/ws/lib/Sender.js +438 -0
  220. data/node_modules/ws/lib/Validation.fallback.js +9 -0
  221. data/node_modules/ws/lib/Validation.js +17 -0
  222. data/node_modules/ws/lib/WebSocket.js +705 -0
  223. data/node_modules/ws/lib/WebSocketServer.js +336 -0
  224. data/node_modules/ws/package.json +122 -0
  225. data/package.json +26 -0
  226. data/samples/sample.html +13 -0
  227. data/script/rasterize.js +18 -0
  228. metadata +325 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cbe0c577216c202a6388d356ae775c3b06a22ffc
4
+ data.tar.gz: 4c3acc6ebe10647d51d855a0ee98e6839a70a56a
5
+ SHA512:
6
+ metadata.gz: 2c57a26661258692c908b85c9326219dfae6ded581ef615402fe6941ffd92407c129a8ce70f95208b90117f4ab421d9f28d00c630b498c36c2415b4d18c1ef35
7
+ data.tar.gz: 1778ce9be587b01449bc576953f9460857cd887e0514e4473dcd7905c2ec82aedccfe921688d0a0f2af4bb2feaf7fa37d21fa64fcef40229c7aceba4e82cafe0
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ dragonfly.log
@@ -0,0 +1,12 @@
1
+ language: ruby
2
+ script: 'bundle exec rake'
3
+ sudo: false
4
+ rvm:
5
+ - 2.2.5
6
+
7
+ notifications:
8
+ email:
9
+ recipients:
10
+ - tomas.celizna@gmail.com
11
+ on_failure: change
12
+ on_success: never
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in dragonfly_chrome_headless.gemspec
4
+ gemspec
@@ -0,0 +1,53 @@
1
+ # Dragonfly Chrome Headless
2
+
3
+ [![Build Status](https://travis-ci.org/tomasc/dragonfly_chrome_headless.svg)](https://travis-ci.org/tomasc/dragonfly_chrome_headless) [![Gem Version](https://badge.fury.io/rb/dragonfly_chrome_headless.svg)](http://badge.fury.io/rb/dragonfly_chrome_headless) [![Coverage Status](https://img.shields.io/coveralls/tomasc/dragonfly_chrome_headless.svg)](https://coveralls.io/r/tomasc/dragonfly_chrome_headless)
4
+
5
+ Use headless Chrome to generate PDFs out of HTML.
6
+
7
+ ## Requirements
8
+
9
+ * nodejs
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'dragonfly_chrome_headless'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install dragonfly_chrome_headless
26
+
27
+ ## Usage
28
+
29
+ Add the plugin to Dragonfly:
30
+
31
+ ```ruby
32
+ Dragonfly.app.configure do
33
+ plugin :chrome_headless
34
+ end
35
+ ```
36
+
37
+ Eventually include host & port, if you are running Chrome in something like a Docker container (recommended, see for example [justinribeiro/chrome-headless](https://hub.docker.com/r/justinribeiro/chrome-headless/)):
38
+
39
+ ```ruby
40
+ Dragonfly.app.configure do
41
+ plugin :chrome_headless, host: 'chrome_headless', port: '9222'
42
+ end
43
+ ```
44
+
45
+ ## Development
46
+
47
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
48
+
49
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
50
+
51
+ ## Contributing
52
+
53
+ Bug reports and pull requests are welcome on GitHub at https://github.com/tomasc/dragonfly_chrome_headless.
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "dragonfly_chrome_headless"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'dragonfly_chrome_headless/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "dragonfly_chrome_headless"
8
+ spec.version = DragonflyChromeHeadless::VERSION
9
+ spec.authors = ["Tomáš Celizna"]
10
+ spec.email = ["mail@tomascelizna.com"]
11
+
12
+ spec.summary = %q{Uses Headless Chrome to generate PDF from HTML}
13
+ spec.homepage = "https://github.com/tomasc/dragonfly_chrome_headless"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
16
+ f.match(%r{^(test|spec|features)/})
17
+ end
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_dependency 'dragonfly', '~> 1.0'
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.14"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "minitest", "~> 5.0"
27
+ end
@@ -0,0 +1,9 @@
1
+ require "dragonfly"
2
+ require "dragonfly_chrome_headless/plugin"
3
+ require "dragonfly_chrome_headless/version"
4
+
5
+ module DragonflyChromeHeadless
6
+ def self.root
7
+ File.expand_path '../..', __FILE__
8
+ end
9
+ end
@@ -0,0 +1,17 @@
1
+ require 'dragonfly_chrome_headless/processors/rasterize'
2
+
3
+ module DragonflyChromeHeadless
4
+ class Plugin
5
+ def call(app, options={})
6
+ app.env[:node_command] = options[:node_command] || 'node'
7
+ app.env[:host] = options[:host]
8
+ app.env[:port] = options[:port]
9
+
10
+ app.add_processor :rasterize, DragonflyChromeHeadless::Processors::Rasterize.new
11
+ end
12
+ end
13
+ end
14
+
15
+ Dragonfly::App.register_plugin(:chrome_headless) do
16
+ DragonflyChromeHeadless::Plugin.new
17
+ end
@@ -0,0 +1,33 @@
1
+ require 'json'
2
+
3
+ module DragonflyChromeHeadless
4
+ module Processors
5
+ class Rasterize
6
+ class UnsupportedFormat < RuntimeError; end
7
+
8
+ def call(content, format=:pdf, options={})
9
+ raise UnsupportedFormat unless %w(pdf).include?(format.to_s)
10
+
11
+ node_command = content.env.fetch(:node_command, 'node')
12
+ options[:host] ||= content.env[:host]
13
+ options[:port] ||= content.env[:port]
14
+
15
+ options = options.reject{ |_, v| v.nil? }
16
+
17
+ content.shell_update(ext: format) do |old_path, new_path|
18
+ "#{node_command} #{rasterize_script} #{old_path} #{new_path} '#{options.to_json}'"
19
+ end
20
+ end
21
+
22
+ def update_url(attrs, format, args='')
23
+ attrs.ext = format.to_s
24
+ end
25
+
26
+ private
27
+
28
+ def rasterize_script
29
+ File.join(DragonflyChromeHeadless.root, "script", "rasterize.js")
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,3 @@
1
+ module DragonflyChromeHeadless
2
+ VERSION = "0.2.0"
3
+ end
@@ -0,0 +1 @@
1
+ ../chrome-remote-interface/bin/client.js
@@ -0,0 +1 @@
1
+ ../mkdirp/bin/cmd.js
@@ -0,0 +1 @@
1
+ ../rimraf/bin.js
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation. All rights reserved.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE
@@ -0,0 +1,16 @@
1
+ # Installation
2
+ > `npm install --save @types/core-js`
3
+
4
+ # Summary
5
+ This package contains type definitions for core-js (https://github.com/zloirock/core-js/).
6
+
7
+ # Details
8
+ Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/core-js
9
+
10
+ Additional Details
11
+ * Last updated: Mon, 26 Jun 2017 21:08:38 GMT
12
+ * Dependencies: none
13
+ * Global values: $for, Dict, core, delay, log
14
+
15
+ # Credits
16
+ These definitions were written by Ron Buckton <http://github.com/rbuckton>, Michel Felipe <http://github.com/mfdeveloper>.
@@ -0,0 +1,2452 @@
1
+ // Type definitions for core-js 0.9
2
+ // Project: https://github.com/zloirock/core-js/
3
+ // Definitions by: Ron Buckton <http://github.com/rbuckton>, Michel Felipe <http://github.com/mfdeveloper>
4
+ // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
+ // TypeScript Version: 2.1
6
+
7
+ /* *****************************************************************************
8
+ Copyright (c) Microsoft Corporation. All rights reserved.
9
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
10
+ this file except in compliance with the License. You may obtain a copy of the
11
+ License at http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
15
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
16
+ MERCHANTABLITY OR NON-INFRINGEMENT.
17
+
18
+ See the Apache Version 2.0 License for specific language governing permissions
19
+ and limitations under the License.
20
+ ***************************************************************************** */
21
+
22
+ // #############################################################################################
23
+ // ECMAScript 6: Symbols
24
+ // Modules: es6.symbol
25
+ // #############################################################################################
26
+
27
+ interface SymbolConstructor {
28
+ /**
29
+ * Non-standard. Use simple mode for core-js symbols. See https://github.com/zloirock/core-js/#caveats-when-using-symbol-polyfill
30
+ */
31
+ useSimple(): void;
32
+
33
+ /**
34
+ * Non-standard. Use setter mode for core-js symbols. See https://github.com/zloirock/core-js/#caveats-when-using-symbol-polyfill
35
+ */
36
+ userSetter(): void;
37
+ }
38
+
39
+ interface $for<T> extends IterableIterator<T> {
40
+ of(callbackfn: (value: T, key: any) => void, thisArg?: any): void;
41
+ array(): T[];
42
+ array<U>(callbackfn: (value: T, key: any) => U, thisArg?: any): U[];
43
+ filter(callbackfn: (value: T, key: any) => boolean, thisArg?: any): $for<T>;
44
+ map<U>(callbackfn: (value: T, key: any) => U, thisArg?: any): $for<U>;
45
+ }
46
+
47
+ declare function $for<T>(iterable: Iterable<T>): $for<T>;
48
+
49
+ // #############################################################################################
50
+ // ECMAScript 7
51
+ // Modules: es7.array.includes, es7.string.at, es7.string.pad-start, es7.string.pad-end,
52
+ // es7.object.to-array, es7.object.get-own-property-descriptors, es7.regexp.escape,
53
+ // es7.map.to-json, es7.set.to-json, es7.reflect.define-metadata, es7.reflect.delete-metadata
54
+ // es7.reflect.get-metadata, es7.reflect.get-metadata-keys, es7.reflect.get-own-metadata,
55
+ // es7.reflect.get-own-metadata-keys, es7.reflect.has-metadata, es7.reflect.has-own-metadata
56
+ // es7.reflect.metadata
57
+ // #############################################################################################
58
+
59
+ interface String {
60
+ at(index: number): string;
61
+ }
62
+
63
+ interface Object {
64
+ getOwnPropertyDescriptors(object: any): PropertyDescriptorMap;
65
+ }
66
+
67
+ interface RegExpConstructor {
68
+ escape(str: string): string;
69
+ }
70
+
71
+ interface Map<K, V> {
72
+ toJSON(): any;
73
+ }
74
+
75
+ interface Set<T> {
76
+ toJSON(): any;
77
+ }
78
+
79
+ // #############################################################################################
80
+ // Mozilla JavaScript: Array generics
81
+ // Modules: js.array.statics
82
+ // #############################################################################################
83
+
84
+ interface ArrayConstructor {
85
+ /**
86
+ * Appends new elements to an array, and returns the new length of the array.
87
+ * @param items New elements of the Array.
88
+ */
89
+ push<T>(array: ArrayLike<T>, ...items: T[]): number;
90
+ /**
91
+ * Removes the last element from an array and returns it.
92
+ */
93
+ pop<T>(array: ArrayLike<T>): T;
94
+ /**
95
+ * Combines two or more arrays.
96
+ * @param items Additional items to add to the end of array1.
97
+ */
98
+ concat<T>(array: ArrayLike<T>, ...items: Array<T[]| T>): T[];
99
+ /**
100
+ * Adds all the elements of an array separated by the specified separator string.
101
+ * @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.
102
+ */
103
+ join<T>(array: ArrayLike<T>, separator?: string): string;
104
+ /**
105
+ * Reverses the elements in an Array.
106
+ */
107
+ reverse<T>(array: ArrayLike<T>): T[];
108
+ /**
109
+ * Removes the first element from an array and returns it.
110
+ */
111
+ shift<T>(array: ArrayLike<T>): T;
112
+ /**
113
+ * Returns a section of an array.
114
+ * @param start The beginning of the specified portion of the array.
115
+ * @param end The end of the specified portion of the array.
116
+ */
117
+ slice<T>(array: ArrayLike<T>, start?: number, end?: number): T[];
118
+
119
+ /**
120
+ * Sorts an array.
121
+ * @param compareFn The name of the function used to determine the order of the elements. If omitted, the elements are sorted in ascending, ASCII character order.
122
+ */
123
+ sort<T>(array: ArrayLike<T>, compareFn?: (a: T, b: T) => number): T[];
124
+
125
+ /**
126
+ * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
127
+ * @param start The zero-based location in the array from which to start removing elements.
128
+ * @param deleteCount The number of elements to remove.
129
+ * @param items Elements to insert into the array in place of the deleted elements.
130
+ */
131
+ splice<T>(array: ArrayLike<T>, start: number, deleteCount?: number, ...items: T[]): T[];
132
+
133
+ /**
134
+ * Inserts new elements at the start of an array.
135
+ * @param items Elements to insert at the start of the Array.
136
+ */
137
+ unshift<T>(array: ArrayLike<T>, ...items: T[]): number;
138
+
139
+ /**
140
+ * Returns the index of the first occurrence of a value in an array.
141
+ * @param searchElement The value to locate in the array.
142
+ * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.
143
+ */
144
+ indexOf<T>(array: ArrayLike<T>, searchElement: T, fromIndex?: number): number;
145
+
146
+ /**
147
+ * Returns the index of the last occurrence of a specified value in an array.
148
+ * @param searchElement The value to locate in the array.
149
+ * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.
150
+ */
151
+ lastIndexOf<T>(array: ArrayLike<T>, earchElement: T, fromIndex?: number): number;
152
+
153
+ /**
154
+ * Determines whether all the members of an array satisfy the specified test.
155
+ * @param callbackfn A function that accepts up to three arguments.
156
+ * The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array.
157
+ * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
158
+ */
159
+ every<T>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): boolean;
160
+
161
+ /**
162
+ * Determines whether the specified callback function returns true for any element of an array.
163
+ * @param callbackfn A function that accepts up to three arguments.
164
+ * The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array.
165
+ * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
166
+ */
167
+ some<T>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): boolean;
168
+
169
+ /**
170
+ * Performs the specified action for each element in an array.
171
+ * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
172
+ * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
173
+ */
174
+ forEach<T>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void;
175
+
176
+ /**
177
+ * Calls a defined callback function on each element of an array, and returns an array that contains the results.
178
+ * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
179
+ * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
180
+ */
181
+ map<T, U>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];
182
+
183
+ /**
184
+ * Returns the elements of an array that meet the condition specified in a callback function.
185
+ * @param callbackfn A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array.
186
+ * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
187
+ */
188
+ filter<T>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): T[];
189
+
190
+ /**
191
+ * Calls the specified callback function for all the elements in an array.
192
+ * The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
193
+ * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
194
+ * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation.
195
+ * The first call to the callbackfn function provides this value as an argument instead of an array value.
196
+ */
197
+ reduce<T, U>(array: ArrayLike<T>, callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
198
+
199
+ /**
200
+ * Calls the specified callback function for all the elements in an array.
201
+ * The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
202
+ * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
203
+ * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation.
204
+ * The first call to the callbackfn function provides this value as an argument instead of an array value.
205
+ */
206
+ reduce<T>(array: ArrayLike<T>, callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;
207
+
208
+ /**
209
+ * Calls the specified callback function for all the elements in an array, in descending order.
210
+ * The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
211
+ * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
212
+ * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation.
213
+ * The first call to the callbackfn function provides this value as an argument instead of an array value.
214
+ */
215
+ reduceRight<T, U>(array: ArrayLike<T>, callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
216
+
217
+ /**
218
+ * Calls the specified callback function for all the elements in an array, in descending order.
219
+ * The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
220
+ * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
221
+ * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation.
222
+ * The first call to the callbackfn function provides this value as an argument instead of an array value.
223
+ */
224
+ reduceRight<T>(array: ArrayLike<T>, callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;
225
+
226
+ /**
227
+ * Returns an array of key, value pairs for every entry in the array
228
+ */
229
+ entries<T>(array: ArrayLike<T>): IterableIterator<[number, T]>;
230
+
231
+ /**
232
+ * Returns an list of keys in the array
233
+ */
234
+ keys<T>(array: ArrayLike<T>): IterableIterator<number>;
235
+
236
+ /**
237
+ * Returns an list of values in the array
238
+ */
239
+ values<T>(array: ArrayLike<T>): IterableIterator<T>;
240
+
241
+ /**
242
+ * Returns the value of the first element in the array where predicate is true, and undefined
243
+ * otherwise.
244
+ * @param predicate find calls predicate once for each element of the array, in ascending
245
+ * order, until it finds one where predicate returns true. If such an element is found, find
246
+ * immediately returns that element value. Otherwise, find returns undefined.
247
+ * @param thisArg If provided, it will be used as the this value for each invocation of
248
+ * predicate. If it is not provided, undefined is used instead.
249
+ */
250
+ find<T>(array: ArrayLike<T>, predicate: (value: T, index: number, obj: T[]) => boolean, thisArg?: any): T;
251
+
252
+ /**
253
+ * Returns the index of the first element in the array where predicate is true, and undefined
254
+ * otherwise.
255
+ * @param predicate find calls predicate once for each element of the array, in ascending
256
+ * order, until it finds one where predicate returns true. If such an element is found, find
257
+ * immediately returns that element value. Otherwise, find returns undefined.
258
+ * @param thisArg If provided, it will be used as the this value for each invocation of
259
+ * predicate. If it is not provided, undefined is used instead.
260
+ */
261
+ findIndex<T>(array: ArrayLike<T>, predicate: (value: T) => boolean, thisArg?: any): number;
262
+
263
+ /**
264
+ * Returns the this object after filling the section identified by start and end with value
265
+ * @param value value to fill array section with
266
+ * @param start index to start filling the array at. If start is negative, it is treated as
267
+ * length+start where length is the length of the array.
268
+ * @param end index to stop filling the array at. If end is negative, it is treated as
269
+ * length+end.
270
+ */
271
+ fill<T>(array: ArrayLike<T>, value: T, start?: number, end?: number): T[];
272
+
273
+ /**
274
+ * Returns the this object after copying a section of the array identified by start and end
275
+ * to the same array starting at position target
276
+ * @param target If target is negative, it is treated as length+target where length is the
277
+ * length of the array.
278
+ * @param start If start is negative, it is treated as length+start. If end is negative, it
279
+ * is treated as length+end.
280
+ * @param end If not specified, length of the this object is used as its default value.
281
+ */
282
+ copyWithin<T>(array: ArrayLike<T>, target: number, start: number, end?: number): T[];
283
+
284
+ includes<T>(array: ArrayLike<T>, value: T, fromIndex?: number): boolean;
285
+ turn<T, U>(array: ArrayLike<T>, callbackfn: (memo: U, value: T, index: number, array: T[]) => void, memo?: U): U;
286
+ turn<T>(array: ArrayLike<T>, callbackfn: (memo: T[], value: T, index: number, array: T[]) => void, memo?: T[]): T[];
287
+ }
288
+
289
+ // #############################################################################################
290
+ // Object - https://github.com/zloirock/core-js/#object
291
+ // Modules: core.object
292
+ // #############################################################################################
293
+
294
+ interface ObjectConstructor {
295
+ /**
296
+ * Non-standard.
297
+ */
298
+ isObject(value: any): boolean;
299
+
300
+ /**
301
+ * Non-standard.
302
+ */
303
+ classof(value: any): string;
304
+
305
+ /**
306
+ * Non-standard.
307
+ */
308
+ define<T>(target: T, mixin: any): T;
309
+
310
+ /**
311
+ * Non-standard.
312
+ */
313
+ make<T>(proto: T, mixin?: any): T;
314
+ }
315
+
316
+ // #############################################################################################
317
+ // Console - https://github.com/zloirock/core-js/#console
318
+ // Modules: core.log
319
+ // #############################################################################################
320
+
321
+ interface Log extends Console {
322
+ (message?: any, ...optionalParams: any[]): void;
323
+ enable(): void;
324
+ disable(): void;
325
+ }
326
+
327
+ /**
328
+ * Non-standard.
329
+ */
330
+ declare var log: Log;
331
+
332
+ // #############################################################################################
333
+ // Dict - https://github.com/zloirock/core-js/#dict
334
+ // Modules: core.dict
335
+ // #############################################################################################
336
+
337
+ interface Dict<T> {
338
+ [key: string]: T;
339
+ [key: number]: T;
340
+ // [key: symbol]: T;
341
+ }
342
+
343
+ interface DictConstructor {
344
+ prototype: Dict<any>;
345
+
346
+ new <T>(value?: Dict<T>): Dict<T>;
347
+ new (value?: any): Dict<any>;
348
+ <T>(value?: Dict<T>): Dict<T>;
349
+ (value?: any): Dict<any>;
350
+
351
+ isDict(value: any): boolean;
352
+ values<T>(object: Dict<T>): IterableIterator<T>;
353
+ keys<T>(object: Dict<T>): IterableIterator<PropertyKey>;
354
+ entries<T>(object: Dict<T>): IterableIterator<[PropertyKey, T]>;
355
+ has<T>(object: Dict<T>, key: PropertyKey): boolean;
356
+ get<T>(object: Dict<T>, key: PropertyKey): T;
357
+ set<T>(object: Dict<T>, key: PropertyKey, value: T): Dict<T>;
358
+ forEach<T>(object: Dict<T>, callbackfn: (value: T, key: PropertyKey, dict: Dict<T>) => void, thisArg?: any): void;
359
+ map<T, U>(object: Dict<T>, callbackfn: (value: T, key: PropertyKey, dict: Dict<T>) => U, thisArg?: any): Dict<U>;
360
+ mapPairs<T, U>(object: Dict<T>, callbackfn: (value: T, key: PropertyKey, dict: Dict<T>) => [PropertyKey, U], thisArg?: any): Dict<U>;
361
+ filter<T>(object: Dict<T>, callbackfn: (value: T, key: PropertyKey, dict: Dict<T>) => boolean, thisArg?: any): Dict<T>;
362
+ some<T>(object: Dict<T>, callbackfn: (value: T, key: PropertyKey, dict: Dict<T>) => boolean, thisArg?: any): boolean;
363
+ every<T>(object: Dict<T>, callbackfn: (value: T, key: PropertyKey, dict: Dict<T>) => boolean, thisArg?: any): boolean;
364
+ find<T>(object: Dict<T>, callbackfn: (value: T, key: PropertyKey, dict: Dict<T>) => boolean, thisArg?: any): T;
365
+ findKey<T>(object: Dict<T>, callbackfn: (value: T, key: PropertyKey, dict: Dict<T>) => boolean, thisArg?: any): PropertyKey;
366
+ keyOf<T>(object: Dict<T>, value: T): PropertyKey;
367
+ includes<T>(object: Dict<T>, value: T): boolean;
368
+ reduce<T, U>(object: Dict<T>, callbackfn: (previousValue: U, value: T, key: PropertyKey, dict: Dict<T>) => U, initialValue: U): U;
369
+ reduce<T>(object: Dict<T>, callbackfn: (previousValue: T, value: T, key: PropertyKey, dict: Dict<T>) => T, initialValue?: T): T;
370
+ turn<T, U>(object: Dict<T>, callbackfn: (memo: Dict<U>, value: T, key: PropertyKey, dict: Dict<T>) => void, memo: Dict<U>): Dict<U>;
371
+ turn<T>(object: Dict<T>, callbackfn: (memo: Dict<T>, value: T, key: PropertyKey, dict: Dict<T>) => void, memo?: Dict<T>): Dict<T>;
372
+ }
373
+
374
+ /**
375
+ * Non-standard.
376
+ */
377
+ declare var Dict: DictConstructor;
378
+
379
+ // #############################################################################################
380
+ // Partial application - https://github.com/zloirock/core-js/#partial-application
381
+ // Modules: core.function.part
382
+ // #############################################################################################
383
+
384
+ interface Function {
385
+ /**
386
+ * Non-standard.
387
+ */
388
+ part(...args: any[]): any;
389
+ }
390
+
391
+ // #############################################################################################
392
+ // Date formatting - https://github.com/zloirock/core-js/#date-formatting
393
+ // Modules: core.date
394
+ // #############################################################################################
395
+
396
+ interface Date {
397
+ /**
398
+ * Non-standard.
399
+ */
400
+ format(template: string, locale?: string): string;
401
+
402
+ /**
403
+ * Non-standard.
404
+ */
405
+ formatUTC(template: string, locale?: string): string;
406
+ }
407
+
408
+ // #############################################################################################
409
+ // Array - https://github.com/zloirock/core-js/#array
410
+ // Modules: core.array.turn
411
+ // #############################################################################################
412
+
413
+ interface Array<T> {
414
+ /**
415
+ * Non-standard.
416
+ */
417
+ turn<U>(callbackfn: (memo: U, value: T, index: number, array: T[]) => void, memo?: U): U;
418
+
419
+ /**
420
+ * Non-standard.
421
+ */
422
+ turn(callbackfn: (memo: T[], value: T, index: number, array: T[]) => void, memo?: T[]): T[];
423
+ }
424
+
425
+ // #############################################################################################
426
+ // Number - https://github.com/zloirock/core-js/#number
427
+ // Modules: core.number.iterator
428
+ // #############################################################################################
429
+
430
+ interface Number {
431
+ /**
432
+ * Non-standard.
433
+ */
434
+ [Symbol.iterator](): IterableIterator<number>;
435
+ }
436
+
437
+ // #############################################################################################
438
+ // Escaping characters - https://github.com/zloirock/core-js/#escaping-characters
439
+ // Modules: core.string.escape-html
440
+ // #############################################################################################
441
+
442
+ interface String {
443
+ /**
444
+ * Non-standard.
445
+ */
446
+ escapeHTML(): string;
447
+
448
+ /**
449
+ * Non-standard.
450
+ */
451
+ unescapeHTML(): string;
452
+ }
453
+
454
+ // #############################################################################################
455
+ // delay - https://github.com/zloirock/core-js/#delay
456
+ // Modules: core.delay
457
+ // #############################################################################################
458
+
459
+ declare function delay(msec: number): Promise<void>;
460
+
461
+ declare namespace core {
462
+ const version: string;
463
+
464
+ namespace Reflect {
465
+ function apply(target: Function, thisArgument: any, argumentsList: ArrayLike<any>): any;
466
+ function construct(target: Function, argumentsList: ArrayLike<any>): any;
467
+ function defineProperty(target: any, propertyKey: PropertyKey, attributes: PropertyDescriptor): boolean;
468
+ function deleteProperty(target: any, propertyKey: PropertyKey): boolean;
469
+ function enumerate(target: any): IterableIterator<any>;
470
+ function get(target: any, propertyKey: PropertyKey, receiver?: any): any;
471
+ function getOwnPropertyDescriptor(target: any, propertyKey: PropertyKey): PropertyDescriptor;
472
+ function getPrototypeOf(target: any): any;
473
+ function has(target: any, propertyKey: string | symbol): boolean;
474
+ function isExtensible(target: any): boolean;
475
+ function ownKeys(target: any): PropertyKey[];
476
+ function preventExtensions(target: any): boolean;
477
+ function set(target: any, propertyKey: PropertyKey, value: any, receiver?: any): boolean;
478
+ function setPrototypeOf(target: any, proto: any): boolean;
479
+ /**
480
+ * Define a unique metadata entry on the target.
481
+ * @param metadataKey A key used to store and retrieve metadata.
482
+ * @param metadataValue A value that contains attached metadata.
483
+ * @param target The target object on which to define metadata.
484
+ * @example
485
+ *
486
+ * ### Example
487
+ *
488
+ * ```typescript
489
+ * class Example {
490
+ * }
491
+ *
492
+ * // constructor
493
+ * Reflect.defineMetadata("custom:annotation", options, Example);
494
+ *
495
+ * // decorator factory as metadata-producing annotation.
496
+ * function MyAnnotation(options): ClassDecorator {
497
+ * return target => Reflect.defineMetadata("custom:annotation", options, target);
498
+ * }
499
+ * ```
500
+ */
501
+ function defineMetadata(metadataKey: any, metadataValue: any, target: Object, targetKey?: string | symbol): void;
502
+ /**
503
+ * Deletes the metadata entry from the target object with the provided key.
504
+ * @param metadataKey A key used to store and retrieve metadata.
505
+ * @param target The target object on which the metadata is defined.
506
+ * @returns `true` if the metadata entry was found and deleted; otherwise, false.
507
+ * @example
508
+ *
509
+ * ### Example
510
+ *
511
+ * ```typescript
512
+ * class Example {
513
+ * }
514
+ *
515
+ * // constructor
516
+ * result = Reflect.deleteMetadata("custom:annotation", Example);
517
+ * ```
518
+ */
519
+ function deleteMetadata(metadataKey: any, target: Object, targetKey?: string | symbol): boolean;
520
+ /**
521
+ * Gets the metadata value for the provided metadata key on the target object or its prototype chain.
522
+ * @param metadataKey A key used to store and retrieve metadata.
523
+ * @param target The target object on which the metadata is defined.
524
+ * @returns The metadata value for the metadata key if found; otherwise, `undefined`.
525
+ * @example
526
+ *
527
+ * ### Example
528
+ *
529
+ * ```typescript
530
+ * class Example {
531
+ * }
532
+ *
533
+ * // constructor
534
+ * result = Reflect.getMetadata("custom:annotation", Example);
535
+ * ```
536
+ */
537
+ function getMetadata(metadataKey: any, target: Object, targetKey?: string | symbol): any;
538
+ /**
539
+ * Gets the metadata keys defined on the target object or its prototype chain.
540
+ * @param target The target object on which the metadata is defined.
541
+ * @returns An array of unique metadata keys.
542
+ * @example
543
+ *
544
+ * ### Example
545
+ *
546
+ * ```typescript
547
+ * class Example {
548
+ * }
549
+ *
550
+ * // constructor
551
+ * result = Reflect.getMetadataKeys(Example);
552
+ * ```
553
+ */
554
+ function getMetadataKeys(target: Object, targetKey?: string | symbol): any[];
555
+ /**
556
+ * Gets the metadata value for the provided metadata key on the target object.
557
+ * @param metadataKey A key used to store and retrieve metadata.
558
+ * @param target The target object on which the metadata is defined.
559
+ * @returns The metadata value for the metadata key if found; otherwise, `undefined`.
560
+ * @example
561
+ *
562
+ * ### Example
563
+ *
564
+ * ```typescript
565
+ * class Example {
566
+ * }
567
+ *
568
+ * // constructor
569
+ * result = Reflect.getOwnMetadata("custom:annotation", Example);
570
+ * ```
571
+ */
572
+ function getOwnMetadata(metadataKey: any, target: Object, targetKey?: string | symbol): any;
573
+
574
+ /**
575
+ * Gets the unique metadata keys defined on the target object.
576
+ * @param target The target object on which the metadata is defined.
577
+ * @returns An array of unique metadata keys.
578
+ * @example
579
+ *
580
+ * ### Example
581
+ *
582
+ * ```typescript
583
+ * class Example {
584
+ * }
585
+ *
586
+ * // constructor
587
+ * result = Reflect.getOwnMetadataKeys(Example);
588
+ * ```
589
+ */
590
+ function getOwnMetadataKeys(target: Object, targetKey?: string | symbol): any[];
591
+ /**
592
+ * Gets a value indicating whether the target object or its prototype chain has the provided metadata key defined.
593
+ * @param metadataKey A key used to store and retrieve metadata.
594
+ * @param target The target object on which the metadata is defined.
595
+ * @returns `true` if the metadata key was defined on the target object or its prototype chain; otherwise, `false`.
596
+ * @example
597
+ *
598
+ * ### Example
599
+ *
600
+ * ```typescript
601
+ * class Example {
602
+ * }
603
+ *
604
+ * // constructor
605
+ * result = Reflect.hasMetadata("custom:annotation", Example);
606
+ * ```
607
+ */
608
+ function hasMetadata(metadataKey: any, target: Object, targetKey?: string | symbol): boolean;
609
+ /**
610
+ * Gets a value indicating whether the target object has the provided metadata key defined.
611
+ * @param metadataKey A key used to store and retrieve metadata.
612
+ * @param target The target object on which the metadata is defined.
613
+ * @returns `true` if the metadata key was defined on the target object; otherwise, `false`.
614
+ * @example
615
+ *
616
+ * ### Example
617
+ *
618
+ * ```typescript
619
+ *
620
+ * class Example {
621
+ * }
622
+ *
623
+ * // constructor
624
+ * result = Reflect.hasOwnMetadata("custom:annotation", Example);
625
+ * ```
626
+ */
627
+ function hasOwnMetadata(metadataKey: any, target: Object, targetKey?: string | symbol): boolean;
628
+ /**
629
+ * A default metadata decorator factory that can be used on a class, class member, or parameter.
630
+ * @param metadataKey The key for the metadata entry.
631
+ * @param metadataValue The value for the metadata entry.
632
+ * @returns A decorator function.
633
+ * @remarks
634
+ * If `metadataKey` is already defined for the target and target key, the
635
+ * metadataValue for that key will be overwritten.
636
+ * @example
637
+ *
638
+ * ### Example
639
+ *
640
+ * ```typescript
641
+ * // constructor
642
+ * @Reflect.metadata(key, value)
643
+ * class Example {
644
+ * }
645
+ *
646
+ * // property (on constructor, TypeScript only)
647
+ * class Example {
648
+ * @Reflect.metadata(key, value)
649
+ * static staticProperty;
650
+ * }
651
+ *
652
+ * // property (on prototype, TypeScript only)
653
+ * class Example {
654
+ * @Reflect.metadata(key, value)
655
+ * property;
656
+ * }
657
+ *
658
+ * // method (on constructor)
659
+ * class Example {
660
+ * @Reflect.metadata(key, value)
661
+ * static staticMethod() { }
662
+ * }
663
+ *
664
+ * // method (on prototype)
665
+ * class Example {
666
+ * @Reflect.metadata(key, value)
667
+ * method() { }
668
+ * }
669
+ * ```
670
+ */
671
+ function metadata(metadataKey: any, metadataValue: any): {
672
+ (target: Function): void;
673
+ (target: Object, targetKey: string | symbol): void;
674
+ };
675
+ }
676
+
677
+ const Object: {
678
+ getPrototypeOf(o: any): any;
679
+ getOwnPropertyNames(o: any): string[];
680
+ create(o: any, properties?: PropertyDescriptorMap): any;
681
+ defineProperties(o: any, properties: PropertyDescriptorMap): any;
682
+ seal<T>(o: T): T;
683
+ freeze<T>(o: T): T;
684
+ preventExtensions<T>(o: T): T;
685
+ isSealed(o: any): boolean;
686
+ isFrozen(o: any): boolean;
687
+ isExtensible(o: any): boolean;
688
+ keys(o: any): string[];
689
+ assign(target: any, ...sources: any[]): any;
690
+ is(value1: any, value2: any): boolean;
691
+ setPrototypeOf(o: any, proto: any): any;
692
+ getOwnPropertySymbols(o: any): symbol[];
693
+ getOwnPropertyDescriptor(o: any, propertyKey: PropertyKey): PropertyDescriptor;
694
+ defineProperty(o: any, propertyKey: PropertyKey, attributes: PropertyDescriptor): any;
695
+ values(object: any): any[];
696
+ entries(object: any): any[];
697
+ getOwnPropertyDescriptors(object: any): PropertyDescriptorMap;
698
+ isObject(value: any): boolean;
699
+ classof(value: any): string;
700
+ define<T>(target: T, mixin: any): T;
701
+ make<T>(proto: T, mixin?: any): T;
702
+ };
703
+
704
+ const Function: {
705
+ bind(target: Function, thisArg: any, ...argArray: any[]): any;
706
+ part(target: Function, ...args: any[]): any;
707
+ };
708
+
709
+ const Array: {
710
+ from<T, U>(arrayLike: ArrayLike<T> | Iterable<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
711
+ from<T>(arrayLike: ArrayLike<T> | Iterable<T>): T[];
712
+ of<T>(...items: T[]): T[];
713
+ push<T>(array: ArrayLike<T>, ...items: T[]): number;
714
+ pop<T>(array: ArrayLike<T>): T;
715
+ concat<T>(array: ArrayLike<T>, ...items: Array<T[] | T>): T[];
716
+ join<T>(array: ArrayLike<T>, separator?: string): string;
717
+ reverse<T>(array: ArrayLike<T>): T[];
718
+ shift<T>(array: ArrayLike<T>): T;
719
+ slice<T>(array: ArrayLike<T>, start?: number, end?: number): T[];
720
+ sort<T>(array: ArrayLike<T>, compareFn?: (a: T, b: T) => number): T[];
721
+ splice<T>(array: ArrayLike<T>, start: number, deleteCount?: number, ...items: T[]): T[];
722
+ unshift<T>(array: ArrayLike<T>, ...items: T[]): number;
723
+ indexOf<T>(array: ArrayLike<T>, searchElement: T, fromIndex?: number): number;
724
+ lastIndexOf<T>(array: ArrayLike<T>, earchElement: T, fromIndex?: number): number;
725
+ every<T>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): boolean;
726
+ some<T>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): boolean;
727
+ forEach<T>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void;
728
+ map<T, U>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];
729
+ filter<T>(array: ArrayLike<T>, callbackfn: (value: T, index: number, array: T[]) => boolean, thisArg?: any): T[];
730
+ reduce<T>(array: ArrayLike<T>, callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;
731
+ reduce<T, U>(array: ArrayLike<T>, callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
732
+ reduceRight<T>(array: ArrayLike<T>, callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue?: T): T;
733
+ reduceRight<T, U>(array: ArrayLike<T>, callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
734
+ entries<T>(array: ArrayLike<T>): IterableIterator<[number, T]>;
735
+ keys<T>(array: ArrayLike<T>): IterableIterator<number>;
736
+ values<T>(array: ArrayLike<T>): IterableIterator<T>;
737
+ find<T>(array: ArrayLike<T>, predicate: (value: T, index: number, obj: T[]) => boolean, thisArg?: any): T;
738
+ findIndex<T>(array: ArrayLike<T>, predicate: (value: T) => boolean, thisArg?: any): number;
739
+ fill<T>(array: ArrayLike<T>, value: T, start?: number, end?: number): T[];
740
+ copyWithin<T>(array: ArrayLike<T>, target: number, start: number, end?: number): T[];
741
+ includes<T>(array: ArrayLike<T>, value: T, fromIndex?: number): boolean;
742
+ turn<T>(array: ArrayLike<T>, callbackfn: (memo: T[], value: T, index: number, array: T[]) => void, memo?: T[]): T[];
743
+ turn<T, U>(array: ArrayLike<T>, callbackfn: (memo: U, value: T, index: number, array: T[]) => void, memo?: U): U;
744
+ };
745
+
746
+ const String: {
747
+ codePointAt(text: string, pos: number): number;
748
+ includes(text: string, searchString: string, position?: number): boolean;
749
+ endsWith(text: string, searchString: string, endPosition?: number): boolean;
750
+ repeat(text: string, count: number): string;
751
+ fromCodePoint(...codePoints: number[]): string;
752
+ raw(template: TemplateStringsArray, ...substitutions: any[]): string;
753
+ startsWith(text: string, searchString: string, position?: number): boolean;
754
+ at(text: string, index: number): string;
755
+ lpad(text: string, length: number, fillStr?: string): string;
756
+ rpad(text: string, length: number, fillStr?: string): string;
757
+ escapeHTML(text: string): string;
758
+ unescapeHTML(text: string): string;
759
+ };
760
+
761
+ const Date: {
762
+ now(): number;
763
+ toISOString(date: Date): string;
764
+ format(date: Date, template: string, locale?: string): string;
765
+ formatUTC(date: Date, template: string, locale?: string): string;
766
+ };
767
+
768
+ const Number: {
769
+ EPSILON: number;
770
+ isFinite(number: number): boolean;
771
+ isInteger(number: number): boolean;
772
+ isNaN(number: number): boolean;
773
+ isSafeInteger(number: number): boolean;
774
+ MAX_SAFE_INTEGER: number;
775
+ MIN_SAFE_INTEGER: number;
776
+ parseFloat(string: string): number;
777
+ parseInt(string: string, radix?: number): number;
778
+ clz32(x: number): number;
779
+ imul(x: number, y: number): number;
780
+ sign(x: number): number;
781
+ log10(x: number): number;
782
+ log2(x: number): number;
783
+ log1p(x: number): number;
784
+ expm1(x: number): number;
785
+ cosh(x: number): number;
786
+ sinh(x: number): number;
787
+ tanh(x: number): number;
788
+ acosh(x: number): number;
789
+ asinh(x: number): number;
790
+ atanh(x: number): number;
791
+ hypot(...values: number[]): number;
792
+ trunc(x: number): number;
793
+ fround(x: number): number;
794
+ cbrt(x: number): number;
795
+ random(lim?: number): number;
796
+ };
797
+
798
+ const Math: {
799
+ clz32(x: number): number;
800
+ imul(x: number, y: number): number;
801
+ sign(x: number): number;
802
+ log10(x: number): number;
803
+ log2(x: number): number;
804
+ log1p(x: number): number;
805
+ expm1(x: number): number;
806
+ cosh(x: number): number;
807
+ sinh(x: number): number;
808
+ tanh(x: number): number;
809
+ acosh(x: number): number;
810
+ asinh(x: number): number;
811
+ atanh(x: number): number;
812
+ hypot(...values: number[]): number;
813
+ trunc(x: number): number;
814
+ fround(x: number): number;
815
+ cbrt(x: number): number;
816
+ };
817
+
818
+ const RegExp: {
819
+ escape(str: string): string;
820
+ };
821
+
822
+ const Map: MapConstructor;
823
+ const Set: SetConstructor;
824
+ const WeakMap: WeakMapConstructor;
825
+ const WeakSet: WeakSetConstructor;
826
+ const Promise: PromiseConstructor;
827
+ const Symbol: SymbolConstructor;
828
+ const Dict: DictConstructor;
829
+ const global: any;
830
+ const log: Log;
831
+ const _: boolean;
832
+
833
+ function setTimeout(handler: any, timeout?: any, ...args: any[]): number;
834
+
835
+ function setInterval(handler: any, timeout?: any, ...args: any[]): number;
836
+
837
+ function setImmediate(expression: any, ...args: any[]): number;
838
+
839
+ function clearImmediate(handle: number): void;
840
+
841
+ function $for<T>(iterable: Iterable<T>): $for<T>;
842
+
843
+ function isIterable(value: any): boolean;
844
+
845
+ function getIterator<T>(iterable: Iterable<T>): Iterator<T>;
846
+
847
+ interface Locale {
848
+ weekdays: string;
849
+ months: string;
850
+ }
851
+
852
+ function addLocale(lang: string, locale: Locale): typeof core;
853
+
854
+ function locale(lang?: string): string;
855
+
856
+ function delay(msec: number): Promise<void>;
857
+ }
858
+
859
+ declare module "core-js" {
860
+ export = core;
861
+ }
862
+ declare module "core-js/shim" {
863
+ export = core;
864
+ }
865
+ declare module "core-js/core" {
866
+ export = core;
867
+ }
868
+ declare module "core-js/core/$for" {
869
+ import $for = core.$for;
870
+ export = $for;
871
+ }
872
+ declare module "core-js/core/_" {
873
+ const _: typeof core._;
874
+ export = _;
875
+ }
876
+ declare module "core-js/core/array" {
877
+ const Array: typeof core.Array;
878
+ export = Array;
879
+ }
880
+ declare module "core-js/core/date" {
881
+ const Date: typeof core.Date;
882
+ export = Date;
883
+ }
884
+ declare module "core-js/core/delay" {
885
+ const delay: typeof core.delay;
886
+ export = delay;
887
+ }
888
+ declare module "core-js/core/dict" {
889
+ const Dict: typeof core.Dict;
890
+ export = Dict;
891
+ }
892
+ declare module "core-js/core/function" {
893
+ const Function: typeof core.Function;
894
+ export = Function;
895
+ }
896
+ declare module "core-js/core/global" {
897
+ const global: typeof core.global;
898
+ export = global;
899
+ }
900
+ declare module "core-js/core/log" {
901
+ const log: typeof core.log;
902
+ export = log;
903
+ }
904
+ declare module "core-js/core/number" {
905
+ const Number: typeof core.Number;
906
+ export = Number;
907
+ }
908
+ declare module "core-js/core/object" {
909
+ const Object: typeof core.Object;
910
+ export = Object;
911
+ }
912
+ declare module "core-js/core/string" {
913
+ const String: typeof core.String;
914
+ export = String;
915
+ }
916
+ declare module "core-js/fn/$for" {
917
+ import $for = core.$for;
918
+ export = $for;
919
+ }
920
+ declare module "core-js/fn/_" {
921
+ const _: typeof core._;
922
+ export = _;
923
+ }
924
+ declare module "core-js/fn/clear-immediate" {
925
+ const clearImmediate: typeof core.clearImmediate;
926
+ export = clearImmediate;
927
+ }
928
+ declare module "core-js/fn/delay" {
929
+ const delay: typeof core.delay;
930
+ export = delay;
931
+ }
932
+ declare module "core-js/fn/dict" {
933
+ const Dict: typeof core.Dict;
934
+ export = Dict;
935
+ }
936
+ declare module "core-js/fn/get-iterator" {
937
+ const getIterator: typeof core.getIterator;
938
+ export = getIterator;
939
+ }
940
+ declare module "core-js/fn/global" {
941
+ const global: typeof core.global;
942
+ export = global;
943
+ }
944
+ declare module "core-js/fn/is-iterable" {
945
+ const isIterable: typeof core.isIterable;
946
+ export = isIterable;
947
+ }
948
+ declare module "core-js/fn/log" {
949
+ const log: typeof core.log;
950
+ export = log;
951
+ }
952
+ declare module "core-js/fn/map" {
953
+ const Map: typeof core.Map;
954
+ export = Map;
955
+ }
956
+ declare module "core-js/fn/promise" {
957
+ const Promise: typeof core.Promise;
958
+ export = Promise;
959
+ }
960
+ declare module "core-js/fn/set" {
961
+ const Set: typeof core.Set;
962
+ export = Set;
963
+ }
964
+ declare module "core-js/fn/set-immediate" {
965
+ const setImmediate: typeof core.setImmediate;
966
+ export = setImmediate;
967
+ }
968
+ declare module "core-js/fn/set-interval" {
969
+ const setInterval: typeof core.setInterval;
970
+ export = setInterval;
971
+ }
972
+ declare module "core-js/fn/set-timeout" {
973
+ const setTimeout: typeof core.setTimeout;
974
+ export = setTimeout;
975
+ }
976
+ declare module "core-js/fn/weak-map" {
977
+ const WeakMap: typeof core.WeakMap;
978
+ export = WeakMap;
979
+ }
980
+ declare module "core-js/fn/weak-set" {
981
+ const WeakSet: typeof core.WeakSet;
982
+ export = WeakSet;
983
+ }
984
+ declare module "core-js/fn/array" {
985
+ const Array: typeof core.Array;
986
+ export = Array;
987
+ }
988
+ declare module "core-js/fn/array/concat" {
989
+ const concat: typeof core.Array.concat;
990
+ export = concat;
991
+ }
992
+ declare module "core-js/fn/array/copy-within" {
993
+ const copyWithin: typeof core.Array.copyWithin;
994
+ export = copyWithin;
995
+ }
996
+ declare module "core-js/fn/array/entries" {
997
+ const entries: typeof core.Array.entries;
998
+ export = entries;
999
+ }
1000
+ declare module "core-js/fn/array/every" {
1001
+ const every: typeof core.Array.every;
1002
+ export = every;
1003
+ }
1004
+ declare module "core-js/fn/array/fill" {
1005
+ const fill: typeof core.Array.fill;
1006
+ export = fill;
1007
+ }
1008
+ declare module "core-js/fn/array/filter" {
1009
+ const filter: typeof core.Array.filter;
1010
+ export = filter;
1011
+ }
1012
+ declare module "core-js/fn/array/find" {
1013
+ const find: typeof core.Array.find;
1014
+ export = find;
1015
+ }
1016
+ declare module "core-js/fn/array/find-index" {
1017
+ const findIndex: typeof core.Array.findIndex;
1018
+ export = findIndex;
1019
+ }
1020
+ declare module "core-js/fn/array/for-each" {
1021
+ const forEach: typeof core.Array.forEach;
1022
+ export = forEach;
1023
+ }
1024
+ declare module "core-js/fn/array/from" {
1025
+ const from: typeof core.Array.from;
1026
+ export = from;
1027
+ }
1028
+ declare module "core-js/fn/array/includes" {
1029
+ const includes: typeof core.Array.includes;
1030
+ export = includes;
1031
+ }
1032
+ declare module "core-js/fn/array/index-of" {
1033
+ const indexOf: typeof core.Array.indexOf;
1034
+ export = indexOf;
1035
+ }
1036
+ declare module "core-js/fn/array/join" {
1037
+ const join: typeof core.Array.join;
1038
+ export = join;
1039
+ }
1040
+ declare module "core-js/fn/array/keys" {
1041
+ const keys: typeof core.Array.keys;
1042
+ export = keys;
1043
+ }
1044
+ declare module "core-js/fn/array/last-index-of" {
1045
+ const lastIndexOf: typeof core.Array.lastIndexOf;
1046
+ export = lastIndexOf;
1047
+ }
1048
+ declare module "core-js/fn/array/map" {
1049
+ const map: typeof core.Array.map;
1050
+ export = map;
1051
+ }
1052
+ declare module "core-js/fn/array/of" {
1053
+ const of: typeof core.Array.of;
1054
+ export = of;
1055
+ }
1056
+ declare module "core-js/fn/array/pop" {
1057
+ const pop: typeof core.Array.pop;
1058
+ export = pop;
1059
+ }
1060
+ declare module "core-js/fn/array/push" {
1061
+ const push: typeof core.Array.push;
1062
+ export = push;
1063
+ }
1064
+ declare module "core-js/fn/array/reduce" {
1065
+ const reduce: typeof core.Array.reduce;
1066
+ export = reduce;
1067
+ }
1068
+ declare module "core-js/fn/array/reduce-right" {
1069
+ const reduceRight: typeof core.Array.reduceRight;
1070
+ export = reduceRight;
1071
+ }
1072
+ declare module "core-js/fn/array/reverse" {
1073
+ const reverse: typeof core.Array.reverse;
1074
+ export = reverse;
1075
+ }
1076
+ declare module "core-js/fn/array/shift" {
1077
+ const shift: typeof core.Array.shift;
1078
+ export = shift;
1079
+ }
1080
+ declare module "core-js/fn/array/slice" {
1081
+ const slice: typeof core.Array.slice;
1082
+ export = slice;
1083
+ }
1084
+ declare module "core-js/fn/array/some" {
1085
+ const some: typeof core.Array.some;
1086
+ export = some;
1087
+ }
1088
+ declare module "core-js/fn/array/sort" {
1089
+ const sort: typeof core.Array.sort;
1090
+ export = sort;
1091
+ }
1092
+ declare module "core-js/fn/array/splice" {
1093
+ const splice: typeof core.Array.splice;
1094
+ export = splice;
1095
+ }
1096
+ declare module "core-js/fn/array/turn" {
1097
+ const turn: typeof core.Array.turn;
1098
+ export = turn;
1099
+ }
1100
+ declare module "core-js/fn/array/unshift" {
1101
+ const unshift: typeof core.Array.unshift;
1102
+ export = unshift;
1103
+ }
1104
+ declare module "core-js/fn/array/values" {
1105
+ const values: typeof core.Array.values;
1106
+ export = values;
1107
+ }
1108
+ declare module "core-js/fn/date" {
1109
+ const Date: typeof core.Date;
1110
+ export = Date;
1111
+ }
1112
+ declare module "core-js/fn/date/add-locale" {
1113
+ const addLocale: typeof core.addLocale;
1114
+ export = addLocale;
1115
+ }
1116
+ declare module "core-js/fn/date/format" {
1117
+ const format: typeof core.Date.format;
1118
+ export = format;
1119
+ }
1120
+ declare module "core-js/fn/date/formatUTC" {
1121
+ const formatUTC: typeof core.Date.formatUTC;
1122
+ export = formatUTC;
1123
+ }
1124
+ declare module "core-js/fn/function" {
1125
+ const Function: typeof core.Function;
1126
+ export = Function;
1127
+ }
1128
+ declare module "core-js/fn/function/has-instance" {
1129
+ function hasInstance(value: any): boolean;
1130
+ export = hasInstance;
1131
+ }
1132
+ declare module "core-js/fn/function/name" {
1133
+ }
1134
+ declare module "core-js/fn/function/part" {
1135
+ const part: typeof core.Function.part;
1136
+ export = part;
1137
+ }
1138
+ declare module "core-js/fn/math" {
1139
+ const Math: typeof core.Math;
1140
+ export = Math;
1141
+ }
1142
+ declare module "core-js/fn/math/acosh" {
1143
+ const acosh: typeof core.Math.acosh;
1144
+ export = acosh;
1145
+ }
1146
+ declare module "core-js/fn/math/asinh" {
1147
+ const asinh: typeof core.Math.asinh;
1148
+ export = asinh;
1149
+ }
1150
+ declare module "core-js/fn/math/atanh" {
1151
+ const atanh: typeof core.Math.atanh;
1152
+ export = atanh;
1153
+ }
1154
+ declare module "core-js/fn/math/cbrt" {
1155
+ const cbrt: typeof core.Math.cbrt;
1156
+ export = cbrt;
1157
+ }
1158
+ declare module "core-js/fn/math/clz32" {
1159
+ const clz32: typeof core.Math.clz32;
1160
+ export = clz32;
1161
+ }
1162
+ declare module "core-js/fn/math/cosh" {
1163
+ const cosh: typeof core.Math.cosh;
1164
+ export = cosh;
1165
+ }
1166
+ declare module "core-js/fn/math/expm1" {
1167
+ const expm1: typeof core.Math.expm1;
1168
+ export = expm1;
1169
+ }
1170
+ declare module "core-js/fn/math/fround" {
1171
+ const fround: typeof core.Math.fround;
1172
+ export = fround;
1173
+ }
1174
+ declare module "core-js/fn/math/hypot" {
1175
+ const hypot: typeof core.Math.hypot;
1176
+ export = hypot;
1177
+ }
1178
+ declare module "core-js/fn/math/imul" {
1179
+ const imul: typeof core.Math.imul;
1180
+ export = imul;
1181
+ }
1182
+ declare module "core-js/fn/math/log10" {
1183
+ const log10: typeof core.Math.log10;
1184
+ export = log10;
1185
+ }
1186
+ declare module "core-js/fn/math/log1p" {
1187
+ const log1p: typeof core.Math.log1p;
1188
+ export = log1p;
1189
+ }
1190
+ declare module "core-js/fn/math/log2" {
1191
+ const log2: typeof core.Math.log2;
1192
+ export = log2;
1193
+ }
1194
+ declare module "core-js/fn/math/sign" {
1195
+ const sign: typeof core.Math.sign;
1196
+ export = sign;
1197
+ }
1198
+ declare module "core-js/fn/math/sinh" {
1199
+ const sinh: typeof core.Math.sinh;
1200
+ export = sinh;
1201
+ }
1202
+ declare module "core-js/fn/math/tanh" {
1203
+ const tanh: typeof core.Math.tanh;
1204
+ export = tanh;
1205
+ }
1206
+ declare module "core-js/fn/math/trunc" {
1207
+ const trunc: typeof core.Math.trunc;
1208
+ export = trunc;
1209
+ }
1210
+ declare module "core-js/fn/number" {
1211
+ const Number: typeof core.Number;
1212
+ export = Number;
1213
+ }
1214
+ declare module "core-js/fn/number/epsilon" {
1215
+ const EPSILON: typeof core.Number.EPSILON;
1216
+ export = EPSILON;
1217
+ }
1218
+ declare module "core-js/fn/number/is-finite" {
1219
+ const isFinite: typeof core.Number.isFinite;
1220
+ export = isFinite;
1221
+ }
1222
+ declare module "core-js/fn/number/is-integer" {
1223
+ const isInteger: typeof core.Number.isInteger;
1224
+ export = isInteger;
1225
+ }
1226
+ declare module "core-js/fn/number/is-nan" {
1227
+ const isNaN: typeof core.Number.isNaN;
1228
+ export = isNaN;
1229
+ }
1230
+ declare module "core-js/fn/number/is-safe-integer" {
1231
+ const isSafeInteger: typeof core.Number.isSafeInteger;
1232
+ export = isSafeInteger;
1233
+ }
1234
+ declare module "core-js/fn/number/max-safe-integer" {
1235
+ const MAX_SAFE_INTEGER: typeof core.Number.MAX_SAFE_INTEGER;
1236
+ export = MAX_SAFE_INTEGER;
1237
+ }
1238
+ declare module "core-js/fn/number/min-safe-integer" {
1239
+ const MIN_SAFE_INTEGER: typeof core.Number.MIN_SAFE_INTEGER;
1240
+ export = MIN_SAFE_INTEGER;
1241
+ }
1242
+ declare module "core-js/fn/number/parse-float" {
1243
+ const parseFloat: typeof core.Number.parseFloat;
1244
+ export = parseFloat;
1245
+ }
1246
+ declare module "core-js/fn/number/parse-int" {
1247
+ const parseInt: typeof core.Number.parseInt;
1248
+ export = parseInt;
1249
+ }
1250
+ declare module "core-js/fn/number/random" {
1251
+ const random: typeof core.Number.random;
1252
+ export = random;
1253
+ }
1254
+ declare module "core-js/fn/object" {
1255
+ const Object: typeof core.Object;
1256
+ export = Object;
1257
+ }
1258
+ declare module "core-js/fn/object/assign" {
1259
+ const assign: typeof core.Object.assign;
1260
+ export = assign;
1261
+ }
1262
+ declare module "core-js/fn/object/classof" {
1263
+ const classof: typeof core.Object.classof;
1264
+ export = classof;
1265
+ }
1266
+ declare module "core-js/fn/object/create" {
1267
+ const create: typeof core.Object.create;
1268
+ export = create;
1269
+ }
1270
+ declare module "core-js/fn/object/define" {
1271
+ const define: typeof core.Object.define;
1272
+ export = define;
1273
+ }
1274
+ declare module "core-js/fn/object/define-properties" {
1275
+ const defineProperties: typeof core.Object.defineProperties;
1276
+ export = defineProperties;
1277
+ }
1278
+ declare module "core-js/fn/object/define-property" {
1279
+ const defineProperty: typeof core.Object.defineProperty;
1280
+ export = defineProperty;
1281
+ }
1282
+ declare module "core-js/fn/object/entries" {
1283
+ const entries: typeof core.Object.entries;
1284
+ export = entries;
1285
+ }
1286
+ declare module "core-js/fn/object/freeze" {
1287
+ const freeze: typeof core.Object.freeze;
1288
+ export = freeze;
1289
+ }
1290
+ declare module "core-js/fn/object/get-own-property-descriptor" {
1291
+ const getOwnPropertyDescriptor: typeof core.Object.getOwnPropertyDescriptor;
1292
+ export = getOwnPropertyDescriptor;
1293
+ }
1294
+ declare module "core-js/fn/object/get-own-property-descriptors" {
1295
+ const getOwnPropertyDescriptors: typeof core.Object.getOwnPropertyDescriptors;
1296
+ export = getOwnPropertyDescriptors;
1297
+ }
1298
+ declare module "core-js/fn/object/get-own-property-names" {
1299
+ const getOwnPropertyNames: typeof core.Object.getOwnPropertyNames;
1300
+ export = getOwnPropertyNames;
1301
+ }
1302
+ declare module "core-js/fn/object/get-own-property-symbols" {
1303
+ const getOwnPropertySymbols: typeof core.Object.getOwnPropertySymbols;
1304
+ export = getOwnPropertySymbols;
1305
+ }
1306
+ declare module "core-js/fn/object/get-prototype-of" {
1307
+ const getPrototypeOf: typeof core.Object.getPrototypeOf;
1308
+ export = getPrototypeOf;
1309
+ }
1310
+ declare module "core-js/fn/object/is" {
1311
+ const is: typeof core.Object.is;
1312
+ export = is;
1313
+ }
1314
+ declare module "core-js/fn/object/is-extensible" {
1315
+ const isExtensible: typeof core.Object.isExtensible;
1316
+ export = isExtensible;
1317
+ }
1318
+ declare module "core-js/fn/object/is-frozen" {
1319
+ const isFrozen: typeof core.Object.isFrozen;
1320
+ export = isFrozen;
1321
+ }
1322
+ declare module "core-js/fn/object/is-object" {
1323
+ const isObject: typeof core.Object.isObject;
1324
+ export = isObject;
1325
+ }
1326
+ declare module "core-js/fn/object/is-sealed" {
1327
+ const isSealed: typeof core.Object.isSealed;
1328
+ export = isSealed;
1329
+ }
1330
+ declare module "core-js/fn/object/keys" {
1331
+ const keys: typeof core.Object.keys;
1332
+ export = keys;
1333
+ }
1334
+ declare module "core-js/fn/object/make" {
1335
+ const make: typeof core.Object.make;
1336
+ export = make;
1337
+ }
1338
+ declare module "core-js/fn/object/prevent-extensions" {
1339
+ const preventExtensions: typeof core.Object.preventExtensions;
1340
+ export = preventExtensions;
1341
+ }
1342
+ declare module "core-js/fn/object/seal" {
1343
+ const seal: typeof core.Object.seal;
1344
+ export = seal;
1345
+ }
1346
+ declare module "core-js/fn/object/set-prototype-of" {
1347
+ const setPrototypeOf: typeof core.Object.setPrototypeOf;
1348
+ export = setPrototypeOf;
1349
+ }
1350
+ declare module "core-js/fn/object/values" {
1351
+ const values: typeof core.Object.values;
1352
+ export = values;
1353
+ }
1354
+ declare module "core-js/fn/reflect" {
1355
+ const Reflect: typeof core.Reflect;
1356
+ export = Reflect;
1357
+ }
1358
+ declare module "core-js/fn/reflect/apply" {
1359
+ const apply: typeof core.Reflect.apply;
1360
+ export = apply;
1361
+ }
1362
+ declare module "core-js/fn/reflect/construct" {
1363
+ const construct: typeof core.Reflect.construct;
1364
+ export = construct;
1365
+ }
1366
+ declare module "core-js/fn/reflect/define-property" {
1367
+ const defineProperty: typeof core.Reflect.defineProperty;
1368
+ export = defineProperty;
1369
+ }
1370
+ declare module "core-js/fn/reflect/delete-property" {
1371
+ const deleteProperty: typeof core.Reflect.deleteProperty;
1372
+ export = deleteProperty;
1373
+ }
1374
+ declare module "core-js/fn/reflect/enumerate" {
1375
+ const enumerate: typeof core.Reflect.enumerate;
1376
+ export = enumerate;
1377
+ }
1378
+ declare module "core-js/fn/reflect/get" {
1379
+ const get: typeof core.Reflect.get;
1380
+ export = get;
1381
+ }
1382
+ declare module "core-js/fn/reflect/get-own-property-descriptor" {
1383
+ const getOwnPropertyDescriptor: typeof core.Reflect.getOwnPropertyDescriptor;
1384
+ export = getOwnPropertyDescriptor;
1385
+ }
1386
+ declare module "core-js/fn/reflect/get-prototype-of" {
1387
+ const getPrototypeOf: typeof core.Reflect.getPrototypeOf;
1388
+ export = getPrototypeOf;
1389
+ }
1390
+ declare module "core-js/fn/reflect/has" {
1391
+ const has: typeof core.Reflect.has;
1392
+ export = has;
1393
+ }
1394
+ declare module "core-js/fn/reflect/is-extensible" {
1395
+ const isExtensible: typeof core.Reflect.isExtensible;
1396
+ export = isExtensible;
1397
+ }
1398
+ declare module "core-js/fn/reflect/own-keys" {
1399
+ const ownKeys: typeof core.Reflect.ownKeys;
1400
+ export = ownKeys;
1401
+ }
1402
+ declare module "core-js/fn/reflect/prevent-extensions" {
1403
+ const preventExtensions: typeof core.Reflect.preventExtensions;
1404
+ export = preventExtensions;
1405
+ }
1406
+ declare module "core-js/fn/reflect/set" {
1407
+ const set: typeof core.Reflect.set;
1408
+ export = set;
1409
+ }
1410
+ declare module "core-js/fn/reflect/set-prototype-of" {
1411
+ const setPrototypeOf: typeof core.Reflect.setPrototypeOf;
1412
+ export = setPrototypeOf;
1413
+ }
1414
+ declare module "core-js/fn/regexp" {
1415
+ const RegExp: typeof core.RegExp;
1416
+ export = RegExp;
1417
+ }
1418
+ declare module "core-js/fn/regexp/escape" {
1419
+ const escape: typeof core.RegExp.escape;
1420
+ export = escape;
1421
+ }
1422
+ declare module "core-js/fn/string" {
1423
+ const String: typeof core.String;
1424
+ export = String;
1425
+ }
1426
+ declare module "core-js/fn/string/at" {
1427
+ const at: typeof core.String.at;
1428
+ export = at;
1429
+ }
1430
+ declare module "core-js/fn/string/code-point-at" {
1431
+ const codePointAt: typeof core.String.codePointAt;
1432
+ export = codePointAt;
1433
+ }
1434
+ declare module "core-js/fn/string/ends-with" {
1435
+ const endsWith: typeof core.String.endsWith;
1436
+ export = endsWith;
1437
+ }
1438
+ declare module "core-js/fn/string/escape-html" {
1439
+ const escapeHTML: typeof core.String.escapeHTML;
1440
+ export = escapeHTML;
1441
+ }
1442
+ declare module "core-js/fn/string/from-code-point" {
1443
+ const fromCodePoint: typeof core.String.fromCodePoint;
1444
+ export = fromCodePoint;
1445
+ }
1446
+ declare module "core-js/fn/string/includes" {
1447
+ const includes: typeof core.String.includes;
1448
+ export = includes;
1449
+ }
1450
+ declare module "core-js/fn/string/lpad" {
1451
+ const lpad: typeof core.String.lpad;
1452
+ export = lpad;
1453
+ }
1454
+ declare module "core-js/fn/string/raw" {
1455
+ const raw: typeof core.String.raw;
1456
+ export = raw;
1457
+ }
1458
+ declare module "core-js/fn/string/repeat" {
1459
+ const repeat: typeof core.String.repeat;
1460
+ export = repeat;
1461
+ }
1462
+ declare module "core-js/fn/string/rpad" {
1463
+ const rpad: typeof core.String.rpad;
1464
+ export = rpad;
1465
+ }
1466
+ declare module "core-js/fn/string/starts-with" {
1467
+ const startsWith: typeof core.String.startsWith;
1468
+ export = startsWith;
1469
+ }
1470
+ declare module "core-js/fn/string/unescape-html" {
1471
+ const unescapeHTML: typeof core.String.unescapeHTML;
1472
+ export = unescapeHTML;
1473
+ }
1474
+ declare module "core-js/fn/symbol" {
1475
+ const Symbol: typeof core.Symbol;
1476
+ export = Symbol;
1477
+ }
1478
+ declare module "core-js/fn/symbol/for" {
1479
+ const _for: typeof core.Symbol.for;
1480
+ export = _for;
1481
+ }
1482
+ declare module "core-js/fn/symbol/has-instance" {
1483
+ const hasInstance: typeof core.Symbol.hasInstance;
1484
+ export = hasInstance;
1485
+ }
1486
+ declare module "core-js/fn/symbol/is-concat-spreadable" {
1487
+ const isConcatSpreadable: typeof core.Symbol.isConcatSpreadable;
1488
+ export = isConcatSpreadable;
1489
+ }
1490
+ declare module "core-js/fn/symbol/iterator" {
1491
+ const iterator: typeof core.Symbol.iterator;
1492
+ export = iterator;
1493
+ }
1494
+ declare module "core-js/fn/symbol/key-for" {
1495
+ const keyFor: typeof core.Symbol.keyFor;
1496
+ export = keyFor;
1497
+ }
1498
+ declare module "core-js/fn/symbol/match" {
1499
+ const match: typeof core.Symbol.match;
1500
+ export = match;
1501
+ }
1502
+ declare module "core-js/fn/symbol/replace" {
1503
+ const replace: typeof core.Symbol.replace;
1504
+ export = replace;
1505
+ }
1506
+ declare module "core-js/fn/symbol/search" {
1507
+ const search: typeof core.Symbol.search;
1508
+ export = search;
1509
+ }
1510
+ declare module "core-js/fn/symbol/species" {
1511
+ const species: typeof core.Symbol.species;
1512
+ export = species;
1513
+ }
1514
+ declare module "core-js/fn/symbol/split" {
1515
+ const split: typeof core.Symbol.split;
1516
+ export = split;
1517
+ }
1518
+ declare module "core-js/fn/symbol/to-primitive" {
1519
+ const toPrimitive: typeof core.Symbol.toPrimitive;
1520
+ export = toPrimitive;
1521
+ }
1522
+ declare module "core-js/fn/symbol/to-string-tag" {
1523
+ const toStringTag: typeof core.Symbol.toStringTag;
1524
+ export = toStringTag;
1525
+ }
1526
+ declare module "core-js/fn/symbol/unscopables" {
1527
+ const unscopables: typeof core.Symbol.unscopables;
1528
+ export = unscopables;
1529
+ }
1530
+ declare module "core-js/es5" {
1531
+ export = core;
1532
+ }
1533
+ declare module "core-js/es6" {
1534
+ export = core;
1535
+ }
1536
+ declare module "core-js/es6/array" {
1537
+ const Array: typeof core.Array;
1538
+ export = Array;
1539
+ }
1540
+ declare module "core-js/es6/function" {
1541
+ const Function: typeof core.Function;
1542
+ export = Function;
1543
+ }
1544
+ declare module "core-js/es6/map" {
1545
+ const Map: typeof core.Map;
1546
+ export = Map;
1547
+ }
1548
+ declare module "core-js/es6/math" {
1549
+ const Math: typeof core.Math;
1550
+ export = Math;
1551
+ }
1552
+ declare module "core-js/es6/number" {
1553
+ const Number: typeof core.Number;
1554
+ export = Number;
1555
+ }
1556
+ declare module "core-js/es6/object" {
1557
+ const Object: typeof core.Object;
1558
+ export = Object;
1559
+ }
1560
+ declare module "core-js/es6/promise" {
1561
+ const Promise: typeof core.Promise;
1562
+ export = Promise;
1563
+ }
1564
+ declare module "core-js/es6/reflect" {
1565
+ const Reflect: typeof core.Reflect;
1566
+ export = Reflect;
1567
+ }
1568
+ declare module "core-js/es6/regexp" {
1569
+ const RegExp: typeof core.RegExp;
1570
+ export = RegExp;
1571
+ }
1572
+ declare module "core-js/es6/set" {
1573
+ const Set: typeof core.Set;
1574
+ export = Set;
1575
+ }
1576
+ declare module "core-js/es6/string" {
1577
+ const String: typeof core.String;
1578
+ export = String;
1579
+ }
1580
+ declare module "core-js/es6/symbol" {
1581
+ const Symbol: typeof core.Symbol;
1582
+ export = Symbol;
1583
+ }
1584
+ declare module "core-js/es6/weak-map" {
1585
+ const WeakMap: typeof core.WeakMap;
1586
+ export = WeakMap;
1587
+ }
1588
+ declare module "core-js/es6/weak-set" {
1589
+ const WeakSet: typeof core.WeakSet;
1590
+ export = WeakSet;
1591
+ }
1592
+ declare module "core-js/es7" {
1593
+ export = core;
1594
+ }
1595
+ declare module "core-js/es7/array" {
1596
+ const Array: typeof core.Array;
1597
+ export = Array;
1598
+ }
1599
+ declare module "core-js/es7/map" {
1600
+ const Map: typeof core.Map;
1601
+ export = Map;
1602
+ }
1603
+ declare module "core-js/es7/object" {
1604
+ const Object: typeof core.Object;
1605
+ export = Object;
1606
+ }
1607
+ declare module "core-js/es7/regexp" {
1608
+ const RegExp: typeof core.RegExp;
1609
+ export = RegExp;
1610
+ }
1611
+ declare module "core-js/es7/set" {
1612
+ const Set: typeof core.Set;
1613
+ export = Set;
1614
+ }
1615
+ declare module "core-js/es7/string" {
1616
+ const String: typeof core.String;
1617
+ export = String;
1618
+ }
1619
+ declare module "core-js/js" {
1620
+ export = core;
1621
+ }
1622
+ declare module "core-js/js/array" {
1623
+ const Array: typeof core.Array;
1624
+ export = Array;
1625
+ }
1626
+ declare module "core-js/web" {
1627
+ export = core;
1628
+ }
1629
+ declare module "core-js/web/dom" {
1630
+ export = core;
1631
+ }
1632
+ declare module "core-js/web/immediate" {
1633
+ export = core;
1634
+ }
1635
+ declare module "core-js/web/timers" {
1636
+ export = core;
1637
+ }
1638
+ declare module "core-js/library" {
1639
+ export = core;
1640
+ }
1641
+ declare module "core-js/library/shim" {
1642
+ export = core;
1643
+ }
1644
+ declare module "core-js/library/core" {
1645
+ export = core;
1646
+ }
1647
+ declare module "core-js/library/core/$for" {
1648
+ import $for = core.$for;
1649
+ export = $for;
1650
+ }
1651
+ declare module "core-js/library/core/_" {
1652
+ const _: typeof core._;
1653
+ export = _;
1654
+ }
1655
+ declare module "core-js/library/core/array" {
1656
+ const Array: typeof core.Array;
1657
+ export = Array;
1658
+ }
1659
+ declare module "core-js/library/core/date" {
1660
+ const Date: typeof core.Date;
1661
+ export = Date;
1662
+ }
1663
+ declare module "core-js/library/core/delay" {
1664
+ const delay: typeof core.delay;
1665
+ export = delay;
1666
+ }
1667
+ declare module "core-js/library/core/dict" {
1668
+ const Dict: typeof core.Dict;
1669
+ export = Dict;
1670
+ }
1671
+ declare module "core-js/library/core/function" {
1672
+ const Function: typeof core.Function;
1673
+ export = Function;
1674
+ }
1675
+ declare module "core-js/library/core/global" {
1676
+ const global: typeof core.global;
1677
+ export = global;
1678
+ }
1679
+ declare module "core-js/library/core/log" {
1680
+ const log: typeof core.log;
1681
+ export = log;
1682
+ }
1683
+ declare module "core-js/library/core/number" {
1684
+ const Number: typeof core.Number;
1685
+ export = Number;
1686
+ }
1687
+ declare module "core-js/library/core/object" {
1688
+ const Object: typeof core.Object;
1689
+ export = Object;
1690
+ }
1691
+ declare module "core-js/library/core/string" {
1692
+ const String: typeof core.String;
1693
+ export = String;
1694
+ }
1695
+ declare module "core-js/library/fn/$for" {
1696
+ import $for = core.$for;
1697
+ export = $for;
1698
+ }
1699
+ declare module "core-js/library/fn/_" {
1700
+ const _: typeof core._;
1701
+ export = _;
1702
+ }
1703
+ declare module "core-js/library/fn/clear-immediate" {
1704
+ const clearImmediate: typeof core.clearImmediate;
1705
+ export = clearImmediate;
1706
+ }
1707
+ declare module "core-js/library/fn/delay" {
1708
+ const delay: typeof core.delay;
1709
+ export = delay;
1710
+ }
1711
+ declare module "core-js/library/fn/dict" {
1712
+ const Dict: typeof core.Dict;
1713
+ export = Dict;
1714
+ }
1715
+ declare module "core-js/library/fn/get-iterator" {
1716
+ const getIterator: typeof core.getIterator;
1717
+ export = getIterator;
1718
+ }
1719
+ declare module "core-js/library/fn/global" {
1720
+ const global: typeof core.global;
1721
+ export = global;
1722
+ }
1723
+ declare module "core-js/library/fn/is-iterable" {
1724
+ const isIterable: typeof core.isIterable;
1725
+ export = isIterable;
1726
+ }
1727
+ declare module "core-js/library/fn/log" {
1728
+ const log: typeof core.log;
1729
+ export = log;
1730
+ }
1731
+ declare module "core-js/library/fn/map" {
1732
+ const Map: typeof core.Map;
1733
+ export = Map;
1734
+ }
1735
+ declare module "core-js/library/fn/promise" {
1736
+ const Promise: typeof core.Promise;
1737
+ export = Promise;
1738
+ }
1739
+ declare module "core-js/library/fn/set" {
1740
+ const Set: typeof core.Set;
1741
+ export = Set;
1742
+ }
1743
+ declare module "core-js/library/fn/set-immediate" {
1744
+ const setImmediate: typeof core.setImmediate;
1745
+ export = setImmediate;
1746
+ }
1747
+ declare module "core-js/library/fn/set-interval" {
1748
+ const setInterval: typeof core.setInterval;
1749
+ export = setInterval;
1750
+ }
1751
+ declare module "core-js/library/fn/set-timeout" {
1752
+ const setTimeout: typeof core.setTimeout;
1753
+ export = setTimeout;
1754
+ }
1755
+ declare module "core-js/library/fn/weak-map" {
1756
+ const WeakMap: typeof core.WeakMap;
1757
+ export = WeakMap;
1758
+ }
1759
+ declare module "core-js/library/fn/weak-set" {
1760
+ const WeakSet: typeof core.WeakSet;
1761
+ export = WeakSet;
1762
+ }
1763
+ declare module "core-js/library/fn/array" {
1764
+ const Array: typeof core.Array;
1765
+ export = Array;
1766
+ }
1767
+ declare module "core-js/library/fn/array/concat" {
1768
+ const concat: typeof core.Array.concat;
1769
+ export = concat;
1770
+ }
1771
+ declare module "core-js/library/fn/array/copy-within" {
1772
+ const copyWithin: typeof core.Array.copyWithin;
1773
+ export = copyWithin;
1774
+ }
1775
+ declare module "core-js/library/fn/array/entries" {
1776
+ const entries: typeof core.Array.entries;
1777
+ export = entries;
1778
+ }
1779
+ declare module "core-js/library/fn/array/every" {
1780
+ const every: typeof core.Array.every;
1781
+ export = every;
1782
+ }
1783
+ declare module "core-js/library/fn/array/fill" {
1784
+ const fill: typeof core.Array.fill;
1785
+ export = fill;
1786
+ }
1787
+ declare module "core-js/library/fn/array/filter" {
1788
+ const filter: typeof core.Array.filter;
1789
+ export = filter;
1790
+ }
1791
+ declare module "core-js/library/fn/array/find" {
1792
+ const find: typeof core.Array.find;
1793
+ export = find;
1794
+ }
1795
+ declare module "core-js/library/fn/array/find-index" {
1796
+ const findIndex: typeof core.Array.findIndex;
1797
+ export = findIndex;
1798
+ }
1799
+ declare module "core-js/library/fn/array/for-each" {
1800
+ const forEach: typeof core.Array.forEach;
1801
+ export = forEach;
1802
+ }
1803
+ declare module "core-js/library/fn/array/from" {
1804
+ const from: typeof core.Array.from;
1805
+ export = from;
1806
+ }
1807
+ declare module "core-js/library/fn/array/includes" {
1808
+ const includes: typeof core.Array.includes;
1809
+ export = includes;
1810
+ }
1811
+ declare module "core-js/library/fn/array/index-of" {
1812
+ const indexOf: typeof core.Array.indexOf;
1813
+ export = indexOf;
1814
+ }
1815
+ declare module "core-js/library/fn/array/join" {
1816
+ const join: typeof core.Array.join;
1817
+ export = join;
1818
+ }
1819
+ declare module "core-js/library/fn/array/keys" {
1820
+ const keys: typeof core.Array.keys;
1821
+ export = keys;
1822
+ }
1823
+ declare module "core-js/library/fn/array/last-index-of" {
1824
+ const lastIndexOf: typeof core.Array.lastIndexOf;
1825
+ export = lastIndexOf;
1826
+ }
1827
+ declare module "core-js/library/fn/array/map" {
1828
+ const map: typeof core.Array.map;
1829
+ export = map;
1830
+ }
1831
+ declare module "core-js/library/fn/array/of" {
1832
+ const of: typeof core.Array.of;
1833
+ export = of;
1834
+ }
1835
+ declare module "core-js/library/fn/array/pop" {
1836
+ const pop: typeof core.Array.pop;
1837
+ export = pop;
1838
+ }
1839
+ declare module "core-js/library/fn/array/push" {
1840
+ const push: typeof core.Array.push;
1841
+ export = push;
1842
+ }
1843
+ declare module "core-js/library/fn/array/reduce" {
1844
+ const reduce: typeof core.Array.reduce;
1845
+ export = reduce;
1846
+ }
1847
+ declare module "core-js/library/fn/array/reduce-right" {
1848
+ const reduceRight: typeof core.Array.reduceRight;
1849
+ export = reduceRight;
1850
+ }
1851
+ declare module "core-js/library/fn/array/reverse" {
1852
+ const reverse: typeof core.Array.reverse;
1853
+ export = reverse;
1854
+ }
1855
+ declare module "core-js/library/fn/array/shift" {
1856
+ const shift: typeof core.Array.shift;
1857
+ export = shift;
1858
+ }
1859
+ declare module "core-js/library/fn/array/slice" {
1860
+ const slice: typeof core.Array.slice;
1861
+ export = slice;
1862
+ }
1863
+ declare module "core-js/library/fn/array/some" {
1864
+ const some: typeof core.Array.some;
1865
+ export = some;
1866
+ }
1867
+ declare module "core-js/library/fn/array/sort" {
1868
+ const sort: typeof core.Array.sort;
1869
+ export = sort;
1870
+ }
1871
+ declare module "core-js/library/fn/array/splice" {
1872
+ const splice: typeof core.Array.splice;
1873
+ export = splice;
1874
+ }
1875
+ declare module "core-js/library/fn/array/turn" {
1876
+ const turn: typeof core.Array.turn;
1877
+ export = turn;
1878
+ }
1879
+ declare module "core-js/library/fn/array/unshift" {
1880
+ const unshift: typeof core.Array.unshift;
1881
+ export = unshift;
1882
+ }
1883
+ declare module "core-js/library/fn/array/values" {
1884
+ const values: typeof core.Array.values;
1885
+ export = values;
1886
+ }
1887
+ declare module "core-js/library/fn/date" {
1888
+ const Date: typeof core.Date;
1889
+ export = Date;
1890
+ }
1891
+ declare module "core-js/library/fn/date/add-locale" {
1892
+ const addLocale: typeof core.addLocale;
1893
+ export = addLocale;
1894
+ }
1895
+ declare module "core-js/library/fn/date/format" {
1896
+ const format: typeof core.Date.format;
1897
+ export = format;
1898
+ }
1899
+ declare module "core-js/library/fn/date/formatUTC" {
1900
+ const formatUTC: typeof core.Date.formatUTC;
1901
+ export = formatUTC;
1902
+ }
1903
+ declare module "core-js/library/fn/function" {
1904
+ const Function: typeof core.Function;
1905
+ export = Function;
1906
+ }
1907
+ declare module "core-js/library/fn/function/has-instance" {
1908
+ function hasInstance(value: any): boolean;
1909
+ export = hasInstance;
1910
+ }
1911
+ declare module "core-js/library/fn/function/name" {
1912
+ }
1913
+ declare module "core-js/library/fn/function/part" {
1914
+ const part: typeof core.Function.part;
1915
+ export = part;
1916
+ }
1917
+ declare module "core-js/library/fn/math" {
1918
+ const Math: typeof core.Math;
1919
+ export = Math;
1920
+ }
1921
+ declare module "core-js/library/fn/math/acosh" {
1922
+ const acosh: typeof core.Math.acosh;
1923
+ export = acosh;
1924
+ }
1925
+ declare module "core-js/library/fn/math/asinh" {
1926
+ const asinh: typeof core.Math.asinh;
1927
+ export = asinh;
1928
+ }
1929
+ declare module "core-js/library/fn/math/atanh" {
1930
+ const atanh: typeof core.Math.atanh;
1931
+ export = atanh;
1932
+ }
1933
+ declare module "core-js/library/fn/math/cbrt" {
1934
+ const cbrt: typeof core.Math.cbrt;
1935
+ export = cbrt;
1936
+ }
1937
+ declare module "core-js/library/fn/math/clz32" {
1938
+ const clz32: typeof core.Math.clz32;
1939
+ export = clz32;
1940
+ }
1941
+ declare module "core-js/library/fn/math/cosh" {
1942
+ const cosh: typeof core.Math.cosh;
1943
+ export = cosh;
1944
+ }
1945
+ declare module "core-js/library/fn/math/expm1" {
1946
+ const expm1: typeof core.Math.expm1;
1947
+ export = expm1;
1948
+ }
1949
+ declare module "core-js/library/fn/math/fround" {
1950
+ const fround: typeof core.Math.fround;
1951
+ export = fround;
1952
+ }
1953
+ declare module "core-js/library/fn/math/hypot" {
1954
+ const hypot: typeof core.Math.hypot;
1955
+ export = hypot;
1956
+ }
1957
+ declare module "core-js/library/fn/math/imul" {
1958
+ const imul: typeof core.Math.imul;
1959
+ export = imul;
1960
+ }
1961
+ declare module "core-js/library/fn/math/log10" {
1962
+ const log10: typeof core.Math.log10;
1963
+ export = log10;
1964
+ }
1965
+ declare module "core-js/library/fn/math/log1p" {
1966
+ const log1p: typeof core.Math.log1p;
1967
+ export = log1p;
1968
+ }
1969
+ declare module "core-js/library/fn/math/log2" {
1970
+ const log2: typeof core.Math.log2;
1971
+ export = log2;
1972
+ }
1973
+ declare module "core-js/library/fn/math/sign" {
1974
+ const sign: typeof core.Math.sign;
1975
+ export = sign;
1976
+ }
1977
+ declare module "core-js/library/fn/math/sinh" {
1978
+ const sinh: typeof core.Math.sinh;
1979
+ export = sinh;
1980
+ }
1981
+ declare module "core-js/library/fn/math/tanh" {
1982
+ const tanh: typeof core.Math.tanh;
1983
+ export = tanh;
1984
+ }
1985
+ declare module "core-js/library/fn/math/trunc" {
1986
+ const trunc: typeof core.Math.trunc;
1987
+ export = trunc;
1988
+ }
1989
+ declare module "core-js/library/fn/number" {
1990
+ const Number: typeof core.Number;
1991
+ export = Number;
1992
+ }
1993
+ declare module "core-js/library/fn/number/epsilon" {
1994
+ const EPSILON: typeof core.Number.EPSILON;
1995
+ export = EPSILON;
1996
+ }
1997
+ declare module "core-js/library/fn/number/is-finite" {
1998
+ const isFinite: typeof core.Number.isFinite;
1999
+ export = isFinite;
2000
+ }
2001
+ declare module "core-js/library/fn/number/is-integer" {
2002
+ const isInteger: typeof core.Number.isInteger;
2003
+ export = isInteger;
2004
+ }
2005
+ declare module "core-js/library/fn/number/is-nan" {
2006
+ const isNaN: typeof core.Number.isNaN;
2007
+ export = isNaN;
2008
+ }
2009
+ declare module "core-js/library/fn/number/is-safe-integer" {
2010
+ const isSafeInteger: typeof core.Number.isSafeInteger;
2011
+ export = isSafeInteger;
2012
+ }
2013
+ declare module "core-js/library/fn/number/max-safe-integer" {
2014
+ const MAX_SAFE_INTEGER: typeof core.Number.MAX_SAFE_INTEGER;
2015
+ export = MAX_SAFE_INTEGER;
2016
+ }
2017
+ declare module "core-js/library/fn/number/min-safe-integer" {
2018
+ const MIN_SAFE_INTEGER: typeof core.Number.MIN_SAFE_INTEGER;
2019
+ export = MIN_SAFE_INTEGER;
2020
+ }
2021
+ declare module "core-js/library/fn/number/parse-float" {
2022
+ const parseFloat: typeof core.Number.parseFloat;
2023
+ export = parseFloat;
2024
+ }
2025
+ declare module "core-js/library/fn/number/parse-int" {
2026
+ const parseInt: typeof core.Number.parseInt;
2027
+ export = parseInt;
2028
+ }
2029
+ declare module "core-js/library/fn/number/random" {
2030
+ const random: typeof core.Number.random;
2031
+ export = random;
2032
+ }
2033
+ declare module "core-js/library/fn/object" {
2034
+ const Object: typeof core.Object;
2035
+ export = Object;
2036
+ }
2037
+ declare module "core-js/library/fn/object/assign" {
2038
+ const assign: typeof core.Object.assign;
2039
+ export = assign;
2040
+ }
2041
+ declare module "core-js/library/fn/object/classof" {
2042
+ const classof: typeof core.Object.classof;
2043
+ export = classof;
2044
+ }
2045
+ declare module "core-js/library/fn/object/create" {
2046
+ const create: typeof core.Object.create;
2047
+ export = create;
2048
+ }
2049
+ declare module "core-js/library/fn/object/define" {
2050
+ const define: typeof core.Object.define;
2051
+ export = define;
2052
+ }
2053
+ declare module "core-js/library/fn/object/define-properties" {
2054
+ const defineProperties: typeof core.Object.defineProperties;
2055
+ export = defineProperties;
2056
+ }
2057
+ declare module "core-js/library/fn/object/define-property" {
2058
+ const defineProperty: typeof core.Object.defineProperty;
2059
+ export = defineProperty;
2060
+ }
2061
+ declare module "core-js/library/fn/object/entries" {
2062
+ const entries: typeof core.Object.entries;
2063
+ export = entries;
2064
+ }
2065
+ declare module "core-js/library/fn/object/freeze" {
2066
+ const freeze: typeof core.Object.freeze;
2067
+ export = freeze;
2068
+ }
2069
+ declare module "core-js/library/fn/object/get-own-property-descriptor" {
2070
+ const getOwnPropertyDescriptor: typeof core.Object.getOwnPropertyDescriptor;
2071
+ export = getOwnPropertyDescriptor;
2072
+ }
2073
+ declare module "core-js/library/fn/object/get-own-property-descriptors" {
2074
+ const getOwnPropertyDescriptors: typeof core.Object.getOwnPropertyDescriptors;
2075
+ export = getOwnPropertyDescriptors;
2076
+ }
2077
+ declare module "core-js/library/fn/object/get-own-property-names" {
2078
+ const getOwnPropertyNames: typeof core.Object.getOwnPropertyNames;
2079
+ export = getOwnPropertyNames;
2080
+ }
2081
+ declare module "core-js/library/fn/object/get-own-property-symbols" {
2082
+ const getOwnPropertySymbols: typeof core.Object.getOwnPropertySymbols;
2083
+ export = getOwnPropertySymbols;
2084
+ }
2085
+ declare module "core-js/library/fn/object/get-prototype-of" {
2086
+ const getPrototypeOf: typeof core.Object.getPrototypeOf;
2087
+ export = getPrototypeOf;
2088
+ }
2089
+ declare module "core-js/library/fn/object/is" {
2090
+ const is: typeof core.Object.is;
2091
+ export = is;
2092
+ }
2093
+ declare module "core-js/library/fn/object/is-extensible" {
2094
+ const isExtensible: typeof core.Object.isExtensible;
2095
+ export = isExtensible;
2096
+ }
2097
+ declare module "core-js/library/fn/object/is-frozen" {
2098
+ const isFrozen: typeof core.Object.isFrozen;
2099
+ export = isFrozen;
2100
+ }
2101
+ declare module "core-js/library/fn/object/is-object" {
2102
+ const isObject: typeof core.Object.isObject;
2103
+ export = isObject;
2104
+ }
2105
+ declare module "core-js/library/fn/object/is-sealed" {
2106
+ const isSealed: typeof core.Object.isSealed;
2107
+ export = isSealed;
2108
+ }
2109
+ declare module "core-js/library/fn/object/keys" {
2110
+ const keys: typeof core.Object.keys;
2111
+ export = keys;
2112
+ }
2113
+ declare module "core-js/library/fn/object/make" {
2114
+ const make: typeof core.Object.make;
2115
+ export = make;
2116
+ }
2117
+ declare module "core-js/library/fn/object/prevent-extensions" {
2118
+ const preventExtensions: typeof core.Object.preventExtensions;
2119
+ export = preventExtensions;
2120
+ }
2121
+ declare module "core-js/library/fn/object/seal" {
2122
+ const seal: typeof core.Object.seal;
2123
+ export = seal;
2124
+ }
2125
+ declare module "core-js/library/fn/object/set-prototype-of" {
2126
+ const setPrototypeOf: typeof core.Object.setPrototypeOf;
2127
+ export = setPrototypeOf;
2128
+ }
2129
+ declare module "core-js/library/fn/object/values" {
2130
+ const values: typeof core.Object.values;
2131
+ export = values;
2132
+ }
2133
+ declare module "core-js/library/fn/reflect" {
2134
+ const Reflect: typeof core.Reflect;
2135
+ export = Reflect;
2136
+ }
2137
+ declare module "core-js/library/fn/reflect/apply" {
2138
+ const apply: typeof core.Reflect.apply;
2139
+ export = apply;
2140
+ }
2141
+ declare module "core-js/library/fn/reflect/construct" {
2142
+ const construct: typeof core.Reflect.construct;
2143
+ export = construct;
2144
+ }
2145
+ declare module "core-js/library/fn/reflect/define-property" {
2146
+ const defineProperty: typeof core.Reflect.defineProperty;
2147
+ export = defineProperty;
2148
+ }
2149
+ declare module "core-js/library/fn/reflect/delete-property" {
2150
+ const deleteProperty: typeof core.Reflect.deleteProperty;
2151
+ export = deleteProperty;
2152
+ }
2153
+ declare module "core-js/library/fn/reflect/enumerate" {
2154
+ const enumerate: typeof core.Reflect.enumerate;
2155
+ export = enumerate;
2156
+ }
2157
+ declare module "core-js/library/fn/reflect/get" {
2158
+ const get: typeof core.Reflect.get;
2159
+ export = get;
2160
+ }
2161
+ declare module "core-js/library/fn/reflect/get-own-property-descriptor" {
2162
+ const getOwnPropertyDescriptor: typeof core.Reflect.getOwnPropertyDescriptor;
2163
+ export = getOwnPropertyDescriptor;
2164
+ }
2165
+ declare module "core-js/library/fn/reflect/get-prototype-of" {
2166
+ const getPrototypeOf: typeof core.Reflect.getPrototypeOf;
2167
+ export = getPrototypeOf;
2168
+ }
2169
+ declare module "core-js/library/fn/reflect/has" {
2170
+ const has: typeof core.Reflect.has;
2171
+ export = has;
2172
+ }
2173
+ declare module "core-js/library/fn/reflect/is-extensible" {
2174
+ const isExtensible: typeof core.Reflect.isExtensible;
2175
+ export = isExtensible;
2176
+ }
2177
+ declare module "core-js/library/fn/reflect/own-keys" {
2178
+ const ownKeys: typeof core.Reflect.ownKeys;
2179
+ export = ownKeys;
2180
+ }
2181
+ declare module "core-js/library/fn/reflect/prevent-extensions" {
2182
+ const preventExtensions: typeof core.Reflect.preventExtensions;
2183
+ export = preventExtensions;
2184
+ }
2185
+ declare module "core-js/library/fn/reflect/set" {
2186
+ const set: typeof core.Reflect.set;
2187
+ export = set;
2188
+ }
2189
+ declare module "core-js/library/fn/reflect/set-prototype-of" {
2190
+ const setPrototypeOf: typeof core.Reflect.setPrototypeOf;
2191
+ export = setPrototypeOf;
2192
+ }
2193
+ declare module "core-js/library/fn/reflect/es7/define-metadata" {
2194
+ const defineMetadata: typeof core.Reflect.defineMetadata;
2195
+ export = defineMetadata;
2196
+ }
2197
+ declare module "core-js/library/fn/reflect/es7/delete-metadata" {
2198
+ const deleteMetadata: typeof core.Reflect.deleteMetadata;
2199
+ export = deleteMetadata;
2200
+ }
2201
+ declare module "core-js/library/fn/reflect/es7/get-metadata" {
2202
+ const getMetadata: typeof core.Reflect.getMetadata;
2203
+ export = getMetadata;
2204
+ }
2205
+ declare module "core-js/library/fn/reflect/es7/get-metadata-keys" {
2206
+ const getMetadataKeys: typeof core.Reflect.getMetadataKeys;
2207
+ export = getMetadataKeys;
2208
+ }
2209
+ declare module "core-js/library/fn/reflect/es7/get-own-metadata" {
2210
+ const getOwnMetadata: typeof core.Reflect.getOwnMetadata;
2211
+ export = getOwnMetadata;
2212
+ }
2213
+ declare module "core-js/library/fn/reflect/es7/get-own-metadata-keys'" {
2214
+ const getOwnMetadataKeys: typeof core.Reflect.getOwnMetadataKeys;
2215
+ export = getOwnMetadataKeys;
2216
+ }
2217
+ declare module "core-js/library/fn/reflect/es7/has-metadata'" {
2218
+ const hasMetadata: typeof core.Reflect.hasMetadata;
2219
+ export = hasMetadata;
2220
+ }
2221
+ declare module "core-js/library/fn/reflect/es7/has-own-metadata'" {
2222
+ const hasOwnMetadata: typeof core.Reflect.hasOwnMetadata;
2223
+ export = hasOwnMetadata;
2224
+ }
2225
+ declare module "core-js/library/fn/reflect/es7/metadata'" {
2226
+ const metadata: typeof core.Reflect.metadata;
2227
+ export = metadata;
2228
+ }
2229
+ declare module "core-js/library/fn/regexp" {
2230
+ const RegExp: typeof core.RegExp;
2231
+ export = RegExp;
2232
+ }
2233
+ declare module "core-js/library/fn/regexp/escape" {
2234
+ const escape: typeof core.RegExp.escape;
2235
+ export = escape;
2236
+ }
2237
+ declare module "core-js/library/fn/string" {
2238
+ const String: typeof core.String;
2239
+ export = String;
2240
+ }
2241
+ declare module "core-js/library/fn/string/at" {
2242
+ const at: typeof core.String.at;
2243
+ export = at;
2244
+ }
2245
+ declare module "core-js/library/fn/string/code-point-at" {
2246
+ const codePointAt: typeof core.String.codePointAt;
2247
+ export = codePointAt;
2248
+ }
2249
+ declare module "core-js/library/fn/string/ends-with" {
2250
+ const endsWith: typeof core.String.endsWith;
2251
+ export = endsWith;
2252
+ }
2253
+ declare module "core-js/library/fn/string/escape-html" {
2254
+ const escapeHTML: typeof core.String.escapeHTML;
2255
+ export = escapeHTML;
2256
+ }
2257
+ declare module "core-js/library/fn/string/from-code-point" {
2258
+ const fromCodePoint: typeof core.String.fromCodePoint;
2259
+ export = fromCodePoint;
2260
+ }
2261
+ declare module "core-js/library/fn/string/includes" {
2262
+ const includes: typeof core.String.includes;
2263
+ export = includes;
2264
+ }
2265
+ declare module "core-js/library/fn/string/lpad" {
2266
+ const lpad: typeof core.String.lpad;
2267
+ export = lpad;
2268
+ }
2269
+ declare module "core-js/library/fn/string/raw" {
2270
+ const raw: typeof core.String.raw;
2271
+ export = raw;
2272
+ }
2273
+ declare module "core-js/library/fn/string/repeat" {
2274
+ const repeat: typeof core.String.repeat;
2275
+ export = repeat;
2276
+ }
2277
+ declare module "core-js/library/fn/string/rpad" {
2278
+ const rpad: typeof core.String.rpad;
2279
+ export = rpad;
2280
+ }
2281
+ declare module "core-js/library/fn/string/starts-with" {
2282
+ const startsWith: typeof core.String.startsWith;
2283
+ export = startsWith;
2284
+ }
2285
+ declare module "core-js/library/fn/string/unescape-html" {
2286
+ const unescapeHTML: typeof core.String.unescapeHTML;
2287
+ export = unescapeHTML;
2288
+ }
2289
+ declare module "core-js/library/fn/symbol" {
2290
+ const Symbol: typeof core.Symbol;
2291
+ export = Symbol;
2292
+ }
2293
+ declare module "core-js/library/fn/symbol/for" {
2294
+ const _for: typeof core.Symbol.for;
2295
+ export = _for;
2296
+ }
2297
+ declare module "core-js/library/fn/symbol/has-instance" {
2298
+ const hasInstance: typeof core.Symbol.hasInstance;
2299
+ export = hasInstance;
2300
+ }
2301
+ declare module "core-js/library/fn/symbol/is-concat-spreadable" {
2302
+ const isConcatSpreadable: typeof core.Symbol.isConcatSpreadable;
2303
+ export = isConcatSpreadable;
2304
+ }
2305
+ declare module "core-js/library/fn/symbol/iterator" {
2306
+ const iterator: typeof core.Symbol.iterator;
2307
+ export = iterator;
2308
+ }
2309
+ declare module "core-js/library/fn/symbol/key-for" {
2310
+ const keyFor: typeof core.Symbol.keyFor;
2311
+ export = keyFor;
2312
+ }
2313
+ declare module "core-js/library/fn/symbol/match" {
2314
+ const match: typeof core.Symbol.match;
2315
+ export = match;
2316
+ }
2317
+ declare module "core-js/library/fn/symbol/replace" {
2318
+ const replace: typeof core.Symbol.replace;
2319
+ export = replace;
2320
+ }
2321
+ declare module "core-js/library/fn/symbol/search" {
2322
+ const search: typeof core.Symbol.search;
2323
+ export = search;
2324
+ }
2325
+ declare module "core-js/library/fn/symbol/species" {
2326
+ const species: typeof core.Symbol.species;
2327
+ export = species;
2328
+ }
2329
+ declare module "core-js/library/fn/symbol/split" {
2330
+ const split: typeof core.Symbol.split;
2331
+ export = split;
2332
+ }
2333
+ declare module "core-js/library/fn/symbol/to-primitive" {
2334
+ const toPrimitive: typeof core.Symbol.toPrimitive;
2335
+ export = toPrimitive;
2336
+ }
2337
+ declare module "core-js/library/fn/symbol/to-string-tag" {
2338
+ const toStringTag: typeof core.Symbol.toStringTag;
2339
+ export = toStringTag;
2340
+ }
2341
+ declare module "core-js/library/fn/symbol/unscopables" {
2342
+ const unscopables: typeof core.Symbol.unscopables;
2343
+ export = unscopables;
2344
+ }
2345
+ declare module "core-js/library/es5" {
2346
+ export = core;
2347
+ }
2348
+ declare module "core-js/library/es6" {
2349
+ export = core;
2350
+ }
2351
+ declare module "core-js/library/es6/array" {
2352
+ const Array: typeof core.Array;
2353
+ export = Array;
2354
+ }
2355
+ declare module "core-js/library/es6/function" {
2356
+ const Function: typeof core.Function;
2357
+ export = Function;
2358
+ }
2359
+ declare module "core-js/library/es6/map" {
2360
+ const Map: typeof core.Map;
2361
+ export = Map;
2362
+ }
2363
+ declare module "core-js/library/es6/math" {
2364
+ const Math: typeof core.Math;
2365
+ export = Math;
2366
+ }
2367
+ declare module "core-js/library/es6/number" {
2368
+ const Number: typeof core.Number;
2369
+ export = Number;
2370
+ }
2371
+ declare module "core-js/library/es6/object" {
2372
+ const Object: typeof core.Object;
2373
+ export = Object;
2374
+ }
2375
+ declare module "core-js/library/es6/promise" {
2376
+ const Promise: typeof core.Promise;
2377
+ export = Promise;
2378
+ }
2379
+ declare module "core-js/library/es6/reflect" {
2380
+ const Reflect: typeof core.Reflect;
2381
+ export = Reflect;
2382
+ }
2383
+ declare module "core-js/library/es6/regexp" {
2384
+ const RegExp: typeof core.RegExp;
2385
+ export = RegExp;
2386
+ }
2387
+ declare module "core-js/library/es6/set" {
2388
+ const Set: typeof core.Set;
2389
+ export = Set;
2390
+ }
2391
+ declare module "core-js/library/es6/string" {
2392
+ const String: typeof core.String;
2393
+ export = String;
2394
+ }
2395
+ declare module "core-js/library/es6/symbol" {
2396
+ const Symbol: typeof core.Symbol;
2397
+ export = Symbol;
2398
+ }
2399
+ declare module "core-js/library/es6/weak-map" {
2400
+ const WeakMap: typeof core.WeakMap;
2401
+ export = WeakMap;
2402
+ }
2403
+ declare module "core-js/library/es6/weak-set" {
2404
+ const WeakSet: typeof core.WeakSet;
2405
+ export = WeakSet;
2406
+ }
2407
+ declare module "core-js/library/es7" {
2408
+ export = core;
2409
+ }
2410
+ declare module "core-js/library/es7/array" {
2411
+ const Array: typeof core.Array;
2412
+ export = Array;
2413
+ }
2414
+ declare module "core-js/library/es7/map" {
2415
+ const Map: typeof core.Map;
2416
+ export = Map;
2417
+ }
2418
+ declare module "core-js/library/es7/object" {
2419
+ const Object: typeof core.Object;
2420
+ export = Object;
2421
+ }
2422
+ declare module "core-js/library/es7/regexp" {
2423
+ const RegExp: typeof core.RegExp;
2424
+ export = RegExp;
2425
+ }
2426
+ declare module "core-js/library/es7/set" {
2427
+ const Set: typeof core.Set;
2428
+ export = Set;
2429
+ }
2430
+ declare module "core-js/library/es7/string" {
2431
+ const String: typeof core.String;
2432
+ export = String;
2433
+ }
2434
+ declare module "core-js/library/js" {
2435
+ export = core;
2436
+ }
2437
+ declare module "core-js/library/js/array" {
2438
+ const Array: typeof core.Array;
2439
+ export = Array;
2440
+ }
2441
+ declare module "core-js/library/web" {
2442
+ export = core;
2443
+ }
2444
+ declare module "core-js/library/web/dom" {
2445
+ export = core;
2446
+ }
2447
+ declare module "core-js/library/web/immediate" {
2448
+ export = core;
2449
+ }
2450
+ declare module "core-js/library/web/timers" {
2451
+ export = core;
2452
+ }