diff --git a/.babelrc b/.babelrc
index 0c352c97..e5f862d4 100644
--- a/.babelrc
+++ b/.babelrc
@@ -1,18 +1,29 @@
{
- "presets": ["react", "env"],
+ "presets": [
+ "@babel/preset-react",
+ "@babel/preset-flow",
+ [
+ "@babel/preset-env",
+ {
+ "corejs": {
+ "version": "2",
+ "proposals": true
+ },
+ "useBuiltIns": "usage",
+ }
+ ]
+ ],
"plugins": [
"lodash",
"styled-components",
- "transform-decorators-legacy",
- "transform-es2015-destructuring",
- "transform-object-rest-spread",
- "transform-regenerator",
- "transform-class-properties",
- "syntax-dynamic-import"
- ],
- "env": {
- "development": {
- "presets": ["react-hmre"]
- }
- }
-}
+ [
+ "@babel/plugin-proposal-decorators",
+ {
+ "legacy": true
+ }
+ ],
+ "@babel/plugin-transform-destructuring",
+ "@babel/plugin-transform-regenerator",
+ "transform-class-properties"
+ ]
+}
\ No newline at end of file
diff --git a/.eslintrc b/.eslintrc
index 33f3e738..99ccf23d 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -14,6 +14,46 @@
"eqeqeq": 2,
"no-unused-vars": 2,
"no-mixed-operators": "off",
+ "import/order": [
+ "error",
+ {
+ "alphabetize": {
+ "order": "asc"
+ },
+ "pathGroups": [
+ {
+ "pattern": "shared/**",
+ "group": "external",
+ "position": "after"
+ },
+ {
+ "pattern": "stores",
+ "group": "external",
+ "position": "after"
+ },
+ {
+ "pattern": "stores/**",
+ "group": "external",
+ "position": "after"
+ },
+ {
+ "pattern": "models/**",
+ "group": "external",
+ "position": "after"
+ },
+ {
+ "pattern": "scenes/**",
+ "group": "external",
+ "position": "after"
+ },
+ {
+ "pattern": "components/**",
+ "group": "external",
+ "position": "after"
+ }
+ ]
+ }
+ ],
"flowtype/require-valid-file-annotation": [
2,
"always",
@@ -41,8 +81,7 @@
"react": {
"createClass": "createReactClass",
"pragma": "React",
- "version": "detect",
- "flowVersion": "0.86"
+ "version": "detect"
},
"import/resolver": {
"node": {
diff --git a/app/components/Authenticated.js b/app/components/Authenticated.js
index b1dac2fb..4b0193f8 100644
--- a/app/components/Authenticated.js
+++ b/app/components/Authenticated.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import { Redirect } from "react-router-dom";
+import { isCustomSubdomain } from "shared/utils/domains";
import AuthStore from "stores/AuthStore";
import LoadingIndicator from "components/LoadingIndicator";
-import { isCustomSubdomain } from "shared/utils/domains";
import env from "env";
type Props = {
diff --git a/app/components/Avatar/Avatar.js b/app/components/Avatar/Avatar.js
index 34774c81..46b0e594 100644
--- a/app/components/Avatar/Avatar.js
+++ b/app/components/Avatar/Avatar.js
@@ -1,8 +1,8 @@
// @flow
-import * as React from "react";
-import styled from "styled-components";
import { observable } from "mobx";
import { observer } from "mobx-react";
+import * as React from "react";
+import styled from "styled-components";
import placeholder from "./placeholder.png";
type Props = {
diff --git a/app/components/Avatar/AvatarWithPresence.js b/app/components/Avatar/AvatarWithPresence.js
index a413a58b..c93f4e72 100644
--- a/app/components/Avatar/AvatarWithPresence.js
+++ b/app/components/Avatar/AvatarWithPresence.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
+import distanceInWordsToNow from "date-fns/distance_in_words_to_now";
import { observable } from "mobx";
import { observer } from "mobx-react";
+import { EditIcon } from "outline-icons";
+import * as React from "react";
import styled from "styled-components";
-import distanceInWordsToNow from "date-fns/distance_in_words_to_now";
-import Avatar from "components/Avatar";
-import Tooltip from "components/Tooltip";
import User from "models/User";
import UserProfile from "scenes/UserProfile";
-import { EditIcon } from "outline-icons";
+import Avatar from "components/Avatar";
+import Tooltip from "components/Tooltip";
type Props = {
user: User,
diff --git a/app/components/Breadcrumb.js b/app/components/Breadcrumb.js
index 097875f4..ee2ecbd1 100644
--- a/app/components/Breadcrumb.js
+++ b/app/components/Breadcrumb.js
@@ -1,9 +1,5 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
-import breakpoint from "styled-components-breakpoint";
-import styled from "styled-components";
-import { Link } from "react-router-dom";
import {
PadlockIcon,
GoToIcon,
@@ -11,13 +7,17 @@ import {
ShapesIcon,
EditIcon,
} from "outline-icons";
+import * as React from "react";
+import { Link } from "react-router-dom";
+import styled from "styled-components";
+import breakpoint from "styled-components-breakpoint";
-import Document from "models/Document";
import CollectionsStore from "stores/CollectionsStore";
-import { collectionUrl } from "utils/routeHelpers";
+import Document from "models/Document";
+import CollectionIcon from "components/CollectionIcon";
import Flex from "components/Flex";
import BreadcrumbMenu from "./BreadcrumbMenu";
-import CollectionIcon from "components/CollectionIcon";
+import { collectionUrl } from "utils/routeHelpers";
type Props = {
document: Document,
diff --git a/app/components/Button.js b/app/components/Button.js
index de0e5524..6142d29c 100644
--- a/app/components/Button.js
+++ b/app/components/Button.js
@@ -1,8 +1,8 @@
// @flow
+import { ExpandedIcon } from "outline-icons";
+import { darken, lighten } from "polished";
import * as React from "react";
import styled from "styled-components";
-import { darken, lighten } from "polished";
-import { ExpandedIcon } from "outline-icons";
const RealButton = styled.button`
display: ${(props) => (props.fullwidth ? "block" : "inline-block")};
diff --git a/app/components/Collaborators.js b/app/components/Collaborators.js
index 627dda16..f632e8f6 100644
--- a/app/components/Collaborators.js
+++ b/app/components/Collaborators.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
-import { observer, inject } from "mobx-react";
import { sortBy, keyBy } from "lodash";
+import { observer, inject } from "mobx-react";
+import * as React from "react";
import { MAX_AVATAR_DISPLAY } from "shared/constants";
+import DocumentPresenceStore from "stores/DocumentPresenceStore";
+import ViewsStore from "stores/ViewsStore";
+import Document from "models/Document";
import { AvatarWithPresence } from "components/Avatar";
import Facepile from "components/Facepile";
-import Document from "models/Document";
-import ViewsStore from "stores/ViewsStore";
-import DocumentPresenceStore from "stores/DocumentPresenceStore";
type Props = {
views: ViewsStore,
diff --git a/app/components/CollectionIcon.js b/app/components/CollectionIcon.js
index c28b4977..3d1e4fda 100644
--- a/app/components/CollectionIcon.js
+++ b/app/components/CollectionIcon.js
@@ -1,11 +1,11 @@
// @flow
-import * as React from "react";
import { inject, observer } from "mobx-react";
-import { getLuminance } from "polished";
import { PrivateCollectionIcon, CollectionIcon } from "outline-icons";
+import { getLuminance } from "polished";
+import * as React from "react";
+import UiStore from "stores/UiStore";
import Collection from "models/Collection";
import { icons } from "components/IconPicker";
-import UiStore from "stores/UiStore";
type Props = {
collection: Collection,
diff --git a/app/components/CopyToClipboard.js b/app/components/CopyToClipboard.js
index 5341d2ac..36040e6b 100644
--- a/app/components/CopyToClipboard.js
+++ b/app/components/CopyToClipboard.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import copy from "copy-to-clipboard";
+import * as React from "react";
type Props = {
text: string,
diff --git a/app/components/DocumentHistory/DocumentHistory.js b/app/components/DocumentHistory/DocumentHistory.js
index 18171726..778f61fa 100644
--- a/app/components/DocumentHistory/DocumentHistory.js
+++ b/app/components/DocumentHistory/DocumentHistory.js
@@ -1,11 +1,11 @@
// @flow
-import * as React from "react";
+import ArrowKeyNavigation from "boundless-arrow-key-navigation";
import { observable, action } from "mobx";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import { type RouterHistory, type Match } from "react-router-dom";
-import styled from "styled-components";
import { Waypoint } from "react-waypoint";
-import ArrowKeyNavigation from "boundless-arrow-key-navigation";
+import styled from "styled-components";
import { DEFAULT_PAGINATION_LIMIT } from "stores/BaseStore";
import DocumentsStore from "stores/DocumentsStore";
diff --git a/app/components/DocumentHistory/components/Revision.js b/app/components/DocumentHistory/components/Revision.js
index b6b7a7e3..f776a729 100644
--- a/app/components/DocumentHistory/components/Revision.js
+++ b/app/components/DocumentHistory/components/Revision.js
@@ -1,16 +1,16 @@
// @flow
+import format from "date-fns/format";
+import { MoreIcon } from "outline-icons";
import * as React from "react";
import { NavLink } from "react-router-dom";
import styled, { withTheme } from "styled-components";
-import format from "date-fns/format";
-import { MoreIcon } from "outline-icons";
-import Flex from "components/Flex";
-import Time from "components/Time";
-import Avatar from "components/Avatar";
-import RevisionMenu from "menus/RevisionMenu";
import Document from "models/Document";
import Revision from "models/Revision";
+import Avatar from "components/Avatar";
+import Flex from "components/Flex";
+import Time from "components/Time";
+import RevisionMenu from "menus/RevisionMenu";
import { documentHistoryUrl } from "utils/routeHelpers";
diff --git a/app/components/DocumentList.js b/app/components/DocumentList.js
index 2b1112fc..00d00956 100644
--- a/app/components/DocumentList.js
+++ b/app/components/DocumentList.js
@@ -1,8 +1,8 @@
// @flow
+import ArrowKeyNavigation from "boundless-arrow-key-navigation";
import * as React from "react";
import Document from "models/Document";
import DocumentPreview from "components/DocumentPreview";
-import ArrowKeyNavigation from "boundless-arrow-key-navigation";
type Props = {
documents: Document[],
diff --git a/app/components/DocumentMeta.js b/app/components/DocumentMeta.js
index 44542bee..f1d33184 100644
--- a/app/components/DocumentMeta.js
+++ b/app/components/DocumentMeta.js
@@ -1,7 +1,7 @@
// @flow
+import { inject } from "mobx-react";
import * as React from "react";
import styled from "styled-components";
-import { inject } from "mobx-react";
import ViewsStore from "stores/ViewsStore";
import Document from "models/Document";
import PublishingInfo from "components/PublishingInfo";
diff --git a/app/components/DocumentPreview/DocumentPreview.js b/app/components/DocumentPreview/DocumentPreview.js
index 18f58c23..59a0e443 100644
--- a/app/components/DocumentPreview/DocumentPreview.js
+++ b/app/components/DocumentPreview/DocumentPreview.js
@@ -1,17 +1,17 @@
// @flow
-import * as React from "react";
import { observer } from "mobx-react";
-import { Link, withRouter, type RouterHistory } from "react-router-dom";
import { StarredIcon, PlusIcon } from "outline-icons";
+import * as React from "react";
+import { Link, withRouter, type RouterHistory } from "react-router-dom";
import styled, { withTheme } from "styled-components";
-import Flex from "components/Flex";
+import Document from "models/Document";
import Badge from "components/Badge";
import Button from "components/Button";
-import Tooltip from "components/Tooltip";
+import Flex from "components/Flex";
import Highlight from "components/Highlight";
import PublishingInfo from "components/PublishingInfo";
+import Tooltip from "components/Tooltip";
import DocumentMenu from "menus/DocumentMenu";
-import Document from "models/Document";
import { newDocumentUrl } from "utils/routeHelpers";
type Props = {
diff --git a/app/components/DropToImport.js b/app/components/DropToImport.js
index 7a4677a1..ecb8c78c 100644
--- a/app/components/DropToImport.js
+++ b/app/components/DropToImport.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
+import invariant from "invariant";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
+import * as React from "react";
+import Dropzone from "react-dropzone";
import { withRouter, type RouterHistory, type Match } from "react-router-dom";
import { createGlobalStyle } from "styled-components";
-import invariant from "invariant";
-import importFile from "utils/importFile";
-import Dropzone from "react-dropzone";
import DocumentsStore from "stores/DocumentsStore";
import LoadingIndicator from "components/LoadingIndicator";
+import importFile from "utils/importFile";
const EMPTY_OBJECT = {};
let importingLock = false;
diff --git a/app/components/DropdownMenu/DropdownMenu.js b/app/components/DropdownMenu/DropdownMenu.js
index a7396ae7..47d9dde4 100644
--- a/app/components/DropdownMenu/DropdownMenu.js
+++ b/app/components/DropdownMenu/DropdownMenu.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
import invariant from "invariant";
import { observable } from "mobx";
import { observer } from "mobx-react";
-import { PortalWithState } from "react-portal";
import { MoreIcon } from "outline-icons";
import { rgba } from "polished";
+import * as React from "react";
+import { PortalWithState } from "react-portal";
import styled from "styled-components";
-import Flex from "components/Flex";
import { fadeAndScaleIn } from "shared/styles/animations";
+import Flex from "components/Flex";
import NudeButton from "components/NudeButton";
let previousClosePortal;
diff --git a/app/components/DropdownMenu/DropdownMenuItem.js b/app/components/DropdownMenu/DropdownMenuItem.js
index 1e71f8f7..c981b966 100644
--- a/app/components/DropdownMenu/DropdownMenuItem.js
+++ b/app/components/DropdownMenu/DropdownMenuItem.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { CheckmarkIcon } from "outline-icons";
+import * as React from "react";
import styled from "styled-components";
type Props = {
diff --git a/app/components/Editor.js b/app/components/Editor.js
index 4938ea27..b9bd5c47 100644
--- a/app/components/Editor.js
+++ b/app/components/Editor.js
@@ -1,16 +1,16 @@
// @flow
-import * as React from "react";
-import { withRouter, type RouterHistory } from "react-router-dom";
import { observable } from "mobx";
import { observer } from "mobx-react";
import { lighten } from "polished";
-import styled, { withTheme } from "styled-components";
+import * as React from "react";
+import { withRouter, type RouterHistory } from "react-router-dom";
import RichMarkdownEditor from "rich-markdown-editor";
-import { uploadFile } from "utils/uploadFile";
-import isInternalUrl from "utils/isInternalUrl";
-import Tooltip from "components/Tooltip";
+import styled, { withTheme } from "styled-components";
import UiStore from "stores/UiStore";
+import Tooltip from "components/Tooltip";
import embeds from "../embeds";
+import isInternalUrl from "utils/isInternalUrl";
+import { uploadFile } from "utils/uploadFile";
const EMPTY_ARRAY = [];
diff --git a/app/components/ErrorBoundary.js b/app/components/ErrorBoundary.js
index 3d62ad9b..739e8362 100644
--- a/app/components/ErrorBoundary.js
+++ b/app/components/ErrorBoundary.js
@@ -1,11 +1,11 @@
// @flow
+import { observable } from "mobx";
+import { observer } from "mobx-react";
import * as React from "react";
import styled from "styled-components";
-import { observer } from "mobx-react";
-import { observable } from "mobx";
-import HelpText from "components/HelpText";
import Button from "components/Button";
import CenteredContent from "components/CenteredContent";
+import HelpText from "components/HelpText";
import PageTitle from "components/PageTitle";
import { githubIssuesUrl } from "../../shared/utils/routeHelpers";
diff --git a/app/components/Facepile.js b/app/components/Facepile.js
index da2c6fad..4d93aba0 100644
--- a/app/components/Facepile.js
+++ b/app/components/Facepile.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import styled, { withTheme } from "styled-components";
-import Flex from "components/Flex";
-import Avatar from "components/Avatar";
import User from "models/User";
+import Avatar from "components/Avatar";
+import Flex from "components/Flex";
type Props = {
users: User[],
diff --git a/app/components/GroupListItem.js b/app/components/GroupListItem.js
index 3b980102..7314a15e 100644
--- a/app/components/GroupListItem.js
+++ b/app/components/GroupListItem.js
@@ -1,17 +1,17 @@
// @flow
-import * as React from "react";
-import styled from "styled-components";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
+import * as React from "react";
+import styled from "styled-components";
import { MAX_AVATAR_DISPLAY } from "shared/constants";
-import Modal from "components/Modal";
-import Flex from "components/Flex";
-import Facepile from "components/Facepile";
-import GroupMembers from "scenes/GroupMembers";
-import ListItem from "components/List/Item";
-import Group from "models/Group";
-import CollectionGroupMembership from "models/CollectionGroupMembership";
import GroupMembershipsStore from "stores/GroupMembershipsStore";
+import CollectionGroupMembership from "models/CollectionGroupMembership";
+import Group from "models/Group";
+import GroupMembers from "scenes/GroupMembers";
+import Facepile from "components/Facepile";
+import Flex from "components/Flex";
+import ListItem from "components/List/Item";
+import Modal from "components/Modal";
type Props = {
group: Group,
diff --git a/app/components/HoverPreview.js b/app/components/HoverPreview.js
index 5aeb5885..89ae0559 100644
--- a/app/components/HoverPreview.js
+++ b/app/components/HoverPreview.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
import { inject } from "mobx-react";
import { transparentize } from "polished";
-import HoverPreviewDocument from "components/HoverPreviewDocument";
-import styled from "styled-components";
+import * as React from "react";
import { Portal } from "react-portal";
+import styled from "styled-components";
import { fadeAndSlideIn } from "shared/styles/animations";
-import isInternalUrl from "utils/isInternalUrl";
import { parseDocumentSlugFromUrl } from "shared/utils/parseDocumentIds";
import DocumentsStore from "stores/DocumentsStore";
+import HoverPreviewDocument from "components/HoverPreviewDocument";
+import isInternalUrl from "utils/isInternalUrl";
const DELAY_OPEN = 300;
const DELAY_CLOSE = 300;
diff --git a/app/components/HoverPreviewDocument.js b/app/components/HoverPreviewDocument.js
index bbee79a8..12854d72 100644
--- a/app/components/HoverPreviewDocument.js
+++ b/app/components/HoverPreviewDocument.js
@@ -1,12 +1,12 @@
// @flow
-import * as React from "react";
import { inject, observer } from "mobx-react";
+import * as React from "react";
import { Link } from "react-router-dom";
-import Editor from "components/Editor";
import styled from "styled-components";
import { parseDocumentSlugFromUrl } from "shared/utils/parseDocumentIds";
import DocumentsStore from "stores/DocumentsStore";
import DocumentMeta from "components/DocumentMeta";
+import Editor from "components/Editor";
type Props = {
url: string,
diff --git a/app/components/IconPicker.js b/app/components/IconPicker.js
index 8294e224..2e2b07db 100644
--- a/app/components/IconPicker.js
+++ b/app/components/IconPicker.js
@@ -1,8 +1,6 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer } from "mobx-react";
-import { TwitterPicker } from "react-color";
import {
CollectionIcon,
CoinsIcon,
@@ -23,11 +21,13 @@ import {
SunIcon,
VehicleIcon,
} from "outline-icons";
+import * as React from "react";
+import { TwitterPicker } from "react-color";
import styled from "styled-components";
-import { LabelText } from "components/Input";
import { DropdownMenu } from "components/DropdownMenu";
-import NudeButton from "components/NudeButton";
import Flex from "components/Flex";
+import { LabelText } from "components/Input";
+import NudeButton from "components/NudeButton";
export const icons = {
collection: {
diff --git a/app/components/Input.js b/app/components/Input.js
index d3ae4e8a..f195a607 100644
--- a/app/components/Input.js
+++ b/app/components/Input.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
-import { observer } from "mobx-react";
import { observable } from "mobx";
+import { observer } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
-import VisuallyHidden from "components/VisuallyHidden";
import Flex from "components/Flex";
+import VisuallyHidden from "components/VisuallyHidden";
const RealTextarea = styled.textarea`
border: 0;
diff --git a/app/components/InputRich.js b/app/components/InputRich.js
index ee8c93fe..19e9bebe 100644
--- a/app/components/InputRich.js
+++ b/app/components/InputRich.js
@@ -1,7 +1,7 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer } from "mobx-react";
+import * as React from "react";
import styled, { withTheme } from "styled-components";
import { LabelText, Outline } from "components/Input";
diff --git a/app/components/InputSearch.js b/app/components/InputSearch.js
index 8500403b..526767ec 100644
--- a/app/components/InputSearch.js
+++ b/app/components/InputSearch.js
@@ -1,13 +1,13 @@
// @flow
+import { observable } from "mobx";
+import { observer } from "mobx-react";
+import { SearchIcon } from "outline-icons";
import * as React from "react";
import keydown from "react-keydown";
-import { observer } from "mobx-react";
-import { observable } from "mobx";
import { withRouter, type RouterHistory } from "react-router-dom";
import styled, { withTheme } from "styled-components";
-import { SearchIcon } from "outline-icons";
-import { searchUrl } from "utils/routeHelpers";
import Input from "./Input";
+import { searchUrl } from "utils/routeHelpers";
type Props = {
history: RouterHistory,
diff --git a/app/components/InputSelect.js b/app/components/InputSelect.js
index f46188d8..5ac3c865 100644
--- a/app/components/InputSelect.js
+++ b/app/components/InputSelect.js
@@ -1,7 +1,7 @@
// @flow
-import * as React from "react";
-import { observer } from "mobx-react";
import { observable } from "mobx";
+import { observer } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
import VisuallyHidden from "components/VisuallyHidden";
import { Outline, LabelText } from "./Input";
diff --git a/app/components/Labeled.js b/app/components/Labeled.js
index f09f7884..07905f96 100644
--- a/app/components/Labeled.js
+++ b/app/components/Labeled.js
@@ -1,8 +1,8 @@
// @flow
-import * as React from "react";
import { observer } from "mobx-react";
-import Flex from "components/Flex";
+import * as React from "react";
import styled from "styled-components";
+import Flex from "components/Flex";
type Props = {
label: React.Node | string,
diff --git a/app/components/Layout.js b/app/components/Layout.js
index cfbfe6b1..ff2e3c04 100644
--- a/app/components/Layout.js
+++ b/app/components/Layout.js
@@ -1,33 +1,33 @@
// @flow
-import * as React from "react";
-import { Switch, Route, Redirect } from "react-router-dom";
-import { Helmet } from "react-helmet";
-import styled, { withTheme } from "styled-components";
-import breakpoint from "styled-components-breakpoint";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
+import * as React from "react";
+import { Helmet } from "react-helmet";
import keydown from "react-keydown";
+import { Switch, Route, Redirect } from "react-router-dom";
+import styled, { withTheme } from "styled-components";
+import breakpoint from "styled-components-breakpoint";
+import AuthStore from "stores/AuthStore";
+import DocumentsStore from "stores/DocumentsStore";
+import UiStore from "stores/UiStore";
+import ErrorSuspended from "scenes/ErrorSuspended";
+import KeyboardShortcuts from "scenes/KeyboardShortcuts";
import Analytics from "components/Analytics";
+import DocumentHistory from "components/DocumentHistory";
+import { GlobalStyles } from "components/DropToImport";
import Flex from "components/Flex";
+
+import { LoadingIndicatorBar } from "components/LoadingIndicator";
+import Modal from "components/Modal";
+import Modals from "components/Modals";
+import Sidebar from "components/Sidebar";
+import SettingsSidebar from "components/Sidebar/Settings";
import {
homeUrl,
searchUrl,
matchDocumentSlug as slug,
} from "utils/routeHelpers";
-import { LoadingIndicatorBar } from "components/LoadingIndicator";
-import { GlobalStyles } from "components/DropToImport";
-import Sidebar from "components/Sidebar";
-import SettingsSidebar from "components/Sidebar/Settings";
-import Modals from "components/Modals";
-import DocumentHistory from "components/DocumentHistory";
-import Modal from "components/Modal";
-import KeyboardShortcuts from "scenes/KeyboardShortcuts";
-import ErrorSuspended from "scenes/ErrorSuspended";
-import AuthStore from "stores/AuthStore";
-import UiStore from "stores/UiStore";
-import DocumentsStore from "stores/DocumentsStore";
-
type Props = {
documents: DocumentsStore,
children?: ?React.Node,
diff --git a/app/components/List/Placeholder.js b/app/components/List/Placeholder.js
index 7938ae60..8e0a0c9a 100644
--- a/app/components/List/Placeholder.js
+++ b/app/components/List/Placeholder.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
import { times } from "lodash";
+import * as React from "react";
import styled from "styled-components";
-import Mask from "components/Mask";
import Fade from "components/Fade";
import Flex from "components/Flex";
+import Mask from "components/Mask";
type Props = {
count?: number,
diff --git a/app/components/LoadingIndicator/LoadingIndicator.js b/app/components/LoadingIndicator/LoadingIndicator.js
index 5f08a746..3b25a80a 100644
--- a/app/components/LoadingIndicator/LoadingIndicator.js
+++ b/app/components/LoadingIndicator/LoadingIndicator.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { inject, observer } from "mobx-react";
+import * as React from "react";
import UiStore from "stores/UiStore";
type Props = {
diff --git a/app/components/LoadingPlaceholder/ListPlaceholder.js b/app/components/LoadingPlaceholder/ListPlaceholder.js
index 76d7e5fd..8492131d 100644
--- a/app/components/LoadingPlaceholder/ListPlaceholder.js
+++ b/app/components/LoadingPlaceholder/ListPlaceholder.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
import { times } from "lodash";
+import * as React from "react";
import styled from "styled-components";
-import Mask from "components/Mask";
import Fade from "components/Fade";
import Flex from "components/Flex";
+import Mask from "components/Mask";
type Props = {
count?: number,
diff --git a/app/components/LoadingPlaceholder/LoadingPlaceholder.js b/app/components/LoadingPlaceholder/LoadingPlaceholder.js
index 7afb5ea3..32cbf897 100644
--- a/app/components/LoadingPlaceholder/LoadingPlaceholder.js
+++ b/app/components/LoadingPlaceholder/LoadingPlaceholder.js
@@ -1,9 +1,9 @@
// @flow
import * as React from "react";
import styled from "styled-components";
-import Mask from "components/Mask";
import Fade from "components/Fade";
import Flex from "components/Flex";
+import Mask from "components/Mask";
export default function LoadingPlaceholder(props: Object) {
return (
diff --git a/app/components/LoadingPlaceholder/index.js b/app/components/LoadingPlaceholder/index.js
index 54559704..f5e93ca0 100644
--- a/app/components/LoadingPlaceholder/index.js
+++ b/app/components/LoadingPlaceholder/index.js
@@ -1,6 +1,6 @@
// @flow
-import LoadingPlaceholder from "./LoadingPlaceholder";
import ListPlaceholder from "./ListPlaceholder";
+import LoadingPlaceholder from "./LoadingPlaceholder";
export default LoadingPlaceholder;
export { ListPlaceholder };
diff --git a/app/components/Mask.js b/app/components/Mask.js
index 2adb74bd..66440f42 100644
--- a/app/components/Mask.js
+++ b/app/components/Mask.js
@@ -1,8 +1,8 @@
// @flow
import * as React from "react";
import styled from "styled-components";
-import { pulsate } from "shared/styles/animations";
import { randomInteger } from "shared/random";
+import { pulsate } from "shared/styles/animations";
import Flex from "components/Flex";
type Props = {
diff --git a/app/components/Modal.js b/app/components/Modal.js
index fe500044..4b727fd8 100644
--- a/app/components/Modal.js
+++ b/app/components/Modal.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
import { observer } from "mobx-react";
+import { CloseIcon, BackIcon } from "outline-icons";
+import { transparentize } from "polished";
+import * as React from "react";
+import ReactModal from "react-modal";
import styled, { createGlobalStyle } from "styled-components";
import breakpoint from "styled-components-breakpoint";
-import ReactModal from "react-modal";
-import { transparentize } from "polished";
-import { CloseIcon, BackIcon } from "outline-icons";
-import NudeButton from "components/NudeButton";
import { fadeAndScaleIn } from "shared/styles/animations";
import Flex from "components/Flex";
+import NudeButton from "components/NudeButton";
ReactModal.setAppElement("#root");
diff --git a/app/components/Modals.js b/app/components/Modals.js
index 8b08e830..0ed88860 100644
--- a/app/components/Modals.js
+++ b/app/components/Modals.js
@@ -1,13 +1,13 @@
// @flow
-import * as React from "react";
import { observer } from "mobx-react";
-import BaseModal from "components/Modal";
+import * as React from "react";
import UiStore from "stores/UiStore";
-import CollectionNew from "scenes/CollectionNew";
-import CollectionEdit from "scenes/CollectionEdit";
import CollectionDelete from "scenes/CollectionDelete";
+import CollectionEdit from "scenes/CollectionEdit";
import CollectionExport from "scenes/CollectionExport";
+import CollectionNew from "scenes/CollectionNew";
import DocumentShare from "scenes/DocumentShare";
+import BaseModal from "components/Modal";
type Props = {
ui: UiStore,
diff --git a/app/components/NudeButton.js b/app/components/NudeButton.js
index d0f87feb..9c8f0b10 100644
--- a/app/components/NudeButton.js
+++ b/app/components/NudeButton.js
@@ -1,7 +1,7 @@
// @flow
+import { lighten } from "polished";
import * as React from "react";
import styled from "styled-components";
-import { lighten } from "polished";
const Button = styled.button`
width: 24px;
diff --git a/app/components/PageTitle.js b/app/components/PageTitle.js
index 10f5e0bf..a91ef21b 100644
--- a/app/components/PageTitle.js
+++ b/app/components/PageTitle.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import { Helmet } from "react-helmet";
import AuthStore from "stores/AuthStore";
diff --git a/app/components/PaginatedDocumentList.js b/app/components/PaginatedDocumentList.js
index 31a73341..8d2188e8 100644
--- a/app/components/PaginatedDocumentList.js
+++ b/app/components/PaginatedDocumentList.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { observer } from "mobx-react";
+import * as React from "react";
import Document from "models/Document";
import DocumentPreview from "components/DocumentPreview";
import PaginatedList from "components/PaginatedList";
diff --git a/app/components/PaginatedList.js b/app/components/PaginatedList.js
index add57774..b3ee31bf 100644
--- a/app/components/PaginatedList.js
+++ b/app/components/PaginatedList.js
@@ -1,9 +1,9 @@
// @flow
-import * as React from "react";
+import ArrowKeyNavigation from "boundless-arrow-key-navigation";
import { observable, action } from "mobx";
import { observer } from "mobx-react";
+import * as React from "react";
import { Waypoint } from "react-waypoint";
-import ArrowKeyNavigation from "boundless-arrow-key-navigation";
import { DEFAULT_PAGINATION_LIMIT } from "stores/BaseStore";
import { ListPlaceholder } from "components/LoadingPlaceholder";
diff --git a/app/components/PathToDocument.js b/app/components/PathToDocument.js
index f2f4b389..8abb41fc 100644
--- a/app/components/PathToDocument.js
+++ b/app/components/PathToDocument.js
@@ -1,14 +1,13 @@
// @flow
-import * as React from "react";
import { observer } from "mobx-react";
-import styled from "styled-components";
import { GoToIcon } from "outline-icons";
-import Flex from "components/Flex";
-
-import Document from "models/Document";
-import Collection from "models/Collection";
+import * as React from "react";
+import styled from "styled-components";
import type { DocumentPath } from "stores/CollectionsStore";
+import Collection from "models/Collection";
+import Document from "models/Document";
import CollectionIcon from "components/CollectionIcon";
+import Flex from "components/Flex";
type Props = {
result: DocumentPath,
diff --git a/app/components/Popover.js b/app/components/Popover.js
index c6c904e9..7a68a8c0 100644
--- a/app/components/Popover.js
+++ b/app/components/Popover.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import BoundlessPopover from "boundless-popover";
+import * as React from "react";
import styled, { keyframes } from "styled-components";
const fadeIn = keyframes`
diff --git a/app/components/PublishingInfo.js b/app/components/PublishingInfo.js
index 3589c955..fbf25da3 100644
--- a/app/components/PublishingInfo.js
+++ b/app/components/PublishingInfo.js
@@ -1,13 +1,13 @@
// @flow
-import * as React from "react";
import { inject, observer } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
+import AuthStore from "stores/AuthStore";
+import CollectionsStore from "stores/CollectionsStore";
import Document from "models/Document";
+import Breadcrumb from "components/Breadcrumb";
import Flex from "components/Flex";
import Time from "components/Time";
-import Breadcrumb from "components/Breadcrumb";
-import CollectionsStore from "stores/CollectionsStore";
-import AuthStore from "stores/AuthStore";
const Container = styled(Flex)`
color: ${(props) => props.theme.textTertiary};
diff --git a/app/components/Scrollable.js b/app/components/Scrollable.js
index 87029795..179bee86 100644
--- a/app/components/Scrollable.js
+++ b/app/components/Scrollable.js
@@ -1,7 +1,7 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
type Props = {
diff --git a/app/components/Sidebar/Main.js b/app/components/Sidebar/Main.js
index b987e57b..b90b0ad8 100644
--- a/app/components/Sidebar/Main.js
+++ b/app/components/Sidebar/Main.js
@@ -1,7 +1,6 @@
// @flow
-import * as React from "react";
+import { observable } from "mobx";
import { observer, inject } from "mobx-react";
-import styled from "styled-components";
import {
ArchiveIcon,
HomeIcon,
@@ -12,24 +11,24 @@ import {
TrashIcon,
PlusIcon,
} from "outline-icons";
-
-import Flex from "components/Flex";
-import Modal from "components/Modal";
-import Invite from "scenes/Invite";
-import AccountMenu from "menus/AccountMenu";
-import Sidebar from "./Sidebar";
-import Scrollable from "components/Scrollable";
-import Section from "./components/Section";
-import Collections from "./components/Collections";
-import SidebarLink from "./components/SidebarLink";
-import HeaderBlock from "./components/HeaderBlock";
-import Bubble from "./components/Bubble";
+import * as React from "react";
+import styled from "styled-components";
import AuthStore from "stores/AuthStore";
import DocumentsStore from "stores/DocumentsStore";
import PoliciesStore from "stores/PoliciesStore";
import UiStore from "stores/UiStore";
-import { observable } from "mobx";
+import Invite from "scenes/Invite";
+import Flex from "components/Flex";
+import Modal from "components/Modal";
+import Scrollable from "components/Scrollable";
+import Sidebar from "./Sidebar";
+import Bubble from "./components/Bubble";
+import Collections from "./components/Collections";
+import HeaderBlock from "./components/HeaderBlock";
+import Section from "./components/Section";
+import SidebarLink from "./components/SidebarLink";
+import AccountMenu from "menus/AccountMenu";
type Props = {
auth: AuthStore,
diff --git a/app/components/Sidebar/Settings.js b/app/components/Sidebar/Settings.js
index c7ea77f8..514aa646 100644
--- a/app/components/Sidebar/Settings.js
+++ b/app/components/Sidebar/Settings.js
@@ -1,8 +1,5 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
-import type { RouterHistory } from "react-router-dom";
-import styled from "styled-components";
import {
DocumentIcon,
EmailIcon,
@@ -16,19 +13,22 @@ import {
BulletedListIcon,
ExpandedIcon,
} from "outline-icons";
-import ZapierIcon from "./icons/Zapier";
-import SlackIcon from "./icons/Slack";
-
-import Flex from "components/Flex";
-import Sidebar from "./Sidebar";
-import Scrollable from "components/Scrollable";
-import Section from "./components/Section";
-import Header from "./components/Header";
-import SidebarLink from "./components/SidebarLink";
-import HeaderBlock from "./components/HeaderBlock";
-import Version from "./components/Version";
-import PoliciesStore from "stores/PoliciesStore";
+import * as React from "react";
+import type { RouterHistory } from "react-router-dom";
+import styled from "styled-components";
import AuthStore from "stores/AuthStore";
+import PoliciesStore from "stores/PoliciesStore";
+import Flex from "components/Flex";
+import Scrollable from "components/Scrollable";
+
+import Sidebar from "./Sidebar";
+import Header from "./components/Header";
+import HeaderBlock from "./components/HeaderBlock";
+import Section from "./components/Section";
+import SidebarLink from "./components/SidebarLink";
+import Version from "./components/Version";
+import SlackIcon from "./icons/Slack";
+import ZapierIcon from "./icons/Zapier";
import env from "env";
type Props = {
diff --git a/app/components/Sidebar/Sidebar.js b/app/components/Sidebar/Sidebar.js
index fe2c38f8..01f12559 100644
--- a/app/components/Sidebar/Sidebar.js
+++ b/app/components/Sidebar/Sidebar.js
@@ -1,14 +1,14 @@
// @flow
+import { observer, inject } from "mobx-react";
+import { CloseIcon, MenuIcon } from "outline-icons";
import * as React from "react";
import { withRouter } from "react-router-dom";
import type { Location } from "react-router-dom";
import styled from "styled-components";
import breakpoint from "styled-components-breakpoint";
-import { observer, inject } from "mobx-react";
-import { CloseIcon, MenuIcon } from "outline-icons";
+import UiStore from "stores/UiStore";
import Fade from "components/Fade";
import Flex from "components/Flex";
-import UiStore from "stores/UiStore";
let firstRender = true;
diff --git a/app/components/Sidebar/components/CollectionLink.js b/app/components/Sidebar/components/CollectionLink.js
index 32b2b7dd..d2ac506f 100644
--- a/app/components/Sidebar/components/CollectionLink.js
+++ b/app/components/Sidebar/components/CollectionLink.js
@@ -1,17 +1,17 @@
// @flow
-import * as React from "react";
-import { observer } from "mobx-react";
import { observable } from "mobx";
+import { observer } from "mobx-react";
+import * as React from "react";
+import DocumentsStore from "stores/DocumentsStore";
+import UiStore from "stores/UiStore";
import Collection from "models/Collection";
import Document from "models/Document";
-import CollectionMenu from "menus/CollectionMenu";
-import UiStore from "stores/UiStore";
-import DocumentsStore from "stores/DocumentsStore";
-import SidebarLink from "./SidebarLink";
-import DocumentLink from "./DocumentLink";
import CollectionIcon from "components/CollectionIcon";
import DropToImport from "components/DropToImport";
import Flex from "components/Flex";
+import DocumentLink from "./DocumentLink";
+import SidebarLink from "./SidebarLink";
+import CollectionMenu from "menus/CollectionMenu";
type Props = {
collection: Collection,
diff --git a/app/components/Sidebar/components/Collections.js b/app/components/Sidebar/components/Collections.js
index 85996afb..deba56db 100644
--- a/app/components/Sidebar/components/Collections.js
+++ b/app/components/Sidebar/components/Collections.js
@@ -1,22 +1,21 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
-import { withRouter, type RouterHistory } from "react-router-dom";
-import keydown from "react-keydown";
-import Flex from "components/Flex";
import { PlusIcon } from "outline-icons";
-import { newDocumentUrl } from "utils/routeHelpers";
-
-import Header from "./Header";
-import SidebarLink from "./SidebarLink";
-import CollectionLink from "./CollectionLink";
-import CollectionsLoading from "./CollectionsLoading";
-import Fade from "components/Fade";
+import * as React from "react";
+import keydown from "react-keydown";
+import { withRouter, type RouterHistory } from "react-router-dom";
import CollectionsStore from "stores/CollectionsStore";
+import DocumentsStore from "stores/DocumentsStore";
import PoliciesStore from "stores/PoliciesStore";
import UiStore from "stores/UiStore";
-import DocumentsStore from "stores/DocumentsStore";
+import Fade from "components/Fade";
+import Flex from "components/Flex";
+import CollectionLink from "./CollectionLink";
+import CollectionsLoading from "./CollectionsLoading";
+import Header from "./Header";
+import SidebarLink from "./SidebarLink";
+import { newDocumentUrl } from "utils/routeHelpers";
type Props = {
history: RouterHistory,
diff --git a/app/components/Sidebar/components/DocumentLink.js b/app/components/Sidebar/components/DocumentLink.js
index 1cc44421..ad9673c3 100644
--- a/app/components/Sidebar/components/DocumentLink.js
+++ b/app/components/Sidebar/components/DocumentLink.js
@@ -1,16 +1,16 @@
// @flow
-import * as React from "react";
-import { observer } from "mobx-react";
import { observable } from "mobx";
+import { observer } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
+import DocumentsStore from "stores/DocumentsStore";
+import Collection from "models/Collection";
import Document from "models/Document";
-import DocumentMenu from "menus/DocumentMenu";
-import SidebarLink from "./SidebarLink";
import DropToImport from "components/DropToImport";
import Fade from "components/Fade";
-import Collection from "models/Collection";
-import DocumentsStore from "stores/DocumentsStore";
import Flex from "components/Flex";
+import SidebarLink from "./SidebarLink";
+import DocumentMenu from "menus/DocumentMenu";
import { type NavigationNode } from "types";
type Props = {
diff --git a/app/components/Sidebar/components/Header.js b/app/components/Sidebar/components/Header.js
index a46341f0..dbc9ccd5 100644
--- a/app/components/Sidebar/components/Header.js
+++ b/app/components/Sidebar/components/Header.js
@@ -1,6 +1,6 @@
// @flow
-import Flex from "components/Flex";
import styled from "styled-components";
+import Flex from "components/Flex";
const Header = styled(Flex)`
font-size: 11px;
diff --git a/app/components/Sidebar/components/HeaderBlock.js b/app/components/Sidebar/components/HeaderBlock.js
index 4e55b885..02990ad3 100644
--- a/app/components/Sidebar/components/HeaderBlock.js
+++ b/app/components/Sidebar/components/HeaderBlock.js
@@ -1,7 +1,7 @@
// @flow
+import { ExpandedIcon } from "outline-icons";
import * as React from "react";
import styled, { withTheme } from "styled-components";
-import { ExpandedIcon } from "outline-icons";
import Flex from "components/Flex";
import TeamLogo from "components/TeamLogo";
diff --git a/app/components/Sidebar/components/SidebarLink.js b/app/components/Sidebar/components/SidebarLink.js
index 5373da9f..2d08f572 100644
--- a/app/components/Sidebar/components/SidebarLink.js
+++ b/app/components/Sidebar/components/SidebarLink.js
@@ -1,9 +1,9 @@
// @flow
-import * as React from "react";
import { observable, action } from "mobx";
import { observer } from "mobx-react";
-import { withRouter, NavLink } from "react-router-dom";
import { CollapsedIcon } from "outline-icons";
+import * as React from "react";
+import { withRouter, NavLink } from "react-router-dom";
import styled, { withTheme } from "styled-components";
import Flex from "components/Flex";
diff --git a/app/components/Sidebar/components/Version.js b/app/components/Sidebar/components/Version.js
index b0a33b2e..4bf565aa 100644
--- a/app/components/Sidebar/components/Version.js
+++ b/app/components/Sidebar/components/Version.js
@@ -2,8 +2,8 @@
import * as React from "react";
import styled from "styled-components";
import Badge from "components/Badge";
-import SidebarLink from "./SidebarLink";
import { version } from "../../../../package.json";
+import SidebarLink from "./SidebarLink";
export default function Version() {
const [releasesBehind, setReleasesBehind] = React.useState(0);
diff --git a/app/components/SocketProvider.js b/app/components/SocketProvider.js
index db306a4b..4d2c6b74 100644
--- a/app/components/SocketProvider.js
+++ b/app/components/SocketProvider.js
@@ -1,18 +1,18 @@
// @flow
-import * as React from "react";
+import { find } from "lodash";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
-import { find } from "lodash";
+import * as React from "react";
import io from "socket.io-client";
-import DocumentsStore from "stores/DocumentsStore";
+import AuthStore from "stores/AuthStore";
import CollectionsStore from "stores/CollectionsStore";
+import DocumentPresenceStore from "stores/DocumentPresenceStore";
+import DocumentsStore from "stores/DocumentsStore";
import GroupsStore from "stores/GroupsStore";
import MembershipsStore from "stores/MembershipsStore";
-import DocumentPresenceStore from "stores/DocumentPresenceStore";
import PoliciesStore from "stores/PoliciesStore";
-import ViewsStore from "stores/ViewsStore";
-import AuthStore from "stores/AuthStore";
import UiStore from "stores/UiStore";
+import ViewsStore from "stores/ViewsStore";
export const SocketContext: any = React.createContext();
diff --git a/app/components/Tab.js b/app/components/Tab.js
index 0d5da278..ef985ee1 100644
--- a/app/components/Tab.js
+++ b/app/components/Tab.js
@@ -1,8 +1,8 @@
// @flow
-import * as React from "react";
-import styled, { withTheme } from "styled-components";
-import { NavLink } from "react-router-dom";
import { lighten } from "polished";
+import * as React from "react";
+import { NavLink } from "react-router-dom";
+import styled, { withTheme } from "styled-components";
type Props = {
theme: Object,
diff --git a/app/components/Theme.js b/app/components/Theme.js
index 9ed2c1b1..63fe1e9c 100644
--- a/app/components/Theme.js
+++ b/app/components/Theme.js
@@ -1,9 +1,9 @@
// @flow
-import * as React from "react";
import { inject, observer } from "mobx-react";
+import * as React from "react";
import { ThemeProvider } from "styled-components";
-import { dark, light } from "shared/styles/theme";
import GlobalStyles from "shared/styles/globals";
+import { dark, light } from "shared/styles/theme";
import UiStore from "stores/UiStore";
type Props = {
diff --git a/app/components/Time.js b/app/components/Time.js
index c94f10b5..69b37d49 100644
--- a/app/components/Time.js
+++ b/app/components/Time.js
@@ -1,8 +1,8 @@
// @flow
-import * as React from "react";
-import Tooltip from "components/Tooltip";
import distanceInWordsToNow from "date-fns/distance_in_words_to_now";
import format from "date-fns/format";
+import * as React from "react";
+import Tooltip from "components/Tooltip";
let callbacks = [];
diff --git a/app/components/Toasts/Toasts.js b/app/components/Toasts/Toasts.js
index 66bbfdec..2daa6c03 100644
--- a/app/components/Toasts/Toasts.js
+++ b/app/components/Toasts/Toasts.js
@@ -1,9 +1,9 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
-import Toast from "./components/Toast";
import UiStore from "../../stores/UiStore";
+import Toast from "./components/Toast";
type Props = {
ui: UiStore,
diff --git a/app/components/Toasts/components/Toast.js b/app/components/Toasts/components/Toast.js
index 76a0e009..3605dcab 100644
--- a/app/components/Toasts/components/Toast.js
+++ b/app/components/Toasts/components/Toast.js
@@ -1,7 +1,7 @@
// @flow
+import { darken } from "polished";
import * as React from "react";
import styled from "styled-components";
-import { darken } from "polished";
import { fadeAndScaleIn } from "shared/styles/animations";
import type { Toast as TToast } from "../../../types";
diff --git a/app/components/Tooltip.js b/app/components/Tooltip.js
index 7b2d68f4..9125d2e4 100644
--- a/app/components/Tooltip.js
+++ b/app/components/Tooltip.js
@@ -1,7 +1,7 @@
// @flow
+import Tippy from "@tippy.js/react";
import * as React from "react";
import styled from "styled-components";
-import Tippy from "@tippy.js/react";
type Props = {
tooltip: React.Node,
diff --git a/app/embeds/components/Frame.js b/app/embeds/components/Frame.js
index 33018c51..202637a3 100644
--- a/app/embeds/components/Frame.js
+++ b/app/embeds/components/Frame.js
@@ -1,7 +1,7 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
type Props = {
diff --git a/app/index.js b/app/index.js
index d3f71020..e45e8c73 100644
--- a/app/index.js
+++ b/app/index.js
@@ -1,14 +1,14 @@
// @flow
+import { Provider } from "mobx-react";
import * as React from "react";
import { render } from "react-dom";
-import { Provider } from "mobx-react";
import { BrowserRouter as Router } from "react-router-dom";
-import stores from "stores";
+import stores from "stores";
import ErrorBoundary from "components/ErrorBoundary";
import ScrollToTop from "components/ScrollToTop";
-import Toasts from "components/Toasts";
import Theme from "components/Theme";
+import Toasts from "components/Toasts";
import Routes from "./routes";
import env from "env";
diff --git a/app/menus/AccountMenu.js b/app/menus/AccountMenu.js
index b79f38ac..3e22a90b 100644
--- a/app/menus/AccountMenu.js
+++ b/app/menus/AccountMenu.js
@@ -1,16 +1,16 @@
// @flow
-import * as React from "react";
-import { Link } from "react-router-dom";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
import { SunIcon, MoonIcon } from "outline-icons";
+import * as React from "react";
+import { Link } from "react-router-dom";
import styled from "styled-components";
-import UiStore from "stores/UiStore";
import AuthStore from "stores/AuthStore";
-import Flex from "components/Flex";
-import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
-import Modal from "components/Modal";
+import UiStore from "stores/UiStore";
import KeyboardShortcuts from "scenes/KeyboardShortcuts";
+import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import Flex from "components/Flex";
+import Modal from "components/Modal";
import {
developers,
changelog,
diff --git a/app/menus/CollectionMenu.js b/app/menus/CollectionMenu.js
index 08f394c0..9c37344b 100644
--- a/app/menus/CollectionMenu.js
+++ b/app/menus/CollectionMenu.js
@@ -1,20 +1,20 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
+import * as React from "react";
import { withRouter, type RouterHistory } from "react-router-dom";
-import Modal from "components/Modal";
-import VisuallyHidden from "components/VisuallyHidden";
-import CollectionMembers from "scenes/CollectionMembers";
-
-import { newDocumentUrl } from "utils/routeHelpers";
-import getDataTransferFiles from "utils/getDataTransferFiles";
-import importFile from "utils/importFile";
-import Collection from "models/Collection";
-import UiStore from "stores/UiStore";
import DocumentsStore from "stores/DocumentsStore";
import PoliciesStore from "stores/PoliciesStore";
+import UiStore from "stores/UiStore";
+import Collection from "models/Collection";
+import CollectionMembers from "scenes/CollectionMembers";
+
import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import Modal from "components/Modal";
+import VisuallyHidden from "components/VisuallyHidden";
+import getDataTransferFiles from "utils/getDataTransferFiles";
+import importFile from "utils/importFile";
+import { newDocumentUrl } from "utils/routeHelpers";
type Props = {
position?: "left" | "right" | "center",
diff --git a/app/menus/DocumentMenu.js b/app/menus/DocumentMenu.js
index 2bd8a524..3b104752 100644
--- a/app/menus/DocumentMenu.js
+++ b/app/menus/DocumentMenu.js
@@ -1,17 +1,18 @@
// @flow
-import * as React from "react";
-import { Redirect } from "react-router-dom";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
+import * as React from "react";
+import { Redirect } from "react-router-dom";
-import Document from "models/Document";
-import UiStore from "stores/UiStore";
import AuthStore from "stores/AuthStore";
import CollectionStore from "stores/CollectionsStore";
import PoliciesStore from "stores/PoliciesStore";
-import Modal from "components/Modal";
+import UiStore from "stores/UiStore";
+import Document from "models/Document";
import DocumentDelete from "scenes/DocumentDelete";
import DocumentTemplatize from "scenes/DocumentTemplatize";
+import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import Modal from "components/Modal";
import {
documentUrl,
documentMoveUrl,
@@ -19,7 +20,6 @@ import {
documentHistoryUrl,
newDocumentUrl,
} from "utils/routeHelpers";
-import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
type Props = {
ui: UiStore,
diff --git a/app/menus/GroupMenu.js b/app/menus/GroupMenu.js
index d8ca5d07..233df881 100644
--- a/app/menus/GroupMenu.js
+++ b/app/menus/GroupMenu.js
@@ -1,16 +1,16 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
+import * as React from "react";
import { withRouter, type RouterHistory } from "react-router-dom";
-import Modal from "components/Modal";
-import GroupEdit from "scenes/GroupEdit";
-import GroupDelete from "scenes/GroupDelete";
-
-import Group from "models/Group";
-import UiStore from "stores/UiStore";
import PoliciesStore from "stores/PoliciesStore";
+import UiStore from "stores/UiStore";
+import Group from "models/Group";
+import GroupDelete from "scenes/GroupDelete";
+import GroupEdit from "scenes/GroupEdit";
+
import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import Modal from "components/Modal";
type Props = {
ui: UiStore,
diff --git a/app/menus/NewChildDocumentMenu.js b/app/menus/NewChildDocumentMenu.js
index 52e1c8f8..f6e25d55 100644
--- a/app/menus/NewChildDocumentMenu.js
+++ b/app/menus/NewChildDocumentMenu.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
-import { Redirect } from "react-router-dom";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
import { MoreIcon } from "outline-icons";
+import * as React from "react";
+import { Redirect } from "react-router-dom";
-import { newDocumentUrl } from "utils/routeHelpers";
-import Document from "models/Document";
import CollectionsStore from "stores/CollectionsStore";
+import Document from "models/Document";
import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import { newDocumentUrl } from "utils/routeHelpers";
type Props = {
label?: React.Node,
diff --git a/app/menus/NewDocumentMenu.js b/app/menus/NewDocumentMenu.js
index 3587cc30..a85d2520 100644
--- a/app/menus/NewDocumentMenu.js
+++ b/app/menus/NewDocumentMenu.js
@@ -1,21 +1,21 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
-import { Redirect } from "react-router-dom";
import { PlusIcon } from "outline-icons";
+import * as React from "react";
+import { Redirect } from "react-router-dom";
-import { newDocumentUrl } from "utils/routeHelpers";
import CollectionsStore from "stores/CollectionsStore";
import DocumentsStore from "stores/DocumentsStore";
import PoliciesStore from "stores/PoliciesStore";
+import Button from "components/Button";
+import CollectionIcon from "components/CollectionIcon";
import {
DropdownMenu,
DropdownMenuItem,
Header,
} from "components/DropdownMenu";
-import Button from "components/Button";
-import CollectionIcon from "components/CollectionIcon";
+import { newDocumentUrl } from "utils/routeHelpers";
type Props = {
label?: React.Node,
diff --git a/app/menus/NewTemplateMenu.js b/app/menus/NewTemplateMenu.js
index 91a21821..ed3d94a8 100644
--- a/app/menus/NewTemplateMenu.js
+++ b/app/menus/NewTemplateMenu.js
@@ -1,20 +1,20 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
-import { Redirect } from "react-router-dom";
import { PlusIcon } from "outline-icons";
+import * as React from "react";
+import { Redirect } from "react-router-dom";
-import { newDocumentUrl } from "utils/routeHelpers";
import CollectionsStore from "stores/CollectionsStore";
import PoliciesStore from "stores/PoliciesStore";
+import Button from "components/Button";
+import CollectionIcon from "components/CollectionIcon";
import {
DropdownMenu,
DropdownMenuItem,
Header,
} from "components/DropdownMenu";
-import Button from "components/Button";
-import CollectionIcon from "components/CollectionIcon";
+import { newDocumentUrl } from "utils/routeHelpers";
type Props = {
label?: React.Node,
diff --git a/app/menus/RevisionMenu.js b/app/menus/RevisionMenu.js
index e780d8ad..0f4578ee 100644
--- a/app/menus/RevisionMenu.js
+++ b/app/menus/RevisionMenu.js
@@ -1,14 +1,14 @@
// @flow
+import { inject } from "mobx-react";
import * as React from "react";
import { withRouter, type RouterHistory } from "react-router-dom";
-import { inject } from "mobx-react";
+import UiStore from "stores/UiStore";
+import Document from "models/Document";
+import Revision from "models/Revision";
import CopyToClipboard from "components/CopyToClipboard";
import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
import { documentHistoryUrl } from "utils/routeHelpers";
-import Revision from "models/Revision";
-import Document from "models/Document";
-import UiStore from "stores/UiStore";
type Props = {
onOpen?: () => void,
diff --git a/app/menus/ShareMenu.js b/app/menus/ShareMenu.js
index dd266284..406ad79e 100644
--- a/app/menus/ShareMenu.js
+++ b/app/menus/ShareMenu.js
@@ -1,14 +1,14 @@
// @flow
+import { observable } from "mobx";
+import { inject, observer } from "mobx-react";
import * as React from "react";
import { Redirect } from "react-router-dom";
-import { inject, observer } from "mobx-react";
-import { observable } from "mobx";
-import CopyToClipboard from "components/CopyToClipboard";
-import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
import SharesStore from "stores/SharesStore";
import UiStore from "stores/UiStore";
import Share from "models/Share";
+import CopyToClipboard from "components/CopyToClipboard";
+import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
type Props = {
onOpen?: () => void,
diff --git a/app/menus/TemplatesMenu.js b/app/menus/TemplatesMenu.js
index 3025396f..653ba279 100644
--- a/app/menus/TemplatesMenu.js
+++ b/app/menus/TemplatesMenu.js
@@ -1,7 +1,7 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
import { DocumentIcon } from "outline-icons";
+import * as React from "react";
import styled from "styled-components";
import DocumentsStore from "stores/DocumentsStore";
import Document from "models/Document";
diff --git a/app/menus/UserMenu.js b/app/menus/UserMenu.js
index 5b69f59a..603eae0d 100644
--- a/app/menus/UserMenu.js
+++ b/app/menus/UserMenu.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
import { inject, observer } from "mobx-react";
+import * as React from "react";
-import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
import UsersStore from "stores/UsersStore";
import User from "models/User";
+import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
type Props = {
user: User,
diff --git a/app/models/Collection.js b/app/models/Collection.js
index e6bb170c..ce9249d9 100644
--- a/app/models/Collection.js
+++ b/app/models/Collection.js
@@ -3,8 +3,8 @@ import { pick } from "lodash";
import { action, computed, observable } from "mobx";
import BaseModel from "models/BaseModel";
import Document from "models/Document";
-import { client } from "utils/ApiClient";
import type { NavigationNode } from "types";
+import { client } from "utils/ApiClient";
export default class Collection extends BaseModel {
@observable isSaving: boolean;
diff --git a/app/models/Document.js b/app/models/Document.js
index 5aac074f..6c6101a4 100644
--- a/app/models/Document.js
+++ b/app/models/Document.js
@@ -1,13 +1,13 @@
// @flow
-import { action, set, observable, computed } from "mobx";
import addDays from "date-fns/add_days";
import invariant from "invariant";
+import { action, set, observable, computed } from "mobx";
import parseTitle from "shared/utils/parseTitle";
import unescape from "shared/utils/unescape";
+import DocumentsStore from "stores/DocumentsStore";
import BaseModel from "models/BaseModel";
import Revision from "models/Revision";
import User from "models/User";
-import DocumentsStore from "stores/DocumentsStore";
type SaveOptions = {
publish?: boolean,
diff --git a/app/routes.js b/app/routes.js
index 1e224e42..8dcf0e65 100644
--- a/app/routes.js
+++ b/app/routes.js
@@ -1,34 +1,34 @@
// @flow
import * as React from "react";
import { Switch, Route, Redirect, type Match } from "react-router-dom";
-import Login from "scenes/Login";
-import Dashboard from "scenes/Dashboard";
-import Starred from "scenes/Starred";
-import Templates from "scenes/Templates";
-import Drafts from "scenes/Drafts";
import Archive from "scenes/Archive";
-import Trash from "scenes/Trash";
import Collection from "scenes/Collection";
+import Dashboard from "scenes/Dashboard";
import KeyedDocument from "scenes/Document/KeyedDocument";
import DocumentNew from "scenes/DocumentNew";
+import Drafts from "scenes/Drafts";
+import Error404 from "scenes/Error404";
+import Login from "scenes/Login";
import Search from "scenes/Search";
import Settings from "scenes/Settings";
import Details from "scenes/Settings/Details";
-import Notifications from "scenes/Settings/Notifications";
-import Security from "scenes/Settings/Security";
-import People from "scenes/Settings/People";
-import Groups from "scenes/Settings/Groups";
-import Slack from "scenes/Settings/Slack";
-import Zapier from "scenes/Settings/Zapier";
-import Shares from "scenes/Settings/Shares";
-import Tokens from "scenes/Settings/Tokens";
-import Export from "scenes/Settings/Export";
import Events from "scenes/Settings/Events";
-import Error404 from "scenes/Error404";
+import Export from "scenes/Settings/Export";
+import Groups from "scenes/Settings/Groups";
+import Notifications from "scenes/Settings/Notifications";
+import People from "scenes/Settings/People";
+import Security from "scenes/Settings/Security";
+import Shares from "scenes/Settings/Shares";
+import Slack from "scenes/Settings/Slack";
+import Tokens from "scenes/Settings/Tokens";
+import Zapier from "scenes/Settings/Zapier";
+import Starred from "scenes/Starred";
+import Templates from "scenes/Templates";
+import Trash from "scenes/Trash";
+import Authenticated from "components/Authenticated";
import Layout from "components/Layout";
import SocketProvider from "components/SocketProvider";
-import Authenticated from "components/Authenticated";
import { matchDocumentSlug as slug } from "utils/routeHelpers";
const NotFound = () => ;
diff --git a/app/scenes/Archive.js b/app/scenes/Archive.js
index c59c9f6a..78bf31dc 100644
--- a/app/scenes/Archive.js
+++ b/app/scenes/Archive.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
+import DocumentsStore from "stores/DocumentsStore";
import CenteredContent from "components/CenteredContent";
import Empty from "components/Empty";
-import PageTitle from "components/PageTitle";
import Heading from "components/Heading";
+import PageTitle from "components/PageTitle";
import PaginatedDocumentList from "components/PaginatedDocumentList";
import Subheading from "components/Subheading";
-import DocumentsStore from "stores/DocumentsStore";
type Props = {
documents: DocumentsStore,
diff --git a/app/scenes/Collection.js b/app/scenes/Collection.js
index cc417a2f..90553047 100644
--- a/app/scenes/Collection.js
+++ b/app/scenes/Collection.js
@@ -1,42 +1,42 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
-import { Redirect, Link, Switch, Route, type Match } from "react-router-dom";
-import styled, { withTheme } from "styled-components";
import { NewDocumentIcon, PlusIcon, PinIcon } from "outline-icons";
+import * as React from "react";
+import { Redirect, Link, Switch, Route, type Match } from "react-router-dom";
import RichMarkdownEditor from "rich-markdown-editor";
+import styled, { withTheme } from "styled-components";
-import { newDocumentUrl, collectionUrl } from "utils/routeHelpers";
import CollectionsStore from "stores/CollectionsStore";
import DocumentsStore from "stores/DocumentsStore";
import PoliciesStore from "stores/PoliciesStore";
import UiStore from "stores/UiStore";
import Collection from "models/Collection";
-import Search from "scenes/Search";
import CollectionEdit from "scenes/CollectionEdit";
-import CollectionMenu from "menus/CollectionMenu";
-import Actions, { Action, Separator } from "components/Actions";
-import Heading from "components/Heading";
-import Tooltip from "components/Tooltip";
-import CenteredContent from "components/CenteredContent";
-import { ListPlaceholder } from "components/LoadingPlaceholder";
-import InputSearch from "components/InputSearch";
-import Mask from "components/Mask";
-import Button from "components/Button";
-import HelpText from "components/HelpText";
-import DocumentList from "components/DocumentList";
-import Subheading from "components/Subheading";
-import PageTitle from "components/PageTitle";
-import Flex from "components/Flex";
-import Modal from "components/Modal";
import CollectionMembers from "scenes/CollectionMembers";
-import Tabs from "components/Tabs";
-import Tab from "components/Tab";
-import PaginatedDocumentList from "components/PaginatedDocumentList";
+import Search from "scenes/Search";
+import Actions, { Action, Separator } from "components/Actions";
+import Button from "components/Button";
+import CenteredContent from "components/CenteredContent";
import CollectionIcon from "components/CollectionIcon";
+import DocumentList from "components/DocumentList";
+import Flex from "components/Flex";
+import Heading from "components/Heading";
+import HelpText from "components/HelpText";
+import InputSearch from "components/InputSearch";
+import { ListPlaceholder } from "components/LoadingPlaceholder";
+import Mask from "components/Mask";
+import Modal from "components/Modal";
+import PageTitle from "components/PageTitle";
+import PaginatedDocumentList from "components/PaginatedDocumentList";
+import Subheading from "components/Subheading";
+import Tab from "components/Tab";
+import Tabs from "components/Tabs";
+import Tooltip from "components/Tooltip";
+import CollectionMenu from "menus/CollectionMenu";
+import { newDocumentUrl, collectionUrl } from "utils/routeHelpers";
type Props = {
ui: UiStore,
diff --git a/app/scenes/CollectionDelete.js b/app/scenes/CollectionDelete.js
index c1c7f838..62e9bb4c 100644
--- a/app/scenes/CollectionDelete.js
+++ b/app/scenes/CollectionDelete.js
@@ -1,15 +1,15 @@
// @flow
-import * as React from "react";
-import { withRouter, type RouterHistory } from "react-router-dom";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
-import { homeUrl } from "utils/routeHelpers";
+import * as React from "react";
+import { withRouter, type RouterHistory } from "react-router-dom";
+import CollectionsStore from "stores/CollectionsStore";
+import UiStore from "stores/UiStore";
+import Collection from "models/Collection";
import Button from "components/Button";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
-import Collection from "models/Collection";
-import CollectionsStore from "stores/CollectionsStore";
-import UiStore from "stores/UiStore";
+import { homeUrl } from "utils/routeHelpers";
type Props = {
history: RouterHistory,
diff --git a/app/scenes/CollectionEdit.js b/app/scenes/CollectionEdit.js
index ece7df17..f44e739e 100644
--- a/app/scenes/CollectionEdit.js
+++ b/app/scenes/CollectionEdit.js
@@ -1,16 +1,16 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
-import Input from "components/Input";
-import InputRich from "components/InputRich";
+import * as React from "react";
+import UiStore from "stores/UiStore";
+import Collection from "models/Collection";
import Button from "components/Button";
-import Switch from "components/Switch";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
import IconPicker from "components/IconPicker";
-import Collection from "models/Collection";
-import UiStore from "stores/UiStore";
+import Input from "components/Input";
+import InputRich from "components/InputRich";
+import Switch from "components/Switch";
type Props = {
collection: Collection,
diff --git a/app/scenes/CollectionExport.js b/app/scenes/CollectionExport.js
index c949d601..e2b14abf 100644
--- a/app/scenes/CollectionExport.js
+++ b/app/scenes/CollectionExport.js
@@ -1,13 +1,13 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
+import * as React from "react";
+import AuthStore from "stores/AuthStore";
+import UiStore from "stores/UiStore";
+import Collection from "models/Collection";
import Button from "components/Button";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
-import Collection from "models/Collection";
-import AuthStore from "stores/AuthStore";
-import UiStore from "stores/UiStore";
type Props = {
collection: Collection,
diff --git a/app/scenes/CollectionMembers/AddGroupsToCollection.js b/app/scenes/CollectionMembers/AddGroupsToCollection.js
index 38931418..604fc103 100644
--- a/app/scenes/CollectionMembers/AddGroupsToCollection.js
+++ b/app/scenes/CollectionMembers/AddGroupsToCollection.js
@@ -1,23 +1,23 @@
// @flow
+import { debounce } from "lodash";
+import { observable } from "mobx";
+import { inject, observer } from "mobx-react";
import * as React from "react";
import styled from "styled-components";
-import { inject, observer } from "mobx-react";
-import { observable } from "mobx";
-import { debounce } from "lodash";
+import AuthStore from "stores/AuthStore";
+import CollectionGroupMembershipsStore from "stores/CollectionGroupMembershipsStore";
+import GroupsStore from "stores/GroupsStore";
+import UiStore from "stores/UiStore";
+import Collection from "models/Collection";
+import GroupNew from "scenes/GroupNew";
import Button from "components/Button";
+import Empty from "components/Empty";
import Flex from "components/Flex";
+import GroupListItem from "components/GroupListItem";
import HelpText from "components/HelpText";
import Input from "components/Input";
import Modal from "components/Modal";
-import Empty from "components/Empty";
import PaginatedList from "components/PaginatedList";
-import GroupNew from "scenes/GroupNew";
-import Collection from "models/Collection";
-import UiStore from "stores/UiStore";
-import AuthStore from "stores/AuthStore";
-import GroupsStore from "stores/GroupsStore";
-import CollectionGroupMembershipsStore from "stores/CollectionGroupMembershipsStore";
-import GroupListItem from "components/GroupListItem";
type Props = {
ui: UiStore,
diff --git a/app/scenes/CollectionMembers/AddPeopleToCollection.js b/app/scenes/CollectionMembers/AddPeopleToCollection.js
index e82d1838..50afbe6f 100644
--- a/app/scenes/CollectionMembers/AddPeopleToCollection.js
+++ b/app/scenes/CollectionMembers/AddPeopleToCollection.js
@@ -1,20 +1,20 @@
// @flow
-import * as React from "react";
-import { inject, observer } from "mobx-react";
-import { observable } from "mobx";
import { debounce } from "lodash";
+import { observable } from "mobx";
+import { inject, observer } from "mobx-react";
+import * as React from "react";
+import AuthStore from "stores/AuthStore";
+import MembershipsStore from "stores/MembershipsStore";
+import UiStore from "stores/UiStore";
+import UsersStore from "stores/UsersStore";
+import Collection from "models/Collection";
+import Invite from "scenes/Invite";
+import Empty from "components/Empty";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
import Input from "components/Input";
import Modal from "components/Modal";
-import Empty from "components/Empty";
import PaginatedList from "components/PaginatedList";
-import Invite from "scenes/Invite";
-import Collection from "models/Collection";
-import UiStore from "stores/UiStore";
-import AuthStore from "stores/AuthStore";
-import UsersStore from "stores/UsersStore";
-import MembershipsStore from "stores/MembershipsStore";
import MemberListItem from "./components/MemberListItem";
type Props = {
diff --git a/app/scenes/CollectionMembers/CollectionMembers.js b/app/scenes/CollectionMembers/CollectionMembers.js
index 39f05f91..1af82d49 100644
--- a/app/scenes/CollectionMembers/CollectionMembers.js
+++ b/app/scenes/CollectionMembers/CollectionMembers.js
@@ -1,27 +1,27 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
-import styled from "styled-components";
import { inject, observer } from "mobx-react";
import { PlusIcon } from "outline-icons";
-import Flex from "components/Flex";
-import HelpText from "components/HelpText";
-import Subheading from "components/Subheading";
+import * as React from "react";
+import styled from "styled-components";
+import AuthStore from "stores/AuthStore";
+import CollectionGroupMembershipsStore from "stores/CollectionGroupMembershipsStore";
+import GroupsStore from "stores/GroupsStore";
+import MembershipsStore from "stores/MembershipsStore";
+import UiStore from "stores/UiStore";
+import UsersStore from "stores/UsersStore";
+import Collection from "models/Collection";
import Button from "components/Button";
import Empty from "components/Empty";
-import PaginatedList from "components/PaginatedList";
+import Flex from "components/Flex";
+import HelpText from "components/HelpText";
import Modal from "components/Modal";
-import CollectionGroupMemberListItem from "./components/CollectionGroupMemberListItem";
-import Collection from "models/Collection";
-import UiStore from "stores/UiStore";
-import AuthStore from "stores/AuthStore";
-import MembershipsStore from "stores/MembershipsStore";
-import CollectionGroupMembershipsStore from "stores/CollectionGroupMembershipsStore";
-import UsersStore from "stores/UsersStore";
-import MemberListItem from "./components/MemberListItem";
-import AddPeopleToCollection from "./AddPeopleToCollection";
+import PaginatedList from "components/PaginatedList";
+import Subheading from "components/Subheading";
import AddGroupsToCollection from "./AddGroupsToCollection";
-import GroupsStore from "stores/GroupsStore";
+import AddPeopleToCollection from "./AddPeopleToCollection";
+import CollectionGroupMemberListItem from "./components/CollectionGroupMemberListItem";
+import MemberListItem from "./components/MemberListItem";
type Props = {
ui: UiStore,
diff --git a/app/scenes/CollectionMembers/components/CollectionGroupMemberListItem.js b/app/scenes/CollectionMembers/components/CollectionGroupMemberListItem.js
index d5e7f28b..a533c405 100644
--- a/app/scenes/CollectionMembers/components/CollectionGroupMemberListItem.js
+++ b/app/scenes/CollectionMembers/components/CollectionGroupMemberListItem.js
@@ -1,11 +1,11 @@
// @flow
import * as React from "react";
import styled from "styled-components";
-import InputSelect from "components/InputSelect";
-import GroupListItem from "components/GroupListItem";
-import Group from "models/Group";
import CollectionGroupMembership from "models/CollectionGroupMembership";
+import Group from "models/Group";
import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import GroupListItem from "components/GroupListItem";
+import InputSelect from "components/InputSelect";
const PERMISSIONS = [
{ label: "Read only", value: "read" },
diff --git a/app/scenes/CollectionMembers/components/MemberListItem.js b/app/scenes/CollectionMembers/components/MemberListItem.js
index a44abcbf..7677e506 100644
--- a/app/scenes/CollectionMembers/components/MemberListItem.js
+++ b/app/scenes/CollectionMembers/components/MemberListItem.js
@@ -1,16 +1,16 @@
// @flow
import * as React from "react";
import styled from "styled-components";
+import Membership from "models/Membership";
+import User from "models/User";
import Avatar from "components/Avatar";
-import Flex from "components/Flex";
-import Time from "components/Time";
import Badge from "components/Badge";
import Button from "components/Button";
+import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import Flex from "components/Flex";
import InputSelect from "components/InputSelect";
import ListItem from "components/List/Item";
-import User from "models/User";
-import Membership from "models/Membership";
-import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import Time from "components/Time";
const PERMISSIONS = [
{ label: "Read only", value: "read" },
diff --git a/app/scenes/CollectionMembers/components/UserListItem.js b/app/scenes/CollectionMembers/components/UserListItem.js
index b729b5d1..df313cac 100644
--- a/app/scenes/CollectionMembers/components/UserListItem.js
+++ b/app/scenes/CollectionMembers/components/UserListItem.js
@@ -1,12 +1,12 @@
// @flow
-import * as React from "react";
import { PlusIcon } from "outline-icons";
-import Time from "components/Time";
-import Avatar from "components/Avatar";
-import Button from "components/Button";
-import Badge from "components/Badge";
-import ListItem from "components/List/Item";
+import * as React from "react";
import User from "models/User";
+import Avatar from "components/Avatar";
+import Badge from "components/Badge";
+import Button from "components/Button";
+import ListItem from "components/List/Item";
+import Time from "components/Time";
type Props = {
user: User,
diff --git a/app/scenes/CollectionNew.js b/app/scenes/CollectionNew.js
index 07f748e6..872709cf 100644
--- a/app/scenes/CollectionNew.js
+++ b/app/scenes/CollectionNew.js
@@ -1,20 +1,19 @@
// @flow
-import * as React from "react";
-import { withRouter, type RouterHistory } from "react-router-dom";
+import { intersection } from "lodash";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
-import { intersection } from "lodash";
-import Button from "components/Button";
-import Switch from "components/Switch";
-import Input from "components/Input";
-import InputRich from "components/InputRich";
-import IconPicker, { icons } from "components/IconPicker";
-import HelpText from "components/HelpText";
-import Flex from "components/Flex";
-
-import Collection from "models/Collection";
+import * as React from "react";
+import { withRouter, type RouterHistory } from "react-router-dom";
import CollectionsStore from "stores/CollectionsStore";
import UiStore from "stores/UiStore";
+import Collection from "models/Collection";
+import Button from "components/Button";
+import Flex from "components/Flex";
+import HelpText from "components/HelpText";
+import IconPicker, { icons } from "components/IconPicker";
+import Input from "components/Input";
+import InputRich from "components/InputRich";
+import Switch from "components/Switch";
type Props = {
history: RouterHistory,
diff --git a/app/scenes/Dashboard.js b/app/scenes/Dashboard.js
index c798b983..44d82d06 100644
--- a/app/scenes/Dashboard.js
+++ b/app/scenes/Dashboard.js
@@ -1,18 +1,18 @@
// @flow
+import { observer, inject } from "mobx-react";
import * as React from "react";
import { Switch, Route } from "react-router-dom";
-import { observer, inject } from "mobx-react";
-import DocumentsStore from "stores/DocumentsStore";
import AuthStore from "stores/AuthStore";
-import NewDocumentMenu from "menus/NewDocumentMenu";
+import DocumentsStore from "stores/DocumentsStore";
import Actions, { Action } from "components/Actions";
-import InputSearch from "components/InputSearch";
import CenteredContent from "components/CenteredContent";
+import InputSearch from "components/InputSearch";
import PageTitle from "components/PageTitle";
-import Tabs from "components/Tabs";
import Tab from "components/Tab";
+import Tabs from "components/Tabs";
import PaginatedDocumentList from "../components/PaginatedDocumentList";
+import NewDocumentMenu from "menus/NewDocumentMenu";
type Props = {
documents: DocumentsStore,
diff --git a/app/scenes/Document/KeyedDocument.js b/app/scenes/Document/KeyedDocument.js
index bdcf554a..aefd1a78 100644
--- a/app/scenes/Document/KeyedDocument.js
+++ b/app/scenes/Document/KeyedDocument.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { inject } from "mobx-react";
+import * as React from "react";
import DataLoader from "./components/DataLoader";
class KeyedDocument extends React.Component<*> {
diff --git a/app/scenes/Document/components/Contents.js b/app/scenes/Document/components/Contents.js
index 99c22118..22f696fb 100644
--- a/app/scenes/Document/components/Contents.js
+++ b/app/scenes/Document/components/Contents.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
-import { darken } from "polished";
-import breakpoint from "styled-components-breakpoint";
import useWindowScrollPosition from "@rehooks/window-scroll-position";
-import HelpText from "components/HelpText";
+import { darken } from "polished";
+import * as React from "react";
import styled from "styled-components";
+import breakpoint from "styled-components-breakpoint";
+import HelpText from "components/HelpText";
const HEADING_OFFSET = 20;
diff --git a/app/scenes/Document/components/DataLoader.js b/app/scenes/Document/components/DataLoader.js
index 1c1bc792..af91b3d1 100644
--- a/app/scenes/Document/components/DataLoader.js
+++ b/app/scenes/Document/components/DataLoader.js
@@ -1,25 +1,25 @@
// @flow
-import * as React from "react";
import invariant from "invariant";
-import { withRouter } from "react-router-dom";
-import type { Location, RouterHistory, Match } from "react-router-dom";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
-import { matchDocumentEdit, updateDocumentUrl } from "utils/routeHelpers";
-import { NotFoundError, OfflineError } from "utils/errors";
-import DocumentComponent from "./Document";
-import Revision from "models/Revision";
-import Document from "models/Document";
-import SocketPresence from "./SocketPresence";
-import Loading from "./Loading";
-import HideSidebar from "./HideSidebar";
-import Error404 from "scenes/Error404";
-import ErrorOffline from "scenes/ErrorOffline";
+import * as React from "react";
+import type { Location, RouterHistory, Match } from "react-router-dom";
+import { withRouter } from "react-router-dom";
import DocumentsStore from "stores/DocumentsStore";
-import SharesStore from "stores/SharesStore";
import PoliciesStore from "stores/PoliciesStore";
import RevisionsStore from "stores/RevisionsStore";
+import SharesStore from "stores/SharesStore";
import UiStore from "stores/UiStore";
+import Document from "models/Document";
+import Revision from "models/Revision";
+import Error404 from "scenes/Error404";
+import ErrorOffline from "scenes/ErrorOffline";
+import DocumentComponent from "./Document";
+import HideSidebar from "./HideSidebar";
+import Loading from "./Loading";
+import SocketPresence from "./SocketPresence";
+import { NotFoundError, OfflineError } from "utils/errors";
+import { matchDocumentEdit, updateDocumentUrl } from "utils/routeHelpers";
type Props = {|
match: Match,
diff --git a/app/scenes/Document/components/Document.js b/app/scenes/Document/components/Document.js
index bf8f36fd..364537ac 100644
--- a/app/scenes/Document/components/Document.js
+++ b/app/scenes/Document/components/Document.js
@@ -1,15 +1,35 @@
// @flow
-import * as React from "react";
import { debounce } from "lodash";
-import styled, { withTheme } from "styled-components";
-import breakpoint from "styled-components-breakpoint";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
+import { InputIcon } from "outline-icons";
+import * as React from "react";
+import keydown from "react-keydown";
import { Prompt, Route, withRouter } from "react-router-dom";
import type { Location, RouterHistory, Match } from "react-router-dom";
-import keydown from "react-keydown";
-import { InputIcon } from "outline-icons";
+import styled, { withTheme } from "styled-components";
+import breakpoint from "styled-components-breakpoint";
+
+import AuthStore from "stores/AuthStore";
+import UiStore from "stores/UiStore";
+import Document from "models/Document";
+import Revision from "models/Revision";
+import Branding from "components/Branding";
+import ErrorBoundary from "components/ErrorBoundary";
import Flex from "components/Flex";
+import LoadingIndicator from "components/LoadingIndicator";
+import Notice from "components/Notice";
+import PageTitle from "components/PageTitle";
+import Time from "components/Time";
+import Container from "./Container";
+import Contents from "./Contents";
+import DocumentMove from "./DocumentMove";
+import Header from "./Header";
+import KeyboardShortcutsButton from "./KeyboardShortcutsButton";
+import Loading from "./Loading";
+import MarkAsViewed from "./MarkAsViewed";
+import References from "./References";
+import { emojiToUrl } from "utils/emoji";
import {
collectionUrl,
documentMoveUrl,
@@ -17,27 +37,6 @@ import {
editDocumentUrl,
documentUrl,
} from "utils/routeHelpers";
-import { emojiToUrl } from "utils/emoji";
-
-import Header from "./Header";
-import DocumentMove from "./DocumentMove";
-import KeyboardShortcutsButton from "./KeyboardShortcutsButton";
-import References from "./References";
-import Loading from "./Loading";
-import Container from "./Container";
-import Contents from "./Contents";
-import MarkAsViewed from "./MarkAsViewed";
-import ErrorBoundary from "components/ErrorBoundary";
-import LoadingIndicator from "components/LoadingIndicator";
-import PageTitle from "components/PageTitle";
-import Branding from "components/Branding";
-import Notice from "components/Notice";
-import Time from "components/Time";
-
-import UiStore from "stores/UiStore";
-import AuthStore from "stores/AuthStore";
-import Document from "models/Document";
-import Revision from "models/Revision";
let EditorImport;
const AUTOSAVE_DELAY = 3000;
diff --git a/app/scenes/Document/components/DocumentMove.js b/app/scenes/Document/components/DocumentMove.js
index d4c1e16f..800674b6 100644
--- a/app/scenes/Document/components/DocumentMove.js
+++ b/app/scenes/Document/components/DocumentMove.js
@@ -1,23 +1,22 @@
// @flow
-import * as React from "react";
-import ReactDOM from "react-dom";
-import { observable, computed } from "mobx";
-import { observer, inject } from "mobx-react";
+import ArrowKeyNavigation from "boundless-arrow-key-navigation";
import { Search } from "js-search";
import { last } from "lodash";
-import ArrowKeyNavigation from "boundless-arrow-key-navigation";
+import { observable, computed } from "mobx";
+import { observer, inject } from "mobx-react";
+import * as React from "react";
+import ReactDOM from "react-dom";
import styled from "styled-components";
-import Modal from "components/Modal";
-import Input from "components/Input";
-import Labeled from "components/Labeled";
-import PathToDocument from "components/PathToDocument";
-import Flex from "components/Flex";
-
-import Document from "models/Document";
+import CollectionsStore, { type DocumentPath } from "stores/CollectionsStore";
import DocumentsStore from "stores/DocumentsStore";
import UiStore from "stores/UiStore";
-import CollectionsStore, { type DocumentPath } from "stores/CollectionsStore";
+import Document from "models/Document";
+import Flex from "components/Flex";
+import Input from "components/Input";
+import Labeled from "components/Labeled";
+import Modal from "components/Modal";
+import PathToDocument from "components/PathToDocument";
const MAX_RESULTS = 8;
diff --git a/app/scenes/Document/components/Editor.js b/app/scenes/Document/components/Editor.js
index 394e72b9..d21baddb 100644
--- a/app/scenes/Document/components/Editor.js
+++ b/app/scenes/Document/components/Editor.js
@@ -1,16 +1,16 @@
// @flow
-import * as React from "react";
-import styled from "styled-components";
-import Textarea from "react-autosize-textarea";
import { observable } from "mobx";
import { observer } from "mobx-react";
-import Editor from "components/Editor";
-import ClickablePadding from "components/ClickablePadding";
-import Flex from "components/Flex";
-import HoverPreview from "components/HoverPreview";
+import * as React from "react";
+import Textarea from "react-autosize-textarea";
+import styled from "styled-components";
import parseTitle from "shared/utils/parseTitle";
import Document from "models/Document";
+import ClickablePadding from "components/ClickablePadding";
import DocumentMeta from "components/DocumentMeta";
+import Editor from "components/Editor";
+import Flex from "components/Flex";
+import HoverPreview from "components/HoverPreview";
type Props = {
onChangeTitle: (event: SyntheticInputEvent<>) => void,
diff --git a/app/scenes/Document/components/Header.js b/app/scenes/Document/components/Header.js
index 529a2a87..d51a0e9d 100644
--- a/app/scenes/Document/components/Header.js
+++ b/app/scenes/Document/components/Header.js
@@ -1,11 +1,7 @@
// @flow
-import * as React from "react";
import { throttle } from "lodash";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
-import { Redirect } from "react-router-dom";
-import styled from "styled-components";
-import breakpoint from "styled-components-breakpoint";
import {
TableOfContentsIcon,
EditIcon,
@@ -13,27 +9,31 @@ import {
PlusIcon,
} from "outline-icons";
import { transparentize, darken } from "polished";
-import Document from "models/Document";
+import * as React from "react";
+import { Redirect } from "react-router-dom";
+import styled from "styled-components";
+import breakpoint from "styled-components-breakpoint";
import AuthStore from "stores/AuthStore";
-import { newDocumentUrl, editDocumentUrl } from "utils/routeHelpers";
-import { meta } from "utils/keyboard";
-
-import Flex from "components/Flex";
-import Breadcrumb, { Slash } from "components/Breadcrumb";
-import TemplatesMenu from "menus/TemplatesMenu";
-import DocumentMenu from "menus/DocumentMenu";
-import NewChildDocumentMenu from "menus/NewChildDocumentMenu";
-import DocumentShare from "scenes/DocumentShare";
-import Button from "components/Button";
-import Tooltip from "components/Tooltip";
-import Modal from "components/Modal";
-import Fade from "components/Fade";
-import Badge from "components/Badge";
-import Collaborators from "components/Collaborators";
-import { Action, Separator } from "components/Actions";
import PoliciesStore from "stores/PoliciesStore";
import SharesStore from "stores/SharesStore";
import UiStore from "stores/UiStore";
+import Document from "models/Document";
+
+import DocumentShare from "scenes/DocumentShare";
+import { Action, Separator } from "components/Actions";
+import Badge from "components/Badge";
+import Breadcrumb, { Slash } from "components/Breadcrumb";
+import Button from "components/Button";
+import Collaborators from "components/Collaborators";
+import Fade from "components/Fade";
+import Flex from "components/Flex";
+import Modal from "components/Modal";
+import Tooltip from "components/Tooltip";
+import DocumentMenu from "menus/DocumentMenu";
+import NewChildDocumentMenu from "menus/NewChildDocumentMenu";
+import TemplatesMenu from "menus/TemplatesMenu";
+import { meta } from "utils/keyboard";
+import { newDocumentUrl, editDocumentUrl } from "utils/routeHelpers";
type Props = {
auth: AuthStore,
diff --git a/app/scenes/Document/components/KeyboardShortcutsButton.js b/app/scenes/Document/components/KeyboardShortcutsButton.js
index 0647711b..2b5a1c8e 100644
--- a/app/scenes/Document/components/KeyboardShortcutsButton.js
+++ b/app/scenes/Document/components/KeyboardShortcutsButton.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
-import styled from "styled-components";
-import breakpoint from "styled-components-breakpoint";
import { observable } from "mobx";
import { observer } from "mobx-react";
import { KeyboardIcon } from "outline-icons";
-import Modal from "components/Modal";
-import Tooltip from "components/Tooltip";
-import NudeButton from "components/NudeButton";
+import * as React from "react";
+import styled from "styled-components";
+import breakpoint from "styled-components-breakpoint";
import KeyboardShortcuts from "scenes/KeyboardShortcuts";
+import Modal from "components/Modal";
+import NudeButton from "components/NudeButton";
+import Tooltip from "components/Tooltip";
type Props = {};
diff --git a/app/scenes/Document/components/Loading.js b/app/scenes/Document/components/Loading.js
index a717215c..2b000562 100644
--- a/app/scenes/Document/components/Loading.js
+++ b/app/scenes/Document/components/Loading.js
@@ -1,10 +1,10 @@
// @flow
import * as React from "react";
import type { Location } from "react-router-dom";
-import Container from "./Container";
-import LoadingPlaceholder from "components/LoadingPlaceholder";
import CenteredContent from "components/CenteredContent";
+import LoadingPlaceholder from "components/LoadingPlaceholder";
import PageTitle from "components/PageTitle";
+import Container from "./Container";
type Props = {|
location: Location,
diff --git a/app/scenes/Document/components/ReferenceListItem.js b/app/scenes/Document/components/ReferenceListItem.js
index 043dd07e..5e600ca2 100644
--- a/app/scenes/Document/components/ReferenceListItem.js
+++ b/app/scenes/Document/components/ReferenceListItem.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
import { observer } from "mobx-react";
+import * as React from "react";
import { Link } from "react-router-dom";
import styled from "styled-components";
-import PublishingInfo from "components/PublishingInfo";
import Document from "models/Document";
+import PublishingInfo from "components/PublishingInfo";
import type { NavigationNode } from "types";
type Props = {
diff --git a/app/scenes/Document/components/References.js b/app/scenes/Document/components/References.js
index 92d72f89..cb1b0f20 100644
--- a/app/scenes/Document/components/References.js
+++ b/app/scenes/Document/components/References.js
@@ -1,13 +1,13 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import { withRouter, type Location } from "react-router-dom";
-import Fade from "components/Fade";
-import Tabs from "components/Tabs";
-import Tab from "components/Tab";
-import DocumentsStore from "stores/DocumentsStore";
import CollectionsStore from "stores/CollectionsStore";
+import DocumentsStore from "stores/DocumentsStore";
import Document from "models/Document";
+import Fade from "components/Fade";
+import Tab from "components/Tab";
+import Tabs from "components/Tabs";
import ReferenceListItem from "./ReferenceListItem";
type Props = {
diff --git a/app/scenes/Document/components/SocketPresence.js b/app/scenes/Document/components/SocketPresence.js
index 483a55f6..fe077cb3 100644
--- a/app/scenes/Document/components/SocketPresence.js
+++ b/app/scenes/Document/components/SocketPresence.js
@@ -1,7 +1,7 @@
// @flow
import * as React from "react";
-import { SocketContext } from "components/SocketProvider";
import { USER_PRESENCE_INTERVAL } from "shared/constants";
+import { SocketContext } from "components/SocketProvider";
type Props = {
children?: React.Node,
diff --git a/app/scenes/DocumentDelete.js b/app/scenes/DocumentDelete.js
index 9c23d56d..d375f17e 100644
--- a/app/scenes/DocumentDelete.js
+++ b/app/scenes/DocumentDelete.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
-import { withRouter, type RouterHistory } from "react-router-dom";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
+import * as React from "react";
+import { withRouter, type RouterHistory } from "react-router-dom";
+import DocumentsStore from "stores/DocumentsStore";
+import UiStore from "stores/UiStore";
+import Document from "models/Document";
import Button from "components/Button";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
-import Document from "models/Document";
-import DocumentsStore from "stores/DocumentsStore";
-import UiStore from "stores/UiStore";
import { collectionUrl } from "utils/routeHelpers";
type Props = {
diff --git a/app/scenes/DocumentNew.js b/app/scenes/DocumentNew.js
index 4bcf3b94..92feebb6 100644
--- a/app/scenes/DocumentNew.js
+++ b/app/scenes/DocumentNew.js
@@ -1,17 +1,17 @@
// @flow
-import * as React from "react";
import { inject } from "mobx-react";
import queryString from "query-string";
+import * as React from "react";
import {
type RouterHistory,
type Location,
type Match,
} from "react-router-dom";
-import Flex from "components/Flex";
-import CenteredContent from "components/CenteredContent";
-import LoadingPlaceholder from "components/LoadingPlaceholder";
import DocumentsStore from "stores/DocumentsStore";
import UiStore from "stores/UiStore";
+import CenteredContent from "components/CenteredContent";
+import Flex from "components/Flex";
+import LoadingPlaceholder from "components/LoadingPlaceholder";
import { editDocumentUrl } from "utils/routeHelpers";
type Props = {
diff --git a/app/scenes/DocumentShare.js b/app/scenes/DocumentShare.js
index 215c1e2c..820adea9 100644
--- a/app/scenes/DocumentShare.js
+++ b/app/scenes/DocumentShare.js
@@ -1,21 +1,21 @@
// @flow
-import * as React from "react";
+import invariant from "invariant";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
import { GlobeIcon, PadlockIcon } from "outline-icons";
-import styled from "styled-components";
-import invariant from "invariant";
+import * as React from "react";
import { Link } from "react-router-dom";
-import Input from "components/Input";
-import Button from "components/Button";
-import Flex from "components/Flex";
-import Switch from "components/Switch";
-import CopyToClipboard from "components/CopyToClipboard";
-import HelpText from "components/HelpText";
-import Document from "models/Document";
+import styled from "styled-components";
+import PoliciesStore from "stores/PoliciesStore";
import SharesStore from "stores/SharesStore";
import UiStore from "stores/UiStore";
-import PoliciesStore from "stores/PoliciesStore";
+import Document from "models/Document";
+import Button from "components/Button";
+import CopyToClipboard from "components/CopyToClipboard";
+import Flex from "components/Flex";
+import HelpText from "components/HelpText";
+import Input from "components/Input";
+import Switch from "components/Switch";
type Props = {
document: Document,
diff --git a/app/scenes/DocumentTemplatize.js b/app/scenes/DocumentTemplatize.js
index 19a849d8..66cb53d1 100644
--- a/app/scenes/DocumentTemplatize.js
+++ b/app/scenes/DocumentTemplatize.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
+import * as React from "react";
import { withRouter, type RouterHistory } from "react-router-dom";
-import { documentUrl } from "utils/routeHelpers";
+import UiStore from "stores/UiStore";
+import Document from "models/Document";
import Button from "components/Button";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
-import Document from "models/Document";
-import UiStore from "stores/UiStore";
+import { documentUrl } from "utils/routeHelpers";
type Props = {
ui: UiStore,
diff --git a/app/scenes/Drafts.js b/app/scenes/Drafts.js
index 7914275c..f514f0a1 100644
--- a/app/scenes/Drafts.js
+++ b/app/scenes/Drafts.js
@@ -1,17 +1,17 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
-import Heading from "components/Heading";
+import DocumentsStore from "stores/DocumentsStore";
+import Actions, { Action } from "components/Actions";
import CenteredContent from "components/CenteredContent";
import Empty from "components/Empty";
+import Heading from "components/Heading";
+import InputSearch from "components/InputSearch";
import PageTitle from "components/PageTitle";
import PaginatedDocumentList from "components/PaginatedDocumentList";
import Subheading from "components/Subheading";
-import InputSearch from "components/InputSearch";
import NewDocumentMenu from "menus/NewDocumentMenu";
-import Actions, { Action } from "components/Actions";
-import DocumentsStore from "stores/DocumentsStore";
type Props = {
documents: DocumentsStore,
diff --git a/app/scenes/Error404.js b/app/scenes/Error404.js
index 83378a5d..f4f30847 100644
--- a/app/scenes/Error404.js
+++ b/app/scenes/Error404.js
@@ -1,8 +1,8 @@
// @flow
import * as React from "react";
import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
import Empty from "components/Empty";
+import PageTitle from "components/PageTitle";
const Error404 = () => {
return (
diff --git a/app/scenes/ErrorOffline.js b/app/scenes/ErrorOffline.js
index f40ac5f4..7b7f3eb4 100644
--- a/app/scenes/ErrorOffline.js
+++ b/app/scenes/ErrorOffline.js
@@ -1,8 +1,8 @@
// @flow
import * as React from "react";
import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
import Empty from "components/Empty";
+import PageTitle from "components/PageTitle";
const ErrorOffline = () => {
return (
diff --git a/app/scenes/ErrorSuspended.js b/app/scenes/ErrorSuspended.js
index 009d9cd1..f3a2c596 100644
--- a/app/scenes/ErrorSuspended.js
+++ b/app/scenes/ErrorSuspended.js
@@ -1,10 +1,10 @@
// @flow
-import * as React from "react";
import { inject, observer } from "mobx-react";
+import * as React from "react";
+import AuthStore from "stores/AuthStore";
import CenteredContent from "components/CenteredContent";
import PageTitle from "components/PageTitle";
-import AuthStore from "stores/AuthStore";
const ErrorSuspended = observer(({ auth }: { auth: AuthStore }) => {
return (
diff --git a/app/scenes/GroupDelete.js b/app/scenes/GroupDelete.js
index 83ec112a..b3f1f0bf 100644
--- a/app/scenes/GroupDelete.js
+++ b/app/scenes/GroupDelete.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
-import { withRouter, type RouterHistory } from "react-router-dom";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
+import * as React from "react";
+import { withRouter, type RouterHistory } from "react-router-dom";
import { groupSettings } from "shared/utils/routeHelpers";
+import UiStore from "stores/UiStore";
+import Group from "models/Group";
import Button from "components/Button";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
-import Group from "models/Group";
-import UiStore from "stores/UiStore";
type Props = {
history: RouterHistory,
diff --git a/app/scenes/GroupEdit.js b/app/scenes/GroupEdit.js
index 9f3c40aa..0d15209f 100644
--- a/app/scenes/GroupEdit.js
+++ b/app/scenes/GroupEdit.js
@@ -1,15 +1,14 @@
// @flow
-import * as React from "react";
-import { withRouter, type RouterHistory } from "react-router-dom";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
-import Button from "components/Button";
-import Input from "components/Input";
-import HelpText from "components/HelpText";
-import Flex from "components/Flex";
-
-import Group from "models/Group";
+import * as React from "react";
+import { withRouter, type RouterHistory } from "react-router-dom";
import UiStore from "stores/UiStore";
+import Group from "models/Group";
+import Button from "components/Button";
+import Flex from "components/Flex";
+import HelpText from "components/HelpText";
+import Input from "components/Input";
type Props = {
history: RouterHistory,
diff --git a/app/scenes/GroupMembers/AddPeopleToGroup.js b/app/scenes/GroupMembers/AddPeopleToGroup.js
index d879d5a1..8d83edfe 100644
--- a/app/scenes/GroupMembers/AddPeopleToGroup.js
+++ b/app/scenes/GroupMembers/AddPeopleToGroup.js
@@ -1,20 +1,20 @@
// @flow
-import * as React from "react";
-import { inject, observer } from "mobx-react";
-import { observable } from "mobx";
import { debounce } from "lodash";
+import { observable } from "mobx";
+import { inject, observer } from "mobx-react";
+import * as React from "react";
+import AuthStore from "stores/AuthStore";
+import GroupMembershipsStore from "stores/GroupMembershipsStore";
+import UiStore from "stores/UiStore";
+import UsersStore from "stores/UsersStore";
+import Group from "models/Group";
+import Invite from "scenes/Invite";
+import Empty from "components/Empty";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
import Input from "components/Input";
import Modal from "components/Modal";
-import Empty from "components/Empty";
import PaginatedList from "components/PaginatedList";
-import Invite from "scenes/Invite";
-import Group from "models/Group";
-import UiStore from "stores/UiStore";
-import AuthStore from "stores/AuthStore";
-import UsersStore from "stores/UsersStore";
-import GroupMembershipsStore from "stores/GroupMembershipsStore";
import GroupMemberListItem from "./components/GroupMemberListItem";
type Props = {
diff --git a/app/scenes/GroupMembers/GroupMembers.js b/app/scenes/GroupMembers/GroupMembers.js
index 0bdaf77d..f51b4069 100644
--- a/app/scenes/GroupMembers/GroupMembers.js
+++ b/app/scenes/GroupMembers/GroupMembers.js
@@ -1,23 +1,23 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
import { PlusIcon } from "outline-icons";
-import Flex from "components/Flex";
-import Empty from "components/Empty";
-import HelpText from "components/HelpText";
-import Subheading from "components/Subheading";
-import Button from "components/Button";
-import PaginatedList from "components/PaginatedList";
-import Modal from "components/Modal";
-import Group from "models/Group";
-import UiStore from "stores/UiStore";
+import * as React from "react";
import AuthStore from "stores/AuthStore";
import GroupMembershipsStore from "stores/GroupMembershipsStore";
-import UsersStore from "stores/UsersStore";
import PoliciesStore from "stores/PoliciesStore";
-import GroupMemberListItem from "./components/GroupMemberListItem";
+import UiStore from "stores/UiStore";
+import UsersStore from "stores/UsersStore";
+import Group from "models/Group";
+import Button from "components/Button";
+import Empty from "components/Empty";
+import Flex from "components/Flex";
+import HelpText from "components/HelpText";
+import Modal from "components/Modal";
+import PaginatedList from "components/PaginatedList";
+import Subheading from "components/Subheading";
import AddPeopleToGroup from "./AddPeopleToGroup";
+import GroupMemberListItem from "./components/GroupMemberListItem";
type Props = {
ui: UiStore,
diff --git a/app/scenes/GroupMembers/components/GroupMemberListItem.js b/app/scenes/GroupMembers/components/GroupMemberListItem.js
index 896c9cd5..72e1937d 100644
--- a/app/scenes/GroupMembers/components/GroupMemberListItem.js
+++ b/app/scenes/GroupMembers/components/GroupMemberListItem.js
@@ -1,14 +1,14 @@
// @flow
import * as React from "react";
+import GroupMembership from "models/GroupMembership";
+import User from "models/User";
import Avatar from "components/Avatar";
-import Flex from "components/Flex";
-import Time from "components/Time";
import Badge from "components/Badge";
import Button from "components/Button";
-import ListItem from "components/List/Item";
-import User from "models/User";
-import GroupMembership from "models/GroupMembership";
import { DropdownMenu, DropdownMenuItem } from "components/DropdownMenu";
+import Flex from "components/Flex";
+import ListItem from "components/List/Item";
+import Time from "components/Time";
type Props = {
user: User,
diff --git a/app/scenes/GroupMembers/components/UserListItem.js b/app/scenes/GroupMembers/components/UserListItem.js
index 2b371970..7bc94060 100644
--- a/app/scenes/GroupMembers/components/UserListItem.js
+++ b/app/scenes/GroupMembers/components/UserListItem.js
@@ -1,12 +1,12 @@
// @flow
-import * as React from "react";
import { PlusIcon } from "outline-icons";
-import Time from "components/Time";
-import Avatar from "components/Avatar";
-import Button from "components/Button";
-import Badge from "components/Badge";
-import ListItem from "components/List/Item";
+import * as React from "react";
import User from "models/User";
+import Avatar from "components/Avatar";
+import Badge from "components/Badge";
+import Button from "components/Button";
+import ListItem from "components/List/Item";
+import Time from "components/Time";
type Props = {
user: User,
diff --git a/app/scenes/GroupNew.js b/app/scenes/GroupNew.js
index ddf01f44..95299426 100644
--- a/app/scenes/GroupNew.js
+++ b/app/scenes/GroupNew.js
@@ -1,18 +1,17 @@
// @flow
-import * as React from "react";
-import { withRouter, type RouterHistory } from "react-router-dom";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
-import Button from "components/Button";
-import Input from "components/Input";
-import HelpText from "components/HelpText";
-import Modal from "components/Modal";
-import GroupMembers from "scenes/GroupMembers";
-import Flex from "components/Flex";
-
-import Group from "models/Group";
+import * as React from "react";
+import { withRouter, type RouterHistory } from "react-router-dom";
import GroupsStore from "stores/GroupsStore";
import UiStore from "stores/UiStore";
+import Group from "models/Group";
+import GroupMembers from "scenes/GroupMembers";
+import Button from "components/Button";
+import Flex from "components/Flex";
+import HelpText from "components/HelpText";
+import Input from "components/Input";
+import Modal from "components/Modal";
type Props = {
history: RouterHistory,
diff --git a/app/scenes/Invite.js b/app/scenes/Invite.js
index a81d2cb1..ac1a54d5 100644
--- a/app/scenes/Invite.js
+++ b/app/scenes/Invite.js
@@ -1,22 +1,21 @@
// @flow
-import * as React from "react";
-import { Link, withRouter, type RouterHistory } from "react-router-dom";
import { observable, action } from "mobx";
import { inject, observer } from "mobx-react";
import { LinkIcon, CloseIcon } from "outline-icons";
+import * as React from "react";
+import { Link, withRouter, type RouterHistory } from "react-router-dom";
import styled from "styled-components";
-import Flex from "components/Flex";
-import Button from "components/Button";
-import Input from "components/Input";
-import CopyToClipboard from "components/CopyToClipboard";
-import HelpText from "components/HelpText";
-import Tooltip from "components/Tooltip";
-import NudeButton from "components/NudeButton";
-
-import UiStore from "stores/UiStore";
import AuthStore from "stores/AuthStore";
-import UsersStore from "stores/UsersStore";
import PoliciesStore from "stores/PoliciesStore";
+import UiStore from "stores/UiStore";
+import UsersStore from "stores/UsersStore";
+import Button from "components/Button";
+import CopyToClipboard from "components/CopyToClipboard";
+import Flex from "components/Flex";
+import HelpText from "components/HelpText";
+import Input from "components/Input";
+import NudeButton from "components/NudeButton";
+import Tooltip from "components/Tooltip";
const MAX_INVITES = 20;
diff --git a/app/scenes/KeyboardShortcuts.js b/app/scenes/KeyboardShortcuts.js
index 86e008c4..82e50a31 100644
--- a/app/scenes/KeyboardShortcuts.js
+++ b/app/scenes/KeyboardShortcuts.js
@@ -1,9 +1,9 @@
// @flow
import * as React from "react";
import styled from "styled-components";
-import Key from "components/Key";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
+import Key from "components/Key";
import { meta } from "utils/keyboard";
function KeyboardShortcuts() {
diff --git a/app/scenes/Login/Service.js b/app/scenes/Login/Service.js
index fd4847d4..8001a8d2 100644
--- a/app/scenes/Login/Service.js
+++ b/app/scenes/Login/Service.js
@@ -1,12 +1,12 @@
// @flow
+import { EmailIcon } from "outline-icons";
import * as React from "react";
import styled from "styled-components";
-import { EmailIcon } from "outline-icons";
-import { client } from "utils/ApiClient";
import ButtonLarge from "components/ButtonLarge";
-import SlackLogo from "components/SlackLogo";
import GoogleLogo from "components/GoogleLogo";
import InputLarge from "components/InputLarge";
+import SlackLogo from "components/SlackLogo";
+import { client } from "utils/ApiClient";
type Props = {
id: string,
diff --git a/app/scenes/Login/index.js b/app/scenes/Login/index.js
index 95a68b7b..3a5a498b 100644
--- a/app/scenes/Login/index.js
+++ b/app/scenes/Login/index.js
@@ -1,22 +1,22 @@
// @flow
-import * as React from "react";
-import styled from "styled-components";
-import { BackIcon, EmailIcon } from "outline-icons";
-import { observer, inject } from "mobx-react";
-import { Redirect, Link } from "react-router-dom";
import { find } from "lodash";
-import Flex from "components/Flex";
-import TeamLogo from "components/TeamLogo";
-import OutlineLogo from "components/OutlineLogo";
-import Heading from "components/Heading";
-import PageTitle from "components/PageTitle";
-import ButtonLarge from "components/ButtonLarge";
-import HelpText from "components/HelpText";
-import Fade from "components/Fade";
-import Service from "./Service";
-import Notices from "./Notices";
-import AuthStore from "stores/AuthStore";
+import { observer, inject } from "mobx-react";
+import { BackIcon, EmailIcon } from "outline-icons";
+import * as React from "react";
+import { Redirect, Link } from "react-router-dom";
+import styled from "styled-components";
import getQueryVariable from "shared/utils/getQueryVariable";
+import AuthStore from "stores/AuthStore";
+import ButtonLarge from "components/ButtonLarge";
+import Fade from "components/Fade";
+import Flex from "components/Flex";
+import Heading from "components/Heading";
+import HelpText from "components/HelpText";
+import OutlineLogo from "components/OutlineLogo";
+import PageTitle from "components/PageTitle";
+import TeamLogo from "components/TeamLogo";
+import Notices from "./Notices";
+import Service from "./Service";
import env from "env";
type Props = {
diff --git a/app/scenes/Search/Search.js b/app/scenes/Search/Search.js
index 266df053..003772e0 100644
--- a/app/scenes/Search/Search.js
+++ b/app/scenes/Search/Search.js
@@ -1,39 +1,39 @@
// @flow
+import ArrowKeyNavigation from "boundless-arrow-key-navigation";
+import { debounce } from "lodash";
+import { observable, action } from "mobx";
+import { observer, inject } from "mobx-react";
+import { PlusIcon } from "outline-icons";
+import queryString from "query-string";
import * as React from "react";
import ReactDOM from "react-dom";
import keydown from "react-keydown";
-import { Waypoint } from "react-waypoint";
import { withRouter, Link } from "react-router-dom";
import type { Location, RouterHistory, Match } from "react-router-dom";
-import { PlusIcon } from "outline-icons";
-import { observable, action } from "mobx";
-import { observer, inject } from "mobx-react";
-import { debounce } from "lodash";
-import queryString from "query-string";
+import { Waypoint } from "react-waypoint";
import styled from "styled-components";
-import ArrowKeyNavigation from "boundless-arrow-key-navigation";
import { DEFAULT_PAGINATION_LIMIT } from "stores/BaseStore";
import DocumentsStore from "stores/DocumentsStore";
import UsersStore from "stores/UsersStore";
-import { newDocumentUrl, searchUrl } from "utils/routeHelpers";
-import { meta } from "utils/keyboard";
-import Flex from "components/Flex";
import Button from "components/Button";
+import CenteredContent from "components/CenteredContent";
+import DocumentPreview from "components/DocumentPreview";
import Empty from "components/Empty";
import Fade from "components/Fade";
+import Flex from "components/Flex";
import HelpText from "components/HelpText";
-import CenteredContent from "components/CenteredContent";
import LoadingIndicator from "components/LoadingIndicator";
-import DocumentPreview from "components/DocumentPreview";
-import NewDocumentMenu from "menus/NewDocumentMenu";
import PageTitle from "components/PageTitle";
+import CollectionFilter from "./components/CollectionFilter";
+import DateFilter from "./components/DateFilter";
import SearchField from "./components/SearchField";
import StatusFilter from "./components/StatusFilter";
-import CollectionFilter from "./components/CollectionFilter";
import UserFilter from "./components/UserFilter";
-import DateFilter from "./components/DateFilter";
+import NewDocumentMenu from "menus/NewDocumentMenu";
+import { meta } from "utils/keyboard";
+import { newDocumentUrl, searchUrl } from "utils/routeHelpers";
type Props = {
history: RouterHistory,
diff --git a/app/scenes/Search/components/CollectionFilter.js b/app/scenes/Search/components/CollectionFilter.js
index 524188e2..88a5d7c4 100644
--- a/app/scenes/Search/components/CollectionFilter.js
+++ b/app/scenes/Search/components/CollectionFilter.js
@@ -1,8 +1,8 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
-import FilterOptions from "./FilterOptions";
+import * as React from "react";
import CollectionsStore from "stores/CollectionsStore";
+import FilterOptions from "./FilterOptions";
const defaultOption = {
key: undefined,
diff --git a/app/scenes/Search/components/FilterOption.js b/app/scenes/Search/components/FilterOption.js
index 5ad5b688..27c6c539 100644
--- a/app/scenes/Search/components/FilterOption.js
+++ b/app/scenes/Search/components/FilterOption.js
@@ -1,9 +1,9 @@
// @flow
-import * as React from "react";
import { CheckmarkIcon } from "outline-icons";
+import * as React from "react";
import styled from "styled-components";
-import HelpText from "components/HelpText";
import Flex from "components/Flex";
+import HelpText from "components/HelpText";
type Props = {
label: string,
diff --git a/app/scenes/Search/components/FilterOptions.js b/app/scenes/Search/components/FilterOptions.js
index a523de68..b0faa9d7 100644
--- a/app/scenes/Search/components/FilterOptions.js
+++ b/app/scenes/Search/components/FilterOptions.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { find } from "lodash";
+import * as React from "react";
import styled from "styled-components";
import Button, { Inner } from "components/Button";
import { DropdownMenu } from "components/DropdownMenu";
diff --git a/app/scenes/Search/components/SearchField.js b/app/scenes/Search/components/SearchField.js
index 2f7d4a6b..5d8e897f 100644
--- a/app/scenes/Search/components/SearchField.js
+++ b/app/scenes/Search/components/SearchField.js
@@ -1,7 +1,7 @@
// @flow
+import { SearchIcon } from "outline-icons";
import * as React from "react";
import styled, { withTheme } from "styled-components";
-import { SearchIcon } from "outline-icons";
import Flex from "components/Flex";
type Props = {
diff --git a/app/scenes/Search/components/UserFilter.js b/app/scenes/Search/components/UserFilter.js
index 9cc6c1e5..1c9e7bdd 100644
--- a/app/scenes/Search/components/UserFilter.js
+++ b/app/scenes/Search/components/UserFilter.js
@@ -1,8 +1,8 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
-import FilterOptions from "./FilterOptions";
+import * as React from "react";
import UsersStore from "stores/UsersStore";
+import FilterOptions from "./FilterOptions";
const defaultOption = {
key: undefined,
diff --git a/app/scenes/Settings/Details.js b/app/scenes/Settings/Details.js
index fd81367c..65122a3a 100644
--- a/app/scenes/Settings/Details.js
+++ b/app/scenes/Settings/Details.js
@@ -1,18 +1,18 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
import AuthStore from "stores/AuthStore";
import UiStore from "stores/UiStore";
-import ImageUpload from "./components/ImageUpload";
-import Input, { LabelText } from "components/Input";
import Button from "components/Button";
import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
-import HelpText from "components/HelpText";
import Flex from "components/Flex";
+import HelpText from "components/HelpText";
+import Input, { LabelText } from "components/Input";
+import PageTitle from "components/PageTitle";
+import ImageUpload from "./components/ImageUpload";
import env from "env";
type Props = {
diff --git a/app/scenes/Settings/Events.js b/app/scenes/Settings/Events.js
index b3d5c1f9..3599e685 100644
--- a/app/scenes/Settings/Events.js
+++ b/app/scenes/Settings/Events.js
@@ -1,19 +1,19 @@
// @flow
-import * as React from "react";
import { observable, action } from "mobx";
import { observer, inject } from "mobx-react";
-import { Waypoint } from "react-waypoint";
+import * as React from "react";
import { type Match } from "react-router-dom";
+import { Waypoint } from "react-waypoint";
import { DEFAULT_PAGINATION_LIMIT } from "stores/BaseStore";
import EventsStore from "stores/EventsStore";
import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
import HelpText from "components/HelpText";
import List from "components/List";
-import Tabs from "components/Tabs";
-import Tab from "components/Tab";
import { ListPlaceholder } from "components/LoadingPlaceholder";
+import PageTitle from "components/PageTitle";
+import Tab from "components/Tab";
+import Tabs from "components/Tabs";
import EventListItem from "./components/EventListItem";
type Props = {
diff --git a/app/scenes/Settings/Export.js b/app/scenes/Settings/Export.js
index 80739dd8..eecfb4e5 100644
--- a/app/scenes/Settings/Export.js
+++ b/app/scenes/Settings/Export.js
@@ -1,15 +1,15 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import AuthStore from "stores/AuthStore";
import CollectionsStore from "stores/CollectionsStore";
import UiStore from "stores/UiStore";
-import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
-import HelpText from "components/HelpText";
import Button from "components/Button";
+import CenteredContent from "components/CenteredContent";
+import HelpText from "components/HelpText";
+import PageTitle from "components/PageTitle";
type Props = {
auth: AuthStore,
diff --git a/app/scenes/Settings/Groups.js b/app/scenes/Settings/Groups.js
index 32ef87c9..f0a0ea2a 100644
--- a/app/scenes/Settings/Groups.js
+++ b/app/scenes/Settings/Groups.js
@@ -1,28 +1,27 @@
// @flow
-import * as React from "react";
import invariant from "invariant";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
import { PlusIcon } from "outline-icons";
+import * as React from "react";
import { type Match } from "react-router-dom";
-import Empty from "components/Empty";
-import { ListPlaceholder } from "components/LoadingPlaceholder";
-import Modal from "components/Modal";
-import Button from "components/Button";
-import GroupNew from "scenes/GroupNew";
-import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
-import HelpText from "components/HelpText";
-import GroupListItem from "components/GroupListItem";
-import List from "components/List";
-import Tabs from "components/Tabs";
-import Tab from "components/Tab";
-import GroupMenu from "menus/GroupMenu";
-
import AuthStore from "stores/AuthStore";
import GroupsStore from "stores/GroupsStore";
import PoliciesStore from "stores/PoliciesStore";
+import GroupNew from "scenes/GroupNew";
+import Button from "components/Button";
+import CenteredContent from "components/CenteredContent";
+import Empty from "components/Empty";
+import GroupListItem from "components/GroupListItem";
+import HelpText from "components/HelpText";
+import List from "components/List";
+import { ListPlaceholder } from "components/LoadingPlaceholder";
+import Modal from "components/Modal";
+import PageTitle from "components/PageTitle";
+import Tab from "components/Tab";
+import Tabs from "components/Tabs";
+import GroupMenu from "menus/GroupMenu";
type Props = {
auth: AuthStore,
diff --git a/app/scenes/Settings/Notifications.js b/app/scenes/Settings/Notifications.js
index 19110d35..8a156261 100644
--- a/app/scenes/Settings/Notifications.js
+++ b/app/scenes/Settings/Notifications.js
@@ -1,19 +1,19 @@
// @flow
-import * as React from "react";
import { debounce } from "lodash";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
-import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
-import HelpText from "components/HelpText";
-import Input from "components/Input";
-import Subheading from "components/Subheading";
-import NotificationListItem from "./components/NotificationListItem";
-import Notice from "components/Notice";
-
-import UiStore from "stores/UiStore";
import AuthStore from "stores/AuthStore";
import NotificationSettingsStore from "stores/NotificationSettingsStore";
+import UiStore from "stores/UiStore";
+import CenteredContent from "components/CenteredContent";
+import HelpText from "components/HelpText";
+import Input from "components/Input";
+import Notice from "components/Notice";
+import PageTitle from "components/PageTitle";
+import Subheading from "components/Subheading";
+
+import NotificationListItem from "./components/NotificationListItem";
type Props = {
ui: UiStore,
diff --git a/app/scenes/Settings/People.js b/app/scenes/Settings/People.js
index efceaae8..ba2f534a 100644
--- a/app/scenes/Settings/People.js
+++ b/app/scenes/Settings/People.js
@@ -1,26 +1,26 @@
// @flow
-import * as React from "react";
import invariant from "invariant";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
import { PlusIcon } from "outline-icons";
+import * as React from "react";
import { type Match } from "react-router-dom";
-import Empty from "components/Empty";
-import Modal from "components/Modal";
-import Button from "components/Button";
-import Invite from "scenes/Invite";
-import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
-import HelpText from "components/HelpText";
-import PaginatedList from "components/PaginatedList";
-import Tabs, { Separator } from "components/Tabs";
-import Tab from "components/Tab";
-import UserListItem from "./components/UserListItem";
-
import AuthStore from "stores/AuthStore";
-import UsersStore from "stores/UsersStore";
import PoliciesStore from "stores/PoliciesStore";
+import UsersStore from "stores/UsersStore";
+import Invite from "scenes/Invite";
+import Button from "components/Button";
+import CenteredContent from "components/CenteredContent";
+import Empty from "components/Empty";
+import HelpText from "components/HelpText";
+import Modal from "components/Modal";
+import PageTitle from "components/PageTitle";
+import PaginatedList from "components/PaginatedList";
+import Tab from "components/Tab";
+import Tabs, { Separator } from "components/Tabs";
+
+import UserListItem from "./components/UserListItem";
type Props = {
auth: AuthStore,
diff --git a/app/scenes/Settings/Profile.js b/app/scenes/Settings/Profile.js
index 03776954..67dd31b8 100644
--- a/app/scenes/Settings/Profile.js
+++ b/app/scenes/Settings/Profile.js
@@ -1,18 +1,18 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
import AuthStore from "stores/AuthStore";
import UiStore from "stores/UiStore";
-import ImageUpload from "./components/ImageUpload";
-import Input, { LabelText } from "components/Input";
+import UserDelete from "scenes/UserDelete";
import Button from "components/Button";
import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
-import UserDelete from "scenes/UserDelete";
import Flex from "components/Flex";
+import Input, { LabelText } from "components/Input";
+import PageTitle from "components/PageTitle";
+import ImageUpload from "./components/ImageUpload";
type Props = {
auth: AuthStore,
diff --git a/app/scenes/Settings/Security.js b/app/scenes/Settings/Security.js
index 4494512e..ac0c8779 100644
--- a/app/scenes/Settings/Security.js
+++ b/app/scenes/Settings/Security.js
@@ -1,15 +1,15 @@
// @flow
-import * as React from "react";
+import { debounce } from "lodash";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
-import { debounce } from "lodash";
+import * as React from "react";
import AuthStore from "stores/AuthStore";
import UiStore from "stores/UiStore";
-import Checkbox from "components/Checkbox";
import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
+import Checkbox from "components/Checkbox";
import HelpText from "components/HelpText";
+import PageTitle from "components/PageTitle";
type Props = {
auth: AuthStore,
diff --git a/app/scenes/Settings/Shares.js b/app/scenes/Settings/Shares.js
index e1a3a9d2..b4a960d5 100644
--- a/app/scenes/Settings/Shares.js
+++ b/app/scenes/Settings/Shares.js
@@ -1,17 +1,17 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import { Link } from "react-router-dom";
-import SharesStore from "stores/SharesStore";
import AuthStore from "stores/AuthStore";
+import SharesStore from "stores/SharesStore";
-import ShareListItem from "./components/ShareListItem";
-import Empty from "components/Empty";
-import List from "components/List";
import CenteredContent from "components/CenteredContent";
-import Subheading from "components/Subheading";
-import PageTitle from "components/PageTitle";
+import Empty from "components/Empty";
import HelpText from "components/HelpText";
+import List from "components/List";
+import PageTitle from "components/PageTitle";
+import Subheading from "components/Subheading";
+import ShareListItem from "./components/ShareListItem";
type Props = {
shares: SharesStore,
diff --git a/app/scenes/Settings/Slack.js b/app/scenes/Settings/Slack.js
index 5aa3e0e3..bb3b550c 100644
--- a/app/scenes/Settings/Slack.js
+++ b/app/scenes/Settings/Slack.js
@@ -1,19 +1,19 @@
// @flow
-import * as React from "react";
-import { inject, observer } from "mobx-react";
import { find } from "lodash";
+import { inject, observer } from "mobx-react";
+import * as React from "react";
import styled from "styled-components";
-import Button from "components/Button";
-import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
-import HelpText from "components/HelpText";
-import SlackButton from "./components/SlackButton";
+import getQueryVariable from "shared/utils/getQueryVariable";
+import AuthStore from "stores/AuthStore";
import CollectionsStore from "stores/CollectionsStore";
import IntegrationsStore from "stores/IntegrationsStore";
-import AuthStore from "stores/AuthStore";
+import Button from "components/Button";
+import CenteredContent from "components/CenteredContent";
+import HelpText from "components/HelpText";
import Notice from "components/Notice";
-import getQueryVariable from "shared/utils/getQueryVariable";
+import PageTitle from "components/PageTitle";
+import SlackButton from "./components/SlackButton";
import env from "env";
type Props = {
diff --git a/app/scenes/Settings/Tokens.js b/app/scenes/Settings/Tokens.js
index 73b80c57..68996a0f 100644
--- a/app/scenes/Settings/Tokens.js
+++ b/app/scenes/Settings/Tokens.js
@@ -1,15 +1,15 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import ApiKeysStore from "stores/ApiKeysStore";
import Button from "components/Button";
-import Input from "components/Input";
import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
import HelpText from "components/HelpText";
+import Input from "components/Input";
import List from "components/List";
+import PageTitle from "components/PageTitle";
import TokenListItem from "./components/TokenListItem";
type Props = {
diff --git a/app/scenes/Settings/Zapier.js b/app/scenes/Settings/Zapier.js
index b9011867..9ef9a251 100644
--- a/app/scenes/Settings/Zapier.js
+++ b/app/scenes/Settings/Zapier.js
@@ -1,9 +1,9 @@
// @flow
import * as React from "react";
-import CenteredContent from "components/CenteredContent";
-import PageTitle from "components/PageTitle";
-import HelpText from "components/HelpText";
import Button from "components/Button";
+import CenteredContent from "components/CenteredContent";
+import HelpText from "components/HelpText";
+import PageTitle from "components/PageTitle";
class Zapier extends React.Component<*> {
goToZapier = () => {
diff --git a/app/scenes/Settings/components/EventListItem.js b/app/scenes/Settings/components/EventListItem.js
index b8243426..106e07a7 100644
--- a/app/scenes/Settings/components/EventListItem.js
+++ b/app/scenes/Settings/components/EventListItem.js
@@ -1,12 +1,12 @@
// @flow
+import { capitalize } from "lodash";
import * as React from "react";
import { Link } from "react-router-dom";
-import { capitalize } from "lodash";
import styled from "styled-components";
-import Time from "components/Time";
-import ListItem from "components/List/Item";
-import Avatar from "components/Avatar";
import Event from "models/Event";
+import Avatar from "components/Avatar";
+import ListItem from "components/List/Item";
+import Time from "components/Time";
type Props = {
event: Event,
diff --git a/app/scenes/Settings/components/ImageUpload.js b/app/scenes/Settings/components/ImageUpload.js
index 9f42337d..4eb2e49e 100644
--- a/app/scenes/Settings/components/ImageUpload.js
+++ b/app/scenes/Settings/components/ImageUpload.js
@@ -1,16 +1,16 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { observer, inject } from "mobx-react";
-import styled from "styled-components";
-import Dropzone from "react-dropzone";
-import LoadingIndicator from "components/LoadingIndicator";
-import Flex from "components/Flex";
-import Modal from "components/Modal";
-import Button from "components/Button";
+import * as React from "react";
import AvatarEditor from "react-avatar-editor";
-import { uploadFile, dataUrlToBlob } from "utils/uploadFile";
+import Dropzone from "react-dropzone";
+import styled from "styled-components";
import UiStore from "stores/UiStore";
+import Button from "components/Button";
+import Flex from "components/Flex";
+import LoadingIndicator from "components/LoadingIndicator";
+import Modal from "components/Modal";
+import { uploadFile, dataUrlToBlob } from "utils/uploadFile";
type Props = {
children?: React.Node,
diff --git a/app/scenes/Settings/components/NotificationListItem.js b/app/scenes/Settings/components/NotificationListItem.js
index bb5ee980..c654e9d6 100644
--- a/app/scenes/Settings/components/NotificationListItem.js
+++ b/app/scenes/Settings/components/NotificationListItem.js
@@ -1,7 +1,7 @@
// @flow
import * as React from "react";
-import Checkbox from "components/Checkbox";
import NotificationSetting from "models/NotificationSetting";
+import Checkbox from "components/Checkbox";
type Props = {
setting?: NotificationSetting,
diff --git a/app/scenes/Settings/components/ShareListItem.js b/app/scenes/Settings/components/ShareListItem.js
index 466d3dcd..cea8f285 100644
--- a/app/scenes/Settings/components/ShareListItem.js
+++ b/app/scenes/Settings/components/ShareListItem.js
@@ -1,9 +1,9 @@
// @flow
import * as React from "react";
-import ShareMenu from "menus/ShareMenu";
+import Share from "models/Share";
import ListItem from "components/List/Item";
import Time from "components/Time";
-import Share from "models/Share";
+import ShareMenu from "menus/ShareMenu";
type Props = {
share: Share,
diff --git a/app/scenes/Settings/components/SlackButton.js b/app/scenes/Settings/components/SlackButton.js
index 9e8c50aa..240d4718 100644
--- a/app/scenes/Settings/components/SlackButton.js
+++ b/app/scenes/Settings/components/SlackButton.js
@@ -2,8 +2,8 @@
import * as React from "react";
import styled from "styled-components";
import { slackAuth } from "shared/utils/routeHelpers";
-import SlackLogo from "components/SlackLogo";
import Button from "components/Button";
+import SlackLogo from "components/SlackLogo";
import env from "env";
type Props = {
diff --git a/app/scenes/Settings/components/TokenListItem.js b/app/scenes/Settings/components/TokenListItem.js
index 2f7df3a8..148c3773 100644
--- a/app/scenes/Settings/components/TokenListItem.js
+++ b/app/scenes/Settings/components/TokenListItem.js
@@ -1,8 +1,8 @@
// @flow
import * as React from "react";
+import ApiKey from "models/ApiKey";
import Button from "components/Button";
import ListItem from "components/List/Item";
-import ApiKey from "models/ApiKey";
type Props = {
token: ApiKey,
diff --git a/app/scenes/Settings/components/UserListItem.js b/app/scenes/Settings/components/UserListItem.js
index be8908f5..ead3af57 100644
--- a/app/scenes/Settings/components/UserListItem.js
+++ b/app/scenes/Settings/components/UserListItem.js
@@ -1,15 +1,15 @@
// @flow
-import * as React from "react";
-import styled from "styled-components";
import { observable } from "mobx";
import { observer } from "mobx-react";
-import UserMenu from "menus/UserMenu";
+import * as React from "react";
+import styled from "styled-components";
+import User from "models/User";
+import UserProfile from "scenes/UserProfile";
import Avatar from "components/Avatar";
import Badge from "components/Badge";
-import UserProfile from "scenes/UserProfile";
import ListItem from "components/List/Item";
import Time from "components/Time";
-import User from "models/User";
+import UserMenu from "menus/UserMenu";
type Props = {
user: User,
diff --git a/app/scenes/Starred.js b/app/scenes/Starred.js
index edf05b17..25000f7a 100644
--- a/app/scenes/Starred.js
+++ b/app/scenes/Starred.js
@@ -1,19 +1,19 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import { type Match } from "react-router-dom";
+import DocumentsStore from "stores/DocumentsStore";
+import Actions, { Action } from "components/Actions";
import CenteredContent from "components/CenteredContent";
import Empty from "components/Empty";
-import PageTitle from "components/PageTitle";
import Heading from "components/Heading";
-import PaginatedDocumentList from "components/PaginatedDocumentList";
import InputSearch from "components/InputSearch";
-import Tabs from "components/Tabs";
+import PageTitle from "components/PageTitle";
+import PaginatedDocumentList from "components/PaginatedDocumentList";
import Tab from "components/Tab";
+import Tabs from "components/Tabs";
import NewDocumentMenu from "menus/NewDocumentMenu";
-import Actions, { Action } from "components/Actions";
-import DocumentsStore from "stores/DocumentsStore";
type Props = {
documents: DocumentsStore,
diff --git a/app/scenes/Templates.js b/app/scenes/Templates.js
index b7e03adb..7a2f9b5b 100644
--- a/app/scenes/Templates.js
+++ b/app/scenes/Templates.js
@@ -1,18 +1,18 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
import { type Match } from "react-router-dom";
+import DocumentsStore from "stores/DocumentsStore";
+import Actions, { Action } from "components/Actions";
import CenteredContent from "components/CenteredContent";
import Empty from "components/Empty";
-import PageTitle from "components/PageTitle";
import Heading from "components/Heading";
+import PageTitle from "components/PageTitle";
import PaginatedDocumentList from "components/PaginatedDocumentList";
-import Tabs from "components/Tabs";
import Tab from "components/Tab";
+import Tabs from "components/Tabs";
import NewTemplateMenu from "menus/NewTemplateMenu";
-import Actions, { Action } from "components/Actions";
-import DocumentsStore from "stores/DocumentsStore";
type Props = {
documents: DocumentsStore,
diff --git a/app/scenes/Trash.js b/app/scenes/Trash.js
index 72c09c9a..135edbea 100644
--- a/app/scenes/Trash.js
+++ b/app/scenes/Trash.js
@@ -1,14 +1,14 @@
// @flow
-import * as React from "react";
import { observer, inject } from "mobx-react";
+import * as React from "react";
+import DocumentsStore from "stores/DocumentsStore";
import CenteredContent from "components/CenteredContent";
import Empty from "components/Empty";
-import PageTitle from "components/PageTitle";
import Heading from "components/Heading";
+import PageTitle from "components/PageTitle";
import PaginatedDocumentList from "components/PaginatedDocumentList";
import Subheading from "components/Subheading";
-import DocumentsStore from "stores/DocumentsStore";
type Props = {
documents: DocumentsStore,
diff --git a/app/scenes/UserDelete.js b/app/scenes/UserDelete.js
index b9a93417..8f5128ed 100644
--- a/app/scenes/UserDelete.js
+++ b/app/scenes/UserDelete.js
@@ -1,12 +1,12 @@
// @flow
-import * as React from "react";
import { observable } from "mobx";
import { inject, observer } from "mobx-react";
+import * as React from "react";
+import AuthStore from "stores/AuthStore";
import Button from "components/Button";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
import Modal from "components/Modal";
-import AuthStore from "stores/AuthStore";
type Props = {
auth: AuthStore,
diff --git a/app/scenes/UserProfile.js b/app/scenes/UserProfile.js
index 01a15499..2ad29565 100644
--- a/app/scenes/UserProfile.js
+++ b/app/scenes/UserProfile.js
@@ -1,22 +1,22 @@
// @flow
-import * as React from "react";
-import styled from "styled-components";
import distanceInWordsToNow from "date-fns/distance_in_words_to_now";
import { inject, observer } from "mobx-react";
-import { withRouter, type RouterHistory } from "react-router-dom";
import { EditIcon } from "outline-icons";
+import * as React from "react";
+import { withRouter, type RouterHistory } from "react-router-dom";
+import styled from "styled-components";
+import { settings } from "shared/utils/routeHelpers";
+import AuthStore from "stores/AuthStore";
+import DocumentsStore from "stores/DocumentsStore";
+import User from "models/User";
+import Avatar from "components/Avatar";
+import Badge from "components/Badge";
+import Button from "components/Button";
import Flex from "components/Flex";
import HelpText from "components/HelpText";
import Modal from "components/Modal";
-import Button from "components/Button";
-import Avatar from "components/Avatar";
-import Badge from "components/Badge";
import PaginatedDocumentList from "components/PaginatedDocumentList";
import Subheading from "components/Subheading";
-import User from "models/User";
-import DocumentsStore from "stores/DocumentsStore";
-import AuthStore from "stores/AuthStore";
-import { settings } from "shared/utils/routeHelpers";
type Props = {
user: User,
diff --git a/app/stores/ApiKeysStore.js b/app/stores/ApiKeysStore.js
index a9bc4f35..82bec16b 100644
--- a/app/stores/ApiKeysStore.js
+++ b/app/stores/ApiKeysStore.js
@@ -1,7 +1,7 @@
// @flow
+import ApiKey from "models/ApiKey";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import ApiKey from "models/ApiKey";
export default class ApiKeysStore extends BaseStore {
actions = ["list", "create", "delete"];
diff --git a/app/stores/AuthStore.js b/app/stores/AuthStore.js
index bbd15839..eeaa4d3c 100644
--- a/app/stores/AuthStore.js
+++ b/app/stores/AuthStore.js
@@ -1,12 +1,12 @@
// @flow
-import { observable, action, computed, autorun, runInAction } from "mobx";
import invariant from "invariant";
+import { observable, action, computed, autorun, runInAction } from "mobx";
import { getCookie, setCookie, removeCookie } from "tiny-cookie";
+import RootStore from "stores/RootStore";
+import Team from "models/Team";
+import User from "models/User";
import { client } from "utils/ApiClient";
import { getCookieDomain } from "utils/domains";
-import RootStore from "stores/RootStore";
-import User from "models/User";
-import Team from "models/Team";
const AUTH_STORE = "AUTH_STORE";
const NO_REDIRECT_PATHS = ["/", "/create", "/home"];
diff --git a/app/stores/BaseStore.js b/app/stores/BaseStore.js
index 034d9e6c..eab617e5 100644
--- a/app/stores/BaseStore.js
+++ b/app/stores/BaseStore.js
@@ -1,11 +1,11 @@
// @flow
import invariant from "invariant";
-import { observable, set, action, computed, runInAction } from "mobx";
import { orderBy } from "lodash";
-import { client } from "utils/ApiClient";
+import { observable, set, action, computed, runInAction } from "mobx";
import RootStore from "stores/RootStore";
import BaseModel from "../models/BaseModel";
import type { PaginationParams } from "types";
+import { client } from "utils/ApiClient";
type Action = "list" | "info" | "create" | "update" | "delete";
diff --git a/app/stores/CollectionGroupMembershipsStore.js b/app/stores/CollectionGroupMembershipsStore.js
index cde26298..a8996db0 100644
--- a/app/stores/CollectionGroupMembershipsStore.js
+++ b/app/stores/CollectionGroupMembershipsStore.js
@@ -1,11 +1,11 @@
// @flow
import invariant from "invariant";
import { action, runInAction } from "mobx";
-import { client } from "utils/ApiClient";
+import CollectionGroupMembership from "models/CollectionGroupMembership";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import CollectionGroupMembership from "models/CollectionGroupMembership";
import type { PaginationParams } from "types";
+import { client } from "utils/ApiClient";
export default class CollectionGroupMembershipsStore extends BaseStore {
actions = ["create", "delete"];
diff --git a/app/stores/CollectionsStore.js b/app/stores/CollectionsStore.js
index 223b36b6..015fc67c 100644
--- a/app/stores/CollectionsStore.js
+++ b/app/stores/CollectionsStore.js
@@ -1,12 +1,12 @@
// @flow
-import { computed } from "mobx";
import { concat, filter, last } from "lodash";
-import { client } from "utils/ApiClient";
+import { computed } from "mobx";
+import naturalSort from "shared/utils/naturalSort";
+import Collection from "models/Collection";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import Collection from "models/Collection";
-import naturalSort from "shared/utils/naturalSort";
+import { client } from "utils/ApiClient";
export type DocumentPathItem = {
id: string,
diff --git a/app/stores/DocumentsStore.js b/app/stores/DocumentsStore.js
index 27ab3ca7..a21a69c3 100644
--- a/app/stores/DocumentsStore.js
+++ b/app/stores/DocumentsStore.js
@@ -1,5 +1,5 @@
// @flow
-import { observable, action, computed, runInAction } from "mobx";
+import invariant from "invariant";
import {
without,
map,
@@ -10,15 +10,15 @@ import {
omitBy,
uniq,
} from "lodash";
-import { client } from "utils/ApiClient";
+import { observable, action, computed, runInAction } from "mobx";
import naturalSort from "shared/utils/naturalSort";
-import invariant from "invariant";
import BaseStore from "stores/BaseStore";
import RootStore from "stores/RootStore";
import Document from "models/Document";
import Revision from "models/Revision";
import type { FetchOptions, PaginationParams, SearchResult } from "types";
+import { client } from "utils/ApiClient";
export default class DocumentsStore extends BaseStore {
@observable recentlyViewedIds: string[] = [];
diff --git a/app/stores/EventsStore.js b/app/stores/EventsStore.js
index a1ec5606..bc97792a 100644
--- a/app/stores/EventsStore.js
+++ b/app/stores/EventsStore.js
@@ -1,9 +1,9 @@
// @flow
import { sortBy } from "lodash";
import { computed } from "mobx";
+import Event from "models/Event";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import Event from "models/Event";
export default class EventsStore extends BaseStore {
actions = ["list"];
diff --git a/app/stores/GroupMembershipsStore.js b/app/stores/GroupMembershipsStore.js
index e57a4ef4..d9e62acf 100644
--- a/app/stores/GroupMembershipsStore.js
+++ b/app/stores/GroupMembershipsStore.js
@@ -1,12 +1,12 @@
// @flow
import invariant from "invariant";
-import { action, runInAction } from "mobx";
import { filter } from "lodash";
-import { client } from "utils/ApiClient";
+import { action, runInAction } from "mobx";
+import GroupMembership from "models/GroupMembership";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import GroupMembership from "models/GroupMembership";
import type { PaginationParams } from "types";
+import { client } from "utils/ApiClient";
export default class GroupMembershipsStore extends BaseStore {
actions = ["create", "delete"];
diff --git a/app/stores/GroupsStore.js b/app/stores/GroupsStore.js
index 103b667a..98dedec8 100644
--- a/app/stores/GroupsStore.js
+++ b/app/stores/GroupsStore.js
@@ -1,13 +1,13 @@
// @flow
-import BaseStore from "./BaseStore";
-import RootStore from "./RootStore";
-import naturalSort from "shared/utils/naturalSort";
-import Group from "models/Group";
-import { client } from "utils/ApiClient";
import invariant from "invariant";
import { filter } from "lodash";
import { action, runInAction, computed } from "mobx";
+import naturalSort from "shared/utils/naturalSort";
+import Group from "models/Group";
+import BaseStore from "./BaseStore";
+import RootStore from "./RootStore";
import type { PaginationParams } from "types";
+import { client } from "utils/ApiClient";
export default class GroupsStore extends BaseStore {
constructor(rootStore: RootStore) {
diff --git a/app/stores/IntegrationsStore.js b/app/stores/IntegrationsStore.js
index 56d5068e..04ab8292 100644
--- a/app/stores/IntegrationsStore.js
+++ b/app/stores/IntegrationsStore.js
@@ -1,6 +1,6 @@
// @flow
-import { computed } from "mobx";
import { filter } from "lodash";
+import { computed } from "mobx";
import naturalSort from "shared/utils/naturalSort";
import BaseStore from "stores/BaseStore";
diff --git a/app/stores/MembershipsStore.js b/app/stores/MembershipsStore.js
index 2cb2b294..1f653680 100644
--- a/app/stores/MembershipsStore.js
+++ b/app/stores/MembershipsStore.js
@@ -1,11 +1,11 @@
// @flow
import invariant from "invariant";
import { action, runInAction } from "mobx";
-import { client } from "utils/ApiClient";
+import Membership from "models/Membership";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import Membership from "models/Membership";
import type { PaginationParams } from "types";
+import { client } from "utils/ApiClient";
export default class MembershipsStore extends BaseStore {
actions = ["create", "delete"];
diff --git a/app/stores/PoliciesStore.js b/app/stores/PoliciesStore.js
index 787b387c..56bc7b13 100644
--- a/app/stores/PoliciesStore.js
+++ b/app/stores/PoliciesStore.js
@@ -1,7 +1,7 @@
// @flow
+import Policy from "models/Policy";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import Policy from "models/Policy";
export default class PoliciesStore extends BaseStore {
actions = [];
diff --git a/app/stores/RevisionsStore.js b/app/stores/RevisionsStore.js
index f92e1132..c975dcad 100644
--- a/app/stores/RevisionsStore.js
+++ b/app/stores/RevisionsStore.js
@@ -1,12 +1,12 @@
// @flow
-import { action, runInAction } from "mobx";
-import { filter } from "lodash";
import invariant from "invariant";
-import { client } from "utils/ApiClient";
+import { filter } from "lodash";
+import { action, runInAction } from "mobx";
import BaseStore from "stores/BaseStore";
import RootStore from "stores/RootStore";
import Revision from "models/Revision";
import type { FetchOptions, PaginationParams } from "types";
+import { client } from "utils/ApiClient";
export default class RevisionsStore extends BaseStore {
actions = ["list"];
diff --git a/app/stores/RootStore.js b/app/stores/RootStore.js
index b92052bd..1b13a19d 100644
--- a/app/stores/RootStore.js
+++ b/app/stores/RootStore.js
@@ -1,22 +1,22 @@
// @flow
import ApiKeysStore from "./ApiKeysStore";
import AuthStore from "./AuthStore";
+import CollectionGroupMembershipsStore from "./CollectionGroupMembershipsStore";
import CollectionsStore from "./CollectionsStore";
+import DocumentPresenceStore from "./DocumentPresenceStore";
import DocumentsStore from "./DocumentsStore";
import EventsStore from "./EventsStore";
-import GroupsStore from "./GroupsStore";
import GroupMembershipsStore from "./GroupMembershipsStore";
+import GroupsStore from "./GroupsStore";
import IntegrationsStore from "./IntegrationsStore";
import MembershipsStore from "./MembershipsStore";
import NotificationSettingsStore from "./NotificationSettingsStore";
-import DocumentPresenceStore from "./DocumentPresenceStore";
import PoliciesStore from "./PoliciesStore";
import RevisionsStore from "./RevisionsStore";
import SharesStore from "./SharesStore";
import UiStore from "./UiStore";
import UsersStore from "./UsersStore";
import ViewsStore from "./ViewsStore";
-import CollectionGroupMembershipsStore from "./CollectionGroupMembershipsStore";
export default class RootStore {
apiKeys: ApiKeysStore;
diff --git a/app/stores/SharesStore.js b/app/stores/SharesStore.js
index 6e273c3a..a58eccee 100644
--- a/app/stores/SharesStore.js
+++ b/app/stores/SharesStore.js
@@ -2,10 +2,10 @@
import invariant from "invariant";
import { sortBy, filter, find } from "lodash";
import { action, computed } from "mobx";
-import { client } from "utils/ApiClient";
+import Share from "models/Share";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import Share from "models/Share";
+import { client } from "utils/ApiClient";
export default class SharesStore extends BaseStore {
actions = ["info", "list", "create", "update"];
diff --git a/app/stores/UiStore.js b/app/stores/UiStore.js
index 9609be79..f8545292 100644
--- a/app/stores/UiStore.js
+++ b/app/stores/UiStore.js
@@ -1,9 +1,9 @@
// @flow
-import { v4 } from "uuid";
import { orderBy } from "lodash";
import { observable, action, autorun, computed } from "mobx";
-import Document from "models/Document";
+import { v4 } from "uuid";
import Collection from "models/Collection";
+import Document from "models/Document";
import type { Toast } from "../types";
const UI_STORE = "UI_STORE";
diff --git a/app/stores/UsersStore.js b/app/stores/UsersStore.js
index 50bf4f83..3022a2a3 100644
--- a/app/stores/UsersStore.js
+++ b/app/stores/UsersStore.js
@@ -1,11 +1,11 @@
// @flow
+import invariant from "invariant";
import { filter, orderBy } from "lodash";
import { computed, action, runInAction } from "mobx";
-import invariant from "invariant";
-import { client } from "utils/ApiClient";
+import User from "models/User";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import User from "models/User";
+import { client } from "utils/ApiClient";
export default class UsersStore extends BaseStore {
constructor(rootStore: RootStore) {
diff --git a/app/stores/ViewsStore.js b/app/stores/ViewsStore.js
index 421aef3c..efbe33d1 100644
--- a/app/stores/ViewsStore.js
+++ b/app/stores/ViewsStore.js
@@ -1,8 +1,8 @@
// @flow
import { reduce, filter, find, orderBy } from "lodash";
+import View from "models/View";
import BaseStore from "./BaseStore";
import RootStore from "./RootStore";
-import View from "models/View";
export default class ViewsStore extends BaseStore {
actions = ["list", "create"];
diff --git a/app/utils/ApiClient.js b/app/utils/ApiClient.js
index 44b18b8a..09b25c41 100644
--- a/app/utils/ApiClient.js
+++ b/app/utils/ApiClient.js
@@ -1,7 +1,7 @@
// @flow
-import pkg from "rich-markdown-editor/package.json";
-import { map, trim } from "lodash";
import invariant from "invariant";
+import { map, trim } from "lodash";
+import pkg from "rich-markdown-editor/package.json";
import stores from "stores";
import download from "./download";
import {
diff --git a/app/utils/download.js b/app/utils/download.js
index a502a7eb..4ec87142 100644
--- a/app/utils/download.js
+++ b/app/utils/download.js
@@ -1,5 +1,4 @@
// @flow
-/* global navigator */
// download.js v3.0, by dandavis; 2008-2014. [CCBY2] see http://danml.com/download.html for tests/usage
// v1 landed a FF+Chrome compat way of downloading strings to local un-named files, upgraded to use a hidden frame and optional mime
diff --git a/app/utils/importFile.js b/app/utils/importFile.js
index 55706fd6..c7ef1297 100644
--- a/app/utils/importFile.js
+++ b/app/utils/importFile.js
@@ -1,7 +1,7 @@
// @flow
-import Document from "models/Document";
-import DocumentsStore from "stores/DocumentsStore";
import parseTitle from "shared/utils/parseTitle";
+import DocumentsStore from "stores/DocumentsStore";
+import Document from "models/Document";
type Options = {
file: File,
diff --git a/app/utils/uploadFile.js b/app/utils/uploadFile.js
index f8cffc10..09ea3756 100644
--- a/app/utils/uploadFile.js
+++ b/app/utils/uploadFile.js
@@ -1,6 +1,6 @@
// @flow
-import { client } from "./ApiClient";
import invariant from "invariant";
+import { client } from "./ApiClient";
type Options = {
name?: string,
diff --git a/flow-typed/npm/babel-core_vx.x.x.js b/flow-typed/npm/babel-core_vx.x.x.js
deleted file mode 100644
index 5bf80fba..00000000
--- a/flow-typed/npm/babel-core_vx.x.x.js
+++ /dev/null
@@ -1,240 +0,0 @@
-// flow-typed signature: 2a2778a8d504d8a94e5b815f3ff093d0
-// flow-typed version: <>/babel-core_v^6.24.1/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-core'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-core' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-core/lib/api/browser' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/api/node' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/helpers/get-possible-plugin-names' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/helpers/get-possible-preset-names' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/helpers/merge' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/helpers/normalize-ast' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/helpers/resolve-from-possible-names' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/helpers/resolve-plugin' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/helpers/resolve-preset' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/helpers/resolve' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/store' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/tools/build-external-helpers' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/logger' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/merge-map' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/metadata' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/options/build-config-chain' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/options/config' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/options' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/options/option-manager' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/options/parsers' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/file/options/removed' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/internal-plugins/block-hoist' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/internal-plugins/shadow-functions' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/pipeline' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/plugin-pass' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/transformation/plugin' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/lib/util' {
- declare module.exports: any;
-}
-
-declare module 'babel-core/register' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-core/index' {
- declare module.exports: $Exports<'babel-core'>;
-}
-declare module 'babel-core/index.js' {
- declare module.exports: $Exports<'babel-core'>;
-}
-declare module 'babel-core/lib/api/browser.js' {
- declare module.exports: $Exports<'babel-core/lib/api/browser'>;
-}
-declare module 'babel-core/lib/api/node.js' {
- declare module.exports: $Exports<'babel-core/lib/api/node'>;
-}
-declare module 'babel-core/lib/helpers/get-possible-plugin-names.js' {
- declare module.exports: $Exports<'babel-core/lib/helpers/get-possible-plugin-names'>;
-}
-declare module 'babel-core/lib/helpers/get-possible-preset-names.js' {
- declare module.exports: $Exports<'babel-core/lib/helpers/get-possible-preset-names'>;
-}
-declare module 'babel-core/lib/helpers/merge.js' {
- declare module.exports: $Exports<'babel-core/lib/helpers/merge'>;
-}
-declare module 'babel-core/lib/helpers/normalize-ast.js' {
- declare module.exports: $Exports<'babel-core/lib/helpers/normalize-ast'>;
-}
-declare module 'babel-core/lib/helpers/resolve-from-possible-names.js' {
- declare module.exports: $Exports<'babel-core/lib/helpers/resolve-from-possible-names'>;
-}
-declare module 'babel-core/lib/helpers/resolve-plugin.js' {
- declare module.exports: $Exports<'babel-core/lib/helpers/resolve-plugin'>;
-}
-declare module 'babel-core/lib/helpers/resolve-preset.js' {
- declare module.exports: $Exports<'babel-core/lib/helpers/resolve-preset'>;
-}
-declare module 'babel-core/lib/helpers/resolve.js' {
- declare module.exports: $Exports<'babel-core/lib/helpers/resolve'>;
-}
-declare module 'babel-core/lib/store.js' {
- declare module.exports: $Exports<'babel-core/lib/store'>;
-}
-declare module 'babel-core/lib/tools/build-external-helpers.js' {
- declare module.exports: $Exports<'babel-core/lib/tools/build-external-helpers'>;
-}
-declare module 'babel-core/lib/transformation/file/index' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file'>;
-}
-declare module 'babel-core/lib/transformation/file/index.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file'>;
-}
-declare module 'babel-core/lib/transformation/file/logger.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/logger'>;
-}
-declare module 'babel-core/lib/transformation/file/merge-map.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/merge-map'>;
-}
-declare module 'babel-core/lib/transformation/file/metadata.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/metadata'>;
-}
-declare module 'babel-core/lib/transformation/file/options/build-config-chain.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/options/build-config-chain'>;
-}
-declare module 'babel-core/lib/transformation/file/options/config.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/options/config'>;
-}
-declare module 'babel-core/lib/transformation/file/options/index' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/options'>;
-}
-declare module 'babel-core/lib/transformation/file/options/index.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/options'>;
-}
-declare module 'babel-core/lib/transformation/file/options/option-manager.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/options/option-manager'>;
-}
-declare module 'babel-core/lib/transformation/file/options/parsers.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/options/parsers'>;
-}
-declare module 'babel-core/lib/transformation/file/options/removed.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/file/options/removed'>;
-}
-declare module 'babel-core/lib/transformation/internal-plugins/block-hoist.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/internal-plugins/block-hoist'>;
-}
-declare module 'babel-core/lib/transformation/internal-plugins/shadow-functions.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/internal-plugins/shadow-functions'>;
-}
-declare module 'babel-core/lib/transformation/pipeline.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/pipeline'>;
-}
-declare module 'babel-core/lib/transformation/plugin-pass.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/plugin-pass'>;
-}
-declare module 'babel-core/lib/transformation/plugin.js' {
- declare module.exports: $Exports<'babel-core/lib/transformation/plugin'>;
-}
-declare module 'babel-core/lib/util.js' {
- declare module.exports: $Exports<'babel-core/lib/util'>;
-}
-declare module 'babel-core/register.js' {
- declare module.exports: $Exports<'babel-core/register'>;
-}
diff --git a/flow-typed/npm/babel-eslint_vx.x.x.js b/flow-typed/npm/babel-eslint_vx.x.x.js
deleted file mode 100644
index 7caf983a..00000000
--- a/flow-typed/npm/babel-eslint_vx.x.x.js
+++ /dev/null
@@ -1,129 +0,0 @@
-// flow-typed signature: bf2190794426a6bee6ae857f9829c1bd
-// flow-typed version: <>/babel-eslint_v^9.0.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-eslint'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-eslint' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-eslint/lib/analyze-scope' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/babylon-to-espree/attachComments' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/babylon-to-espree/convertComments' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/babylon-to-espree' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/babylon-to-espree/toAST' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/babylon-to-espree/toToken' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/babylon-to-espree/toTokens' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/parse-with-patch' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/parse-with-scope' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/parse' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/patch-eslint-scope' {
- declare module.exports: any;
-}
-
-declare module 'babel-eslint/lib/visitor-keys' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-eslint/lib/analyze-scope.js' {
- declare module.exports: $Exports<'babel-eslint/lib/analyze-scope'>;
-}
-declare module 'babel-eslint/lib/babylon-to-espree/attachComments.js' {
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/attachComments'>;
-}
-declare module 'babel-eslint/lib/babylon-to-espree/convertComments.js' {
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertComments'>;
-}
-declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType.js' {
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertTemplateType'>;
-}
-declare module 'babel-eslint/lib/babylon-to-espree/index' {
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree'>;
-}
-declare module 'babel-eslint/lib/babylon-to-espree/index.js' {
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree'>;
-}
-declare module 'babel-eslint/lib/babylon-to-espree/toAST.js' {
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toAST'>;
-}
-declare module 'babel-eslint/lib/babylon-to-espree/toToken.js' {
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toToken'>;
-}
-declare module 'babel-eslint/lib/babylon-to-espree/toTokens.js' {
- declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toTokens'>;
-}
-declare module 'babel-eslint/lib/index' {
- declare module.exports: $Exports<'babel-eslint/lib'>;
-}
-declare module 'babel-eslint/lib/index.js' {
- declare module.exports: $Exports<'babel-eslint/lib'>;
-}
-declare module 'babel-eslint/lib/parse-with-patch.js' {
- declare module.exports: $Exports<'babel-eslint/lib/parse-with-patch'>;
-}
-declare module 'babel-eslint/lib/parse-with-scope.js' {
- declare module.exports: $Exports<'babel-eslint/lib/parse-with-scope'>;
-}
-declare module 'babel-eslint/lib/parse.js' {
- declare module.exports: $Exports<'babel-eslint/lib/parse'>;
-}
-declare module 'babel-eslint/lib/patch-eslint-scope.js' {
- declare module.exports: $Exports<'babel-eslint/lib/patch-eslint-scope'>;
-}
-declare module 'babel-eslint/lib/visitor-keys.js' {
- declare module.exports: $Exports<'babel-eslint/lib/visitor-keys'>;
-}
diff --git a/flow-typed/npm/babel-jest_vx.x.x.js b/flow-typed/npm/babel-jest_vx.x.x.js
deleted file mode 100644
index eb0200cb..00000000
--- a/flow-typed/npm/babel-jest_vx.x.x.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// flow-typed signature: f22384a80780146130c10e5e99b6f5fe
-// flow-typed version: <>/babel-jest_v^22.0.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-jest'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-jest' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-jest/build' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-jest/build/index' {
- declare module.exports: $Exports<'babel-jest/build'>;
-}
-declare module 'babel-jest/build/index.js' {
- declare module.exports: $Exports<'babel-jest/build'>;
-}
diff --git a/flow-typed/npm/babel-loader_vx.x.x.js b/flow-typed/npm/babel-loader_vx.x.x.js
deleted file mode 100644
index 79297a0f..00000000
--- a/flow-typed/npm/babel-loader_vx.x.x.js
+++ /dev/null
@@ -1,70 +0,0 @@
-// flow-typed signature: 33faf6f5e316d704ff8d7bacec5e5463
-// flow-typed version: <>/babel-loader_v^7.1.2/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-loader'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-loader' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-loader/lib/fs-cache' {
- declare module.exports: any;
-}
-
-declare module 'babel-loader/lib' {
- declare module.exports: any;
-}
-
-declare module 'babel-loader/lib/resolve-rc' {
- declare module.exports: any;
-}
-
-declare module 'babel-loader/lib/utils/exists' {
- declare module.exports: any;
-}
-
-declare module 'babel-loader/lib/utils/read' {
- declare module.exports: any;
-}
-
-declare module 'babel-loader/lib/utils/relative' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-loader/lib/fs-cache.js' {
- declare module.exports: $Exports<'babel-loader/lib/fs-cache'>;
-}
-declare module 'babel-loader/lib/index' {
- declare module.exports: $Exports<'babel-loader/lib'>;
-}
-declare module 'babel-loader/lib/index.js' {
- declare module.exports: $Exports<'babel-loader/lib'>;
-}
-declare module 'babel-loader/lib/resolve-rc.js' {
- declare module.exports: $Exports<'babel-loader/lib/resolve-rc'>;
-}
-declare module 'babel-loader/lib/utils/exists.js' {
- declare module.exports: $Exports<'babel-loader/lib/utils/exists'>;
-}
-declare module 'babel-loader/lib/utils/read.js' {
- declare module.exports: $Exports<'babel-loader/lib/utils/read'>;
-}
-declare module 'babel-loader/lib/utils/relative.js' {
- declare module.exports: $Exports<'babel-loader/lib/utils/relative'>;
-}
diff --git a/flow-typed/npm/babel-plugin-lodash_vx.x.x.js b/flow-typed/npm/babel-plugin-lodash_vx.x.x.js
deleted file mode 100644
index 2f09681c..00000000
--- a/flow-typed/npm/babel-plugin-lodash_vx.x.x.js
+++ /dev/null
@@ -1,98 +0,0 @@
-// flow-typed signature: cf10a073968967e19fe1b9bbd6ffcde2
-// flow-typed version: <>/babel-plugin-lodash_v^3.2.11/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-lodash'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-lodash' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-lodash/lib/config' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib/importModule' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib/Map' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib/MapCache' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib/mapping' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib/ModuleCache' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib/Package' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib/Store' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-lodash/lib/util' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-lodash/lib/config.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/config'>;
-}
-declare module 'babel-plugin-lodash/lib/importModule.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/importModule'>;
-}
-declare module 'babel-plugin-lodash/lib/index' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib'>;
-}
-declare module 'babel-plugin-lodash/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib'>;
-}
-declare module 'babel-plugin-lodash/lib/Map.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/Map'>;
-}
-declare module 'babel-plugin-lodash/lib/MapCache.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/MapCache'>;
-}
-declare module 'babel-plugin-lodash/lib/mapping.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/mapping'>;
-}
-declare module 'babel-plugin-lodash/lib/ModuleCache.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/ModuleCache'>;
-}
-declare module 'babel-plugin-lodash/lib/Package.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/Package'>;
-}
-declare module 'babel-plugin-lodash/lib/Store.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/Store'>;
-}
-declare module 'babel-plugin-lodash/lib/util.js' {
- declare module.exports: $Exports<'babel-plugin-lodash/lib/util'>;
-}
diff --git a/flow-typed/npm/babel-plugin-styled-components_vx.x.x.js b/flow-typed/npm/babel-plugin-styled-components_vx.x.x.js
deleted file mode 100644
index b6c36154..00000000
--- a/flow-typed/npm/babel-plugin-styled-components_vx.x.x.js
+++ /dev/null
@@ -1,139 +0,0 @@
-// flow-typed signature: 98c16447ddcec42856caf946d00e3906
-// flow-typed version: <>/babel-plugin-styled-components_v^1.1.7/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-styled-components'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-styled-components' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-styled-components/lib/css/placeholderUtils' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/minify' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/utils/detectors' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/utils/getName' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/utils/hash' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/utils/options' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/utils/prefixDigit' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/visitors/assignStyledRequired' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/visitors/displayNameAndId' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/visitors/minify' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/visitors/pure' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals/transpile' {
- declare module.exports: any;
-}
-
-declare module 'babel-plugin-styled-components/lib/visitors/transpileCssProp' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-styled-components/lib/css/placeholderUtils.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/css/placeholderUtils'>;
-}
-declare module 'babel-plugin-styled-components/lib/index' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib'>;
-}
-declare module 'babel-plugin-styled-components/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib'>;
-}
-declare module 'babel-plugin-styled-components/lib/minify/index' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/minify'>;
-}
-declare module 'babel-plugin-styled-components/lib/minify/index.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/minify'>;
-}
-declare module 'babel-plugin-styled-components/lib/utils/detectors.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/detectors'>;
-}
-declare module 'babel-plugin-styled-components/lib/utils/getName.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/getName'>;
-}
-declare module 'babel-plugin-styled-components/lib/utils/hash.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/hash'>;
-}
-declare module 'babel-plugin-styled-components/lib/utils/options.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/options'>;
-}
-declare module 'babel-plugin-styled-components/lib/utils/prefixDigit.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/utils/prefixDigit'>;
-}
-declare module 'babel-plugin-styled-components/lib/visitors/assignStyledRequired.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/assignStyledRequired'>;
-}
-declare module 'babel-plugin-styled-components/lib/visitors/displayNameAndId.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/displayNameAndId'>;
-}
-declare module 'babel-plugin-styled-components/lib/visitors/minify.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/minify'>;
-}
-declare module 'babel-plugin-styled-components/lib/visitors/pure.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/pure'>;
-}
-declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals/index' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/templateLiterals'>;
-}
-declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals/index.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/templateLiterals'>;
-}
-declare module 'babel-plugin-styled-components/lib/visitors/templateLiterals/transpile.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/templateLiterals/transpile'>;
-}
-declare module 'babel-plugin-styled-components/lib/visitors/transpileCssProp.js' {
- declare module.exports: $Exports<'babel-plugin-styled-components/lib/visitors/transpileCssProp'>;
-}
diff --git a/flow-typed/npm/babel-plugin-syntax-dynamic-import_vx.x.x.js b/flow-typed/npm/babel-plugin-syntax-dynamic-import_vx.x.x.js
deleted file mode 100644
index c923d646..00000000
--- a/flow-typed/npm/babel-plugin-syntax-dynamic-import_vx.x.x.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// flow-typed signature: 5f79a76723addddccfa234b1dbc4f569
-// flow-typed version: <>/babel-plugin-syntax-dynamic-import_v^6.18.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-syntax-dynamic-import'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-syntax-dynamic-import' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-syntax-dynamic-import/lib' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-syntax-dynamic-import/lib/index' {
- declare module.exports: $Exports<'babel-plugin-syntax-dynamic-import/lib'>;
-}
-declare module 'babel-plugin-syntax-dynamic-import/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-syntax-dynamic-import/lib'>;
-}
diff --git a/flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js
deleted file mode 100644
index c9db56ff..00000000
--- a/flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// flow-typed signature: a0c48cc9091d42b6f776d5d50392e26d
-// flow-typed version: <>/babel-plugin-transform-class-properties_v^6.24.1/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-transform-class-properties'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-transform-class-properties' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-transform-class-properties/lib' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-transform-class-properties/lib/index' {
- declare module.exports: $Exports<'babel-plugin-transform-class-properties/lib'>;
-}
-declare module 'babel-plugin-transform-class-properties/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-transform-class-properties/lib'>;
-}
diff --git a/flow-typed/npm/babel-plugin-transform-decorators-legacy_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-decorators-legacy_vx.x.x.js
deleted file mode 100644
index 4868510f..00000000
--- a/flow-typed/npm/babel-plugin-transform-decorators-legacy_vx.x.x.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// flow-typed signature: b836884f23579ae6c832756bf83b796d
-// flow-typed version: <>/babel-plugin-transform-decorators-legacy_v1.3.4/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-transform-decorators-legacy'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-transform-decorators-legacy' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-transform-decorators-legacy/lib' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-transform-decorators-legacy/lib/index' {
- declare module.exports: $Exports<'babel-plugin-transform-decorators-legacy/lib'>;
-}
-declare module 'babel-plugin-transform-decorators-legacy/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-transform-decorators-legacy/lib'>;
-}
diff --git a/flow-typed/npm/babel-plugin-transform-es2015-destructuring_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-es2015-destructuring_vx.x.x.js
deleted file mode 100644
index 74ce0dba..00000000
--- a/flow-typed/npm/babel-plugin-transform-es2015-destructuring_vx.x.x.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// flow-typed signature: e561ef1cceb05019070b2b1425b27072
-// flow-typed version: <>/babel-plugin-transform-es2015-destructuring_v^6.23.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-transform-es2015-destructuring'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-transform-es2015-destructuring' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-transform-es2015-destructuring/lib' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-transform-es2015-destructuring/lib/index' {
- declare module.exports: $Exports<'babel-plugin-transform-es2015-destructuring/lib'>;
-}
-declare module 'babel-plugin-transform-es2015-destructuring/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-transform-es2015-destructuring/lib'>;
-}
diff --git a/flow-typed/npm/babel-plugin-transform-es2015-modules-commonjs_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-es2015-modules-commonjs_vx.x.x.js
deleted file mode 100644
index 8a6ce42b..00000000
--- a/flow-typed/npm/babel-plugin-transform-es2015-modules-commonjs_vx.x.x.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// flow-typed signature: 341fdbc1a42587ab601825e28183b88d
-// flow-typed version: <>/babel-plugin-transform-es2015-modules-commonjs_v^6.24.1/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-transform-es2015-modules-commonjs'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-transform-es2015-modules-commonjs' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-transform-es2015-modules-commonjs/lib' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-transform-es2015-modules-commonjs/lib/index' {
- declare module.exports: $Exports<'babel-plugin-transform-es2015-modules-commonjs/lib'>;
-}
-declare module 'babel-plugin-transform-es2015-modules-commonjs/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-transform-es2015-modules-commonjs/lib'>;
-}
diff --git a/flow-typed/npm/babel-plugin-transform-object-rest-spread_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-object-rest-spread_vx.x.x.js
deleted file mode 100644
index 8a7d8e13..00000000
--- a/flow-typed/npm/babel-plugin-transform-object-rest-spread_vx.x.x.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// flow-typed signature: 659f32de98b9b69afaf540f7c108b778
-// flow-typed version: <>/babel-plugin-transform-object-rest-spread_v^6.23.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-transform-object-rest-spread'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-transform-object-rest-spread' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-transform-object-rest-spread/lib' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-transform-object-rest-spread/lib/index' {
- declare module.exports: $Exports<'babel-plugin-transform-object-rest-spread/lib'>;
-}
-declare module 'babel-plugin-transform-object-rest-spread/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-transform-object-rest-spread/lib'>;
-}
diff --git a/flow-typed/npm/babel-plugin-transform-regenerator_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-regenerator_vx.x.x.js
deleted file mode 100644
index dbbea3f4..00000000
--- a/flow-typed/npm/babel-plugin-transform-regenerator_vx.x.x.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// flow-typed signature: fd8b09639b1dba4d4087856f22a3d703
-// flow-typed version: <>/babel-plugin-transform-regenerator_v^6.24.1/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-plugin-transform-regenerator'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-plugin-transform-regenerator' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-plugin-transform-regenerator/lib' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-plugin-transform-regenerator/lib/index' {
- declare module.exports: $Exports<'babel-plugin-transform-regenerator/lib'>;
-}
-declare module 'babel-plugin-transform-regenerator/lib/index.js' {
- declare module.exports: $Exports<'babel-plugin-transform-regenerator/lib'>;
-}
diff --git a/flow-typed/npm/babel-polyfill_v6.x.x.js b/flow-typed/npm/babel-polyfill_v6.x.x.js
deleted file mode 100644
index 95195eaa..00000000
--- a/flow-typed/npm/babel-polyfill_v6.x.x.js
+++ /dev/null
@@ -1,4 +0,0 @@
-// flow-typed signature: 29a6ec8f7f4b42ab84093c5f7b57d5fd
-// flow-typed version: c6154227d1/babel-polyfill_v6.x.x/flow_>=v0.104.x
-
-declare module 'babel-polyfill' {}
diff --git a/flow-typed/npm/babel-preset-env_vx.x.x.js b/flow-typed/npm/babel-preset-env_vx.x.x.js
deleted file mode 100644
index 8d704e46..00000000
--- a/flow-typed/npm/babel-preset-env_vx.x.x.js
+++ /dev/null
@@ -1,91 +0,0 @@
-// flow-typed signature: 4fb7abcf80b53ba995faa21fc7765ebb
-// flow-typed version: <>/babel-preset-env_v^1.4.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-preset-env'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-preset-env' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-preset-env/data/built-in-features' {
- declare module.exports: any;
-}
-
-declare module 'babel-preset-env/data/plugin-features' {
- declare module.exports: any;
-}
-
-declare module 'babel-preset-env/lib/default-includes' {
- declare module.exports: any;
-}
-
-declare module 'babel-preset-env/lib' {
- declare module.exports: any;
-}
-
-declare module 'babel-preset-env/lib/module-transformations' {
- declare module.exports: any;
-}
-
-declare module 'babel-preset-env/lib/normalize-options' {
- declare module.exports: any;
-}
-
-declare module 'babel-preset-env/lib/targets-parser' {
- declare module.exports: any;
-}
-
-declare module 'babel-preset-env/lib/transform-polyfill-require-plugin' {
- declare module.exports: any;
-}
-
-declare module 'babel-preset-env/lib/utils' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-preset-env/data/built-in-features.js' {
- declare module.exports: $Exports<'babel-preset-env/data/built-in-features'>;
-}
-declare module 'babel-preset-env/data/plugin-features.js' {
- declare module.exports: $Exports<'babel-preset-env/data/plugin-features'>;
-}
-declare module 'babel-preset-env/lib/default-includes.js' {
- declare module.exports: $Exports<'babel-preset-env/lib/default-includes'>;
-}
-declare module 'babel-preset-env/lib/index' {
- declare module.exports: $Exports<'babel-preset-env/lib'>;
-}
-declare module 'babel-preset-env/lib/index.js' {
- declare module.exports: $Exports<'babel-preset-env/lib'>;
-}
-declare module 'babel-preset-env/lib/module-transformations.js' {
- declare module.exports: $Exports<'babel-preset-env/lib/module-transformations'>;
-}
-declare module 'babel-preset-env/lib/normalize-options.js' {
- declare module.exports: $Exports<'babel-preset-env/lib/normalize-options'>;
-}
-declare module 'babel-preset-env/lib/targets-parser.js' {
- declare module.exports: $Exports<'babel-preset-env/lib/targets-parser'>;
-}
-declare module 'babel-preset-env/lib/transform-polyfill-require-plugin.js' {
- declare module.exports: $Exports<'babel-preset-env/lib/transform-polyfill-require-plugin'>;
-}
-declare module 'babel-preset-env/lib/utils.js' {
- declare module.exports: $Exports<'babel-preset-env/lib/utils'>;
-}
diff --git a/flow-typed/npm/babel-preset-react-hmre_vx.x.x.js b/flow-typed/npm/babel-preset-react-hmre_vx.x.x.js
deleted file mode 100644
index 733d865e..00000000
--- a/flow-typed/npm/babel-preset-react-hmre_vx.x.x.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// flow-typed signature: df1bbd507ba7266eafb8510b78ad0e28
-// flow-typed version: <>/babel-preset-react-hmre_v1.1.1/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-preset-react-hmre'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-preset-react-hmre' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-preset-react-hmre/test/Test' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-preset-react-hmre/index' {
- declare module.exports: $Exports<'babel-preset-react-hmre'>;
-}
-declare module 'babel-preset-react-hmre/index.js' {
- declare module.exports: $Exports<'babel-preset-react-hmre'>;
-}
-declare module 'babel-preset-react-hmre/test/Test.js' {
- declare module.exports: $Exports<'babel-preset-react-hmre/test/Test'>;
-}
diff --git a/flow-typed/npm/babel-preset-react_vx.x.x.js b/flow-typed/npm/babel-preset-react_vx.x.x.js
deleted file mode 100644
index ebe2bbad..00000000
--- a/flow-typed/npm/babel-preset-react_vx.x.x.js
+++ /dev/null
@@ -1,33 +0,0 @@
-// flow-typed signature: e175fd9da28bb61b73ff1f1d0954bbc6
-// flow-typed version: <>/babel-preset-react_v6.11.1/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-preset-react'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-preset-react' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-
-
-// Filename aliases
-declare module 'babel-preset-react/index' {
- declare module.exports: $Exports<'babel-preset-react'>;
-}
-declare module 'babel-preset-react/index.js' {
- declare module.exports: $Exports<'babel-preset-react'>;
-}
diff --git a/flow-typed/npm/babel-regenerator-runtime_vx.x.x.js b/flow-typed/npm/babel-regenerator-runtime_vx.x.x.js
deleted file mode 100644
index 1dd90f76..00000000
--- a/flow-typed/npm/babel-regenerator-runtime_vx.x.x.js
+++ /dev/null
@@ -1,39 +0,0 @@
-// flow-typed signature: 7109a737c73456665c67bd71a64628fc
-// flow-typed version: <>/babel-regenerator-runtime_v6.5.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'babel-regenerator-runtime'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'babel-regenerator-runtime' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'babel-regenerator-runtime/runtime-module' {
- declare module.exports: any;
-}
-
-declare module 'babel-regenerator-runtime/runtime' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'babel-regenerator-runtime/runtime-module.js' {
- declare module.exports: $Exports<'babel-regenerator-runtime/runtime-module'>;
-}
-declare module 'babel-regenerator-runtime/runtime.js' {
- declare module.exports: $Exports<'babel-regenerator-runtime/runtime'>;
-}
diff --git a/flow-typed/npm/core-js_vx.x.x.js b/flow-typed/npm/core-js_vx.x.x.js
new file mode 100644
index 00000000..c95f54ae
--- /dev/null
+++ b/flow-typed/npm/core-js_vx.x.x.js
@@ -0,0 +1,12113 @@
+// flow-typed signature: b735ad8cb0ec92bd0faf84377f92a185
+// flow-typed version: <>/core-js_v3/flow_v0.104.0
+
+/**
+ * This is an autogenerated libdef stub for:
+ *
+ * 'core-js'
+ *
+ * Fill this stub out by replacing all the `any` types.
+ *
+ * Once filled out, we encourage you to share your work with the
+ * community by sending a pull request to:
+ * https://github.com/flowtype/flow-typed
+ */
+
+declare module 'core-js' {
+ declare module.exports: any;
+}
+
+/**
+ * We include stubs for each file inside this npm package in case you need to
+ * require those files directly. Feel free to delete any files that aren't
+ * needed.
+ */
+declare module 'core-js/configurator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array-buffer/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array-buffer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array-buffer/is-view' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array-buffer/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/is-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/array/virtual/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/data-view' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/date' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/date/now' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/date/to-iso-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/date/to-json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/date/to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/date/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/function/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/function/has-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/function' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/function/name' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/function/virtual/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/function/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/global-this' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/flags' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/instance/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/json/stringify' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/json/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/acosh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/asinh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/atanh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/cbrt' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/clz32' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/cosh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/expm1' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/fround' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/hypot' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/imul' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/log10' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/log1p' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/log2' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/sign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/sinh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/tanh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/math/trunc' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/epsilon' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/is-finite' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/is-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/is-nan' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/is-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/max-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/min-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/to-fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/to-precision' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/virtual/to-fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/number/virtual/to-precision' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/assign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/create' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/define-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/define-properties' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/define-setter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/freeze' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/from-entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/get-own-property-descriptors' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/get-own-property-names' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/get-own-property-symbols' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/is-extensible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/is-frozen' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/is-sealed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/is' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/lookup-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/lookup-setter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/prevent-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/seal' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/object/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/promise/all-settled' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/promise/finally' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/promise' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/apply' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/construct' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/delete-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/get' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/has' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/is-extensible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/own-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/prevent-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/reflect/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/flags' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/sticky' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/test' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/regexp/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/anchor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/big' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/blink' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/bold' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/fontcolor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/fontsize' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/from-code-point' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/italics' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/link' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/raw' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/small' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/strike' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/sub' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/sup' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/anchor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/big' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/blink' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/bold' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/fontcolor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/fontsize' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/italics' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/link' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/small' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/strike' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/sub' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/sup' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/string/virtual/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/async-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/description' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/for' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/has-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/is-concat-spreadable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/key-for' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/species' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/symbol/unscopables' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/float32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/float64-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/int16-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/int32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/int8-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/methods' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/subarray' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/to-locale-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/uint16-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/uint32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/uint8-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/uint8-clamped-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/typed-array/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/weak-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/es/weak-set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/aggregate-error' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array-buffer/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array-buffer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array-buffer/is-view' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array-buffer/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/is-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/is-template-object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/last-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/last-item' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/array/virtual/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/as-indexed-pairs' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/drop' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/take' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/async-iterator/to-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/clear-immediate' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/composite-key' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/composite-symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/data-view' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/date' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/date/now' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/date/to-iso-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/date/to-json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/date/to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/date/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/dom-collections/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/dom-collections' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/dom-collections/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/function/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/function/has-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/function' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/function/name' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/function/virtual/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/function/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/get-iterator-method' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/get-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/global-this' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/code-points' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/flags' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/replace-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/instance/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/is-iterable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/as-indexed-pairs' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/drop' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/take' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/iterator/to-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/json/stringify' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/json/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/find-key' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/group-by' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/key-by' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/key-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/map-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/map-values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/merge' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/update-or-insert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/update' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/map/upsert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/acosh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/asinh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/atanh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/cbrt' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/clamp' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/clz32' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/cosh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/deg-per-rad' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/degrees' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/expm1' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/fround' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/fscale' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/hypot' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/iaddh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/imul' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/imulh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/isubh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/log10' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/log1p' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/log2' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/rad-per-deg' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/radians' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/scale' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/seeded-prng' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/sign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/signbit' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/sinh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/tanh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/trunc' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/math/umulh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/epsilon' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/from-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/is-finite' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/is-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/is-nan' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/is-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/max-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/min-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/to-fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/to-precision' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/virtual/to-fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/number/virtual/to-precision' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/assign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/create' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/define-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/define-properties' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/define-setter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/freeze' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/from-entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/get-own-property-descriptors' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/get-own-property-names' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/get-own-property-symbols' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/is-extensible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/is-frozen' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/is-sealed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/is' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/iterate-entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/iterate-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/iterate-values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/lookup-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/lookup-setter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/prevent-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/seal' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/object/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/observable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/promise/all-settled' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/promise/any' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/promise/finally' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/promise' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/promise/try' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/queue-microtask' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/apply' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/construct' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/define-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/delete-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/delete-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/get-metadata-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/get-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/get-own-metadata-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/get-own-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/get' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/has-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/has-own-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/has' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/is-extensible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/own-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/prevent-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/reflect/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/flags' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/sticky' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/test' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/regexp/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set-immediate' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set-interval' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set-timeout' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/add-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/difference' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/intersection' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/is-disjoint-from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/is-subset-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/is-superset-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/symmetric-difference' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/set/union' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/anchor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/big' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/blink' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/bold' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/code-points' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/fontcolor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/fontsize' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/from-code-point' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/italics' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/link' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/raw' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/replace-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/small' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/strike' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/sub' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/sup' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/anchor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/big' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/blink' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/bold' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/code-points' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/fontcolor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/fontsize' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/italics' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/link' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/replace-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/small' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/strike' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/sub' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/sup' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/string/virtual/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/async-dispose' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/async-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/description' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/dispose' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/for' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/has-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/is-concat-spreadable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/key-for' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/observable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/pattern-match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/replace-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/species' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/symbol/unscopables' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/float32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/float64-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/int16-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/int32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/int8-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/subarray' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/to-locale-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/uint16-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/uint32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/uint8-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/uint8-clamped-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/typed-array/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/url-search-params' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/url' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/url/to-json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-map/delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-map/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-map/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-map/upsert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-set/add-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-set/delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-set/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/features/weak-set/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/a-function' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/a-possible-prototype' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/add-to-unscopables' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/advance-string-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/an-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/an-object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-buffer-native' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-buffer-view-core' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-buffer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-iteration' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-method-has-species-support' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-method-is-strict' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-method-uses-to-length' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/array-species-create' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/async-iterator-create-proxy' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/async-iterator-iteration' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/async-iterator-prototype' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/call-with-safe-iteration-closing' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/check-correctness-of-iteration' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/classof-raw' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/classof' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/collection-add-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/collection-delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/collection-from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/collection-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/collection-strong' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/collection-weak' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/collection' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/composite-key' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/copy-constructor-properties' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/correct-is-regexp-logic' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/correct-prototype-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/create-html' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/create-iterator-constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/create-non-enumerable-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/create-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/create-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/date-to-iso-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/date-to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/define-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/define-well-known-symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/descriptors' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/document-create-element' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/dom-iterables' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/engine-is-ios' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/engine-user-agent' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/engine-v8-version' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/entry-unbind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/entry-virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/enum-bug-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/export' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/fails' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/fix-regexp-well-known-symbol-logic' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/flatten-into-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/freezing' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/function-bind-context' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/function-bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/get-async-iterator-method' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/get-built-in' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/get-iterator-method' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/get-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/get-map-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/get-set-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/global' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/has' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/hidden-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/host-report-errors' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/html' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/ie8-dom-define' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/ieee754' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/indexed-object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/inherit-if-required' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/inspect-source' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/internal-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/internal-state' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/is-array-iterator-method' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/is-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/is-forced' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/is-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/is-iterable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/is-object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/is-pure' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/is-regexp' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/iterate' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/iterator-create-proxy' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/iterators-core' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/iterators' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/map-upsert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/math-expm1' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/math-fround' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/math-log1p' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/math-scale' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/math-sign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/microtask' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/native-promise-constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/native-symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/native-url' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/native-weak-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/new-promise-capability' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/not-a-regexp' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/number-is-finite' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/number-parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/number-parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-assign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-create' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-define-properties' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-get-own-property-names-external' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-get-own-property-names' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-get-own-property-symbols' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-keys-internal' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-property-is-enumerable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-prototype-accessors-forced' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-to-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/object-to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/own-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/path' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/perform' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/promise-resolve' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/redefine-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/redefine' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/reflect-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/regexp-exec-abstract' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/regexp-exec' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/regexp-flags' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/regexp-sticky-helpers' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/require-object-coercible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/same-value-zero' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/same-value' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/set-global' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/set-species' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/set-to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/shared-key' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/shared-store' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/shared' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/species-constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/string-html-forced' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/string-multibyte' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/string-pad-webkit-bug' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/string-pad' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/string-punycode-to-ascii' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/string-repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/string-trim-forced' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/string-trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/task' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/this-number-value' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-absolute-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-indexed-object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-length' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-offset' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-positive-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/to-string-tag-support' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/typed-array-constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/typed-array-constructors-require-wrappers' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/typed-array-from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/uid' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/use-symbol-as-uid' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/well-known-symbol-wrapped' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/well-known-symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/internals/whitespaces' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array-buffer.constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array-buffer.is-view' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array-buffer.slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.is-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.species' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.unscopables.flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.array.unscopables.flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.data-view' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.date.now' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.date.to-iso-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.date.to-json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.date.to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.date.to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.function.bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.function.has-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.function.name' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.global-this' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.json.stringify' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.json.to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.acosh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.asinh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.atanh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.cbrt' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.clz32' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.cosh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.expm1' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.fround' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.hypot' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.imul' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.log10' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.log1p' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.log2' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.sign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.sinh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.tanh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.math.trunc' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.epsilon' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.is-finite' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.is-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.is-nan' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.is-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.max-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.min-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.to-fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.number.to-precision' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.assign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.create' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.define-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.define-properties' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.define-setter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.freeze' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.from-entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.get-own-property-descriptors' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.get-own-property-names' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.is-extensible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.is-frozen' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.is-sealed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.is' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.lookup-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.lookup-setter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.prevent-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.seal' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.object.values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.promise.all-settled' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.promise.finally' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.promise' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.apply' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.construct' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.delete-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.get' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.has' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.is-extensible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.own-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.prevent-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.reflect.set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.regexp.constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.regexp.exec' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.regexp.flags' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.regexp.sticky' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.regexp.test' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.regexp.to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.anchor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.big' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.blink' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.bold' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.fontcolor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.fontsize' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.from-code-point' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.italics' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.link' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.raw' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.small' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.strike' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.sub' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.sup' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.string.trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.async-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.description' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.has-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.is-concat-spreadable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.species' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.symbol.unscopables' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.float32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.float64-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.int16-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.int32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.int8-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.subarray' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.to-locale-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.uint16-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.uint32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.uint8-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.typed-array.uint8-clamped-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.weak-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/es.weak-set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.aggregate-error' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.array.is-template-object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.array.last-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.array.last-item' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.as-indexed-pairs' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.drop' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.take' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.async-iterator.to-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.composite-key' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.composite-symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.global-this' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.as-indexed-pairs' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.drop' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.take' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.iterator.to-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.find-key' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.group-by' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.key-by' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.key-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.map-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.map-values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.merge' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.update-or-insert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.update' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.map.upsert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.clamp' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.deg-per-rad' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.degrees' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.fscale' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.iaddh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.imulh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.isubh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.rad-per-deg' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.radians' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.scale' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.seeded-prng' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.signbit' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.math.umulh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.number.from-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.object.iterate-entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.object.iterate-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.object.iterate-values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.observable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.promise.all-settled' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.promise.any' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.promise.try' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.define-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.delete-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.get-metadata-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.get-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.get-own-metadata-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.get-own-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.has-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.has-own-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.reflect.metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.add-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.difference' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.intersection' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.is-disjoint-from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.is-subset-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.is-superset-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.symmetric-difference' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.set.union' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.string.at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.string.code-points' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.string.match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.string.replace-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.symbol.async-dispose' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.symbol.dispose' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.symbol.observable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.symbol.pattern-match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.symbol.replace-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.weak-map.delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.weak-map.from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.weak-map.of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.weak-map.upsert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.weak-set.add-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.weak-set.delete-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.weak-set.from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/esnext.weak-set.of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/web.dom-collections.for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/web.dom-collections.iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/web.immediate' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/web.queue-microtask' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/web.timers' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/web.url-search-params' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/web.url' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/modules/web.url.to-json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/postinstall' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/array-is-template-object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/array-last' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/collection-methods' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/collection-of-from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/efficient-64-bit-arithmetic' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/global-this' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/iterator-helpers' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/keys-composition' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/map-update-or-insert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/map-upsert' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/math-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/math-signbit' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/number-from-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/object-iteration' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/observable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/pattern-matching' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/promise-all-settled' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/promise-any' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/promise-try' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/reflect-metadata' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/seeded-random' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/set-methods' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/string-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/string-code-points' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/string-match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/string-replace-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/url' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/proposals/using-statement' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array-buffer/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array-buffer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array-buffer/is-view' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array-buffer/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/is-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/array/virtual/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/clear-immediate' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/data-view' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/date' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/date/now' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/date/to-iso-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/date/to-json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/date/to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/date/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/dom-collections/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/dom-collections' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/dom-collections/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/function/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/function/has-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/function' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/function/name' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/function/virtual/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/function/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/global-this' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/bind' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/concat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/flags' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/flat-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/flat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/splice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/instance/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/json/stringify' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/json/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/acosh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/asinh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/atanh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/cbrt' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/clz32' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/cosh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/expm1' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/fround' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/hypot' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/imul' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/log10' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/log1p' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/log2' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/sign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/sinh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/tanh' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/math/trunc' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/epsilon' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/is-finite' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/is-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/is-nan' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/is-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/max-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/min-safe-integer' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/to-fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/to-precision' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/virtual/to-fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/number/virtual/to-precision' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/assign' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/create' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/define-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/define-properties' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/define-setter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/freeze' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/from-entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/get-own-property-descriptors' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/get-own-property-names' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/get-own-property-symbols' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/is-extensible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/is-frozen' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/is-sealed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/is' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/lookup-getter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/lookup-setter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/prevent-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/seal' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/object/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/parse-float' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/parse-int' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/promise/all-settled' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/promise/finally' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/promise' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/queue-microtask' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/apply' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/construct' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/define-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/delete-property' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/get-own-property-descriptor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/get-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/get' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/has' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/is-extensible' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/own-keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/prevent-extensions' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/set-prototype-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/reflect/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/constructor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/flags' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/sticky' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/test' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/regexp/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/set-immediate' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/set-interval' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/set-timeout' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/anchor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/big' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/blink' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/bold' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/fontcolor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/fontsize' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/from-code-point' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/italics' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/link' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/raw' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/small' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/strike' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/sub' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/sup' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/anchor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/big' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/blink' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/bold' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/code-point-at' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/ends-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/fixed' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/fontcolor' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/fontsize' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/italics' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/link' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/pad-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/pad-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/repeat' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/small' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/starts-with' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/strike' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/sub' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/sup' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/trim-end' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/trim-left' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/trim-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/trim-start' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/string/virtual/trim' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/async-iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/description' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/for' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/has-instance' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/is-concat-spreadable' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/key-for' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/match-all' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/match' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/replace' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/search' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/species' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/split' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/to-primitive' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/to-string-tag' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/symbol/unscopables' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/copy-within' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/entries' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/every' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/fill' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/filter' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/find-index' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/find' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/float32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/float64-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/for-each' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/from' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/includes' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/int16-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/int32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/int8-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/iterator' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/join' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/keys' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/last-index-of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/of' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/reduce-right' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/reduce' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/reverse' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/slice' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/some' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/sort' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/subarray' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/to-locale-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/to-string' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/uint16-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/uint32-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/uint8-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/uint8-clamped-array' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/typed-array/values' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/url-search-params' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/url' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/url/to-json' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/weak-map' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stable/weak-set' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stage/0' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stage/1' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stage/2' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stage/3' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stage/4' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stage' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/stage/pre' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/web/dom-collections' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/web/immediate' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/web' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/web/queue-microtask' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/web/timers' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/web/url-search-params' {
+ declare module.exports: any;
+}
+
+declare module 'core-js/web/url' {
+ declare module.exports: any;
+}
+
+// Filename aliases
+declare module 'core-js/configurator.js' {
+ declare module.exports: $Exports<'core-js/configurator'>;
+}
+declare module 'core-js/es/array-buffer/constructor.js' {
+ declare module.exports: $Exports<'core-js/es/array-buffer/constructor'>;
+}
+declare module 'core-js/es/array-buffer/index' {
+ declare module.exports: $Exports<'core-js/es/array-buffer'>;
+}
+declare module 'core-js/es/array-buffer/index.js' {
+ declare module.exports: $Exports<'core-js/es/array-buffer'>;
+}
+declare module 'core-js/es/array-buffer/is-view.js' {
+ declare module.exports: $Exports<'core-js/es/array-buffer/is-view'>;
+}
+declare module 'core-js/es/array-buffer/slice.js' {
+ declare module.exports: $Exports<'core-js/es/array-buffer/slice'>;
+}
+declare module 'core-js/es/array/concat.js' {
+ declare module.exports: $Exports<'core-js/es/array/concat'>;
+}
+declare module 'core-js/es/array/copy-within.js' {
+ declare module.exports: $Exports<'core-js/es/array/copy-within'>;
+}
+declare module 'core-js/es/array/entries.js' {
+ declare module.exports: $Exports<'core-js/es/array/entries'>;
+}
+declare module 'core-js/es/array/every.js' {
+ declare module.exports: $Exports<'core-js/es/array/every'>;
+}
+declare module 'core-js/es/array/fill.js' {
+ declare module.exports: $Exports<'core-js/es/array/fill'>;
+}
+declare module 'core-js/es/array/filter.js' {
+ declare module.exports: $Exports<'core-js/es/array/filter'>;
+}
+declare module 'core-js/es/array/find-index.js' {
+ declare module.exports: $Exports<'core-js/es/array/find-index'>;
+}
+declare module 'core-js/es/array/find.js' {
+ declare module.exports: $Exports<'core-js/es/array/find'>;
+}
+declare module 'core-js/es/array/flat-map.js' {
+ declare module.exports: $Exports<'core-js/es/array/flat-map'>;
+}
+declare module 'core-js/es/array/flat.js' {
+ declare module.exports: $Exports<'core-js/es/array/flat'>;
+}
+declare module 'core-js/es/array/for-each.js' {
+ declare module.exports: $Exports<'core-js/es/array/for-each'>;
+}
+declare module 'core-js/es/array/from.js' {
+ declare module.exports: $Exports<'core-js/es/array/from'>;
+}
+declare module 'core-js/es/array/includes.js' {
+ declare module.exports: $Exports<'core-js/es/array/includes'>;
+}
+declare module 'core-js/es/array/index-of.js' {
+ declare module.exports: $Exports<'core-js/es/array/index-of'>;
+}
+declare module 'core-js/es/array/index' {
+ declare module.exports: $Exports<'core-js/es/array'>;
+}
+declare module 'core-js/es/array/index.js' {
+ declare module.exports: $Exports<'core-js/es/array'>;
+}
+declare module 'core-js/es/array/is-array.js' {
+ declare module.exports: $Exports<'core-js/es/array/is-array'>;
+}
+declare module 'core-js/es/array/iterator.js' {
+ declare module.exports: $Exports<'core-js/es/array/iterator'>;
+}
+declare module 'core-js/es/array/join.js' {
+ declare module.exports: $Exports<'core-js/es/array/join'>;
+}
+declare module 'core-js/es/array/keys.js' {
+ declare module.exports: $Exports<'core-js/es/array/keys'>;
+}
+declare module 'core-js/es/array/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/es/array/last-index-of'>;
+}
+declare module 'core-js/es/array/map.js' {
+ declare module.exports: $Exports<'core-js/es/array/map'>;
+}
+declare module 'core-js/es/array/of.js' {
+ declare module.exports: $Exports<'core-js/es/array/of'>;
+}
+declare module 'core-js/es/array/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/es/array/reduce-right'>;
+}
+declare module 'core-js/es/array/reduce.js' {
+ declare module.exports: $Exports<'core-js/es/array/reduce'>;
+}
+declare module 'core-js/es/array/reverse.js' {
+ declare module.exports: $Exports<'core-js/es/array/reverse'>;
+}
+declare module 'core-js/es/array/slice.js' {
+ declare module.exports: $Exports<'core-js/es/array/slice'>;
+}
+declare module 'core-js/es/array/some.js' {
+ declare module.exports: $Exports<'core-js/es/array/some'>;
+}
+declare module 'core-js/es/array/sort.js' {
+ declare module.exports: $Exports<'core-js/es/array/sort'>;
+}
+declare module 'core-js/es/array/splice.js' {
+ declare module.exports: $Exports<'core-js/es/array/splice'>;
+}
+declare module 'core-js/es/array/values.js' {
+ declare module.exports: $Exports<'core-js/es/array/values'>;
+}
+declare module 'core-js/es/array/virtual/concat.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/concat'>;
+}
+declare module 'core-js/es/array/virtual/copy-within.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/copy-within'>;
+}
+declare module 'core-js/es/array/virtual/entries.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/entries'>;
+}
+declare module 'core-js/es/array/virtual/every.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/every'>;
+}
+declare module 'core-js/es/array/virtual/fill.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/fill'>;
+}
+declare module 'core-js/es/array/virtual/filter.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/filter'>;
+}
+declare module 'core-js/es/array/virtual/find-index.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/find-index'>;
+}
+declare module 'core-js/es/array/virtual/find.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/find'>;
+}
+declare module 'core-js/es/array/virtual/flat-map.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/flat-map'>;
+}
+declare module 'core-js/es/array/virtual/flat.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/flat'>;
+}
+declare module 'core-js/es/array/virtual/for-each.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/for-each'>;
+}
+declare module 'core-js/es/array/virtual/includes.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/includes'>;
+}
+declare module 'core-js/es/array/virtual/index-of.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/index-of'>;
+}
+declare module 'core-js/es/array/virtual/index' {
+ declare module.exports: $Exports<'core-js/es/array/virtual'>;
+}
+declare module 'core-js/es/array/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual'>;
+}
+declare module 'core-js/es/array/virtual/iterator.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/iterator'>;
+}
+declare module 'core-js/es/array/virtual/join.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/join'>;
+}
+declare module 'core-js/es/array/virtual/keys.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/keys'>;
+}
+declare module 'core-js/es/array/virtual/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/last-index-of'>;
+}
+declare module 'core-js/es/array/virtual/map.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/map'>;
+}
+declare module 'core-js/es/array/virtual/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/reduce-right'>;
+}
+declare module 'core-js/es/array/virtual/reduce.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/reduce'>;
+}
+declare module 'core-js/es/array/virtual/reverse.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/reverse'>;
+}
+declare module 'core-js/es/array/virtual/slice.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/slice'>;
+}
+declare module 'core-js/es/array/virtual/some.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/some'>;
+}
+declare module 'core-js/es/array/virtual/sort.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/sort'>;
+}
+declare module 'core-js/es/array/virtual/splice.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/splice'>;
+}
+declare module 'core-js/es/array/virtual/values.js' {
+ declare module.exports: $Exports<'core-js/es/array/virtual/values'>;
+}
+declare module 'core-js/es/data-view/index' {
+ declare module.exports: $Exports<'core-js/es/data-view'>;
+}
+declare module 'core-js/es/data-view/index.js' {
+ declare module.exports: $Exports<'core-js/es/data-view'>;
+}
+declare module 'core-js/es/date/index' {
+ declare module.exports: $Exports<'core-js/es/date'>;
+}
+declare module 'core-js/es/date/index.js' {
+ declare module.exports: $Exports<'core-js/es/date'>;
+}
+declare module 'core-js/es/date/now.js' {
+ declare module.exports: $Exports<'core-js/es/date/now'>;
+}
+declare module 'core-js/es/date/to-iso-string.js' {
+ declare module.exports: $Exports<'core-js/es/date/to-iso-string'>;
+}
+declare module 'core-js/es/date/to-json.js' {
+ declare module.exports: $Exports<'core-js/es/date/to-json'>;
+}
+declare module 'core-js/es/date/to-primitive.js' {
+ declare module.exports: $Exports<'core-js/es/date/to-primitive'>;
+}
+declare module 'core-js/es/date/to-string.js' {
+ declare module.exports: $Exports<'core-js/es/date/to-string'>;
+}
+declare module 'core-js/es/function/bind.js' {
+ declare module.exports: $Exports<'core-js/es/function/bind'>;
+}
+declare module 'core-js/es/function/has-instance.js' {
+ declare module.exports: $Exports<'core-js/es/function/has-instance'>;
+}
+declare module 'core-js/es/function/index' {
+ declare module.exports: $Exports<'core-js/es/function'>;
+}
+declare module 'core-js/es/function/index.js' {
+ declare module.exports: $Exports<'core-js/es/function'>;
+}
+declare module 'core-js/es/function/name.js' {
+ declare module.exports: $Exports<'core-js/es/function/name'>;
+}
+declare module 'core-js/es/function/virtual/bind.js' {
+ declare module.exports: $Exports<'core-js/es/function/virtual/bind'>;
+}
+declare module 'core-js/es/function/virtual/index' {
+ declare module.exports: $Exports<'core-js/es/function/virtual'>;
+}
+declare module 'core-js/es/function/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/es/function/virtual'>;
+}
+declare module 'core-js/es/global-this.js' {
+ declare module.exports: $Exports<'core-js/es/global-this'>;
+}
+declare module 'core-js/es/index' {
+ declare module.exports: $Exports<'core-js/es'>;
+}
+declare module 'core-js/es/index.js' {
+ declare module.exports: $Exports<'core-js/es'>;
+}
+declare module 'core-js/es/instance/bind.js' {
+ declare module.exports: $Exports<'core-js/es/instance/bind'>;
+}
+declare module 'core-js/es/instance/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/es/instance/code-point-at'>;
+}
+declare module 'core-js/es/instance/concat.js' {
+ declare module.exports: $Exports<'core-js/es/instance/concat'>;
+}
+declare module 'core-js/es/instance/copy-within.js' {
+ declare module.exports: $Exports<'core-js/es/instance/copy-within'>;
+}
+declare module 'core-js/es/instance/ends-with.js' {
+ declare module.exports: $Exports<'core-js/es/instance/ends-with'>;
+}
+declare module 'core-js/es/instance/entries.js' {
+ declare module.exports: $Exports<'core-js/es/instance/entries'>;
+}
+declare module 'core-js/es/instance/every.js' {
+ declare module.exports: $Exports<'core-js/es/instance/every'>;
+}
+declare module 'core-js/es/instance/fill.js' {
+ declare module.exports: $Exports<'core-js/es/instance/fill'>;
+}
+declare module 'core-js/es/instance/filter.js' {
+ declare module.exports: $Exports<'core-js/es/instance/filter'>;
+}
+declare module 'core-js/es/instance/find-index.js' {
+ declare module.exports: $Exports<'core-js/es/instance/find-index'>;
+}
+declare module 'core-js/es/instance/find.js' {
+ declare module.exports: $Exports<'core-js/es/instance/find'>;
+}
+declare module 'core-js/es/instance/flags.js' {
+ declare module.exports: $Exports<'core-js/es/instance/flags'>;
+}
+declare module 'core-js/es/instance/flat-map.js' {
+ declare module.exports: $Exports<'core-js/es/instance/flat-map'>;
+}
+declare module 'core-js/es/instance/flat.js' {
+ declare module.exports: $Exports<'core-js/es/instance/flat'>;
+}
+declare module 'core-js/es/instance/for-each.js' {
+ declare module.exports: $Exports<'core-js/es/instance/for-each'>;
+}
+declare module 'core-js/es/instance/includes.js' {
+ declare module.exports: $Exports<'core-js/es/instance/includes'>;
+}
+declare module 'core-js/es/instance/index-of.js' {
+ declare module.exports: $Exports<'core-js/es/instance/index-of'>;
+}
+declare module 'core-js/es/instance/keys.js' {
+ declare module.exports: $Exports<'core-js/es/instance/keys'>;
+}
+declare module 'core-js/es/instance/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/es/instance/last-index-of'>;
+}
+declare module 'core-js/es/instance/map.js' {
+ declare module.exports: $Exports<'core-js/es/instance/map'>;
+}
+declare module 'core-js/es/instance/match-all.js' {
+ declare module.exports: $Exports<'core-js/es/instance/match-all'>;
+}
+declare module 'core-js/es/instance/pad-end.js' {
+ declare module.exports: $Exports<'core-js/es/instance/pad-end'>;
+}
+declare module 'core-js/es/instance/pad-start.js' {
+ declare module.exports: $Exports<'core-js/es/instance/pad-start'>;
+}
+declare module 'core-js/es/instance/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/es/instance/reduce-right'>;
+}
+declare module 'core-js/es/instance/reduce.js' {
+ declare module.exports: $Exports<'core-js/es/instance/reduce'>;
+}
+declare module 'core-js/es/instance/repeat.js' {
+ declare module.exports: $Exports<'core-js/es/instance/repeat'>;
+}
+declare module 'core-js/es/instance/reverse.js' {
+ declare module.exports: $Exports<'core-js/es/instance/reverse'>;
+}
+declare module 'core-js/es/instance/slice.js' {
+ declare module.exports: $Exports<'core-js/es/instance/slice'>;
+}
+declare module 'core-js/es/instance/some.js' {
+ declare module.exports: $Exports<'core-js/es/instance/some'>;
+}
+declare module 'core-js/es/instance/sort.js' {
+ declare module.exports: $Exports<'core-js/es/instance/sort'>;
+}
+declare module 'core-js/es/instance/splice.js' {
+ declare module.exports: $Exports<'core-js/es/instance/splice'>;
+}
+declare module 'core-js/es/instance/starts-with.js' {
+ declare module.exports: $Exports<'core-js/es/instance/starts-with'>;
+}
+declare module 'core-js/es/instance/trim-end.js' {
+ declare module.exports: $Exports<'core-js/es/instance/trim-end'>;
+}
+declare module 'core-js/es/instance/trim-left.js' {
+ declare module.exports: $Exports<'core-js/es/instance/trim-left'>;
+}
+declare module 'core-js/es/instance/trim-right.js' {
+ declare module.exports: $Exports<'core-js/es/instance/trim-right'>;
+}
+declare module 'core-js/es/instance/trim-start.js' {
+ declare module.exports: $Exports<'core-js/es/instance/trim-start'>;
+}
+declare module 'core-js/es/instance/trim.js' {
+ declare module.exports: $Exports<'core-js/es/instance/trim'>;
+}
+declare module 'core-js/es/instance/values.js' {
+ declare module.exports: $Exports<'core-js/es/instance/values'>;
+}
+declare module 'core-js/es/json/index' {
+ declare module.exports: $Exports<'core-js/es/json'>;
+}
+declare module 'core-js/es/json/index.js' {
+ declare module.exports: $Exports<'core-js/es/json'>;
+}
+declare module 'core-js/es/json/stringify.js' {
+ declare module.exports: $Exports<'core-js/es/json/stringify'>;
+}
+declare module 'core-js/es/json/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/es/json/to-string-tag'>;
+}
+declare module 'core-js/es/map/index' {
+ declare module.exports: $Exports<'core-js/es/map'>;
+}
+declare module 'core-js/es/map/index.js' {
+ declare module.exports: $Exports<'core-js/es/map'>;
+}
+declare module 'core-js/es/math/acosh.js' {
+ declare module.exports: $Exports<'core-js/es/math/acosh'>;
+}
+declare module 'core-js/es/math/asinh.js' {
+ declare module.exports: $Exports<'core-js/es/math/asinh'>;
+}
+declare module 'core-js/es/math/atanh.js' {
+ declare module.exports: $Exports<'core-js/es/math/atanh'>;
+}
+declare module 'core-js/es/math/cbrt.js' {
+ declare module.exports: $Exports<'core-js/es/math/cbrt'>;
+}
+declare module 'core-js/es/math/clz32.js' {
+ declare module.exports: $Exports<'core-js/es/math/clz32'>;
+}
+declare module 'core-js/es/math/cosh.js' {
+ declare module.exports: $Exports<'core-js/es/math/cosh'>;
+}
+declare module 'core-js/es/math/expm1.js' {
+ declare module.exports: $Exports<'core-js/es/math/expm1'>;
+}
+declare module 'core-js/es/math/fround.js' {
+ declare module.exports: $Exports<'core-js/es/math/fround'>;
+}
+declare module 'core-js/es/math/hypot.js' {
+ declare module.exports: $Exports<'core-js/es/math/hypot'>;
+}
+declare module 'core-js/es/math/imul.js' {
+ declare module.exports: $Exports<'core-js/es/math/imul'>;
+}
+declare module 'core-js/es/math/index' {
+ declare module.exports: $Exports<'core-js/es/math'>;
+}
+declare module 'core-js/es/math/index.js' {
+ declare module.exports: $Exports<'core-js/es/math'>;
+}
+declare module 'core-js/es/math/log10.js' {
+ declare module.exports: $Exports<'core-js/es/math/log10'>;
+}
+declare module 'core-js/es/math/log1p.js' {
+ declare module.exports: $Exports<'core-js/es/math/log1p'>;
+}
+declare module 'core-js/es/math/log2.js' {
+ declare module.exports: $Exports<'core-js/es/math/log2'>;
+}
+declare module 'core-js/es/math/sign.js' {
+ declare module.exports: $Exports<'core-js/es/math/sign'>;
+}
+declare module 'core-js/es/math/sinh.js' {
+ declare module.exports: $Exports<'core-js/es/math/sinh'>;
+}
+declare module 'core-js/es/math/tanh.js' {
+ declare module.exports: $Exports<'core-js/es/math/tanh'>;
+}
+declare module 'core-js/es/math/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/es/math/to-string-tag'>;
+}
+declare module 'core-js/es/math/trunc.js' {
+ declare module.exports: $Exports<'core-js/es/math/trunc'>;
+}
+declare module 'core-js/es/number/constructor.js' {
+ declare module.exports: $Exports<'core-js/es/number/constructor'>;
+}
+declare module 'core-js/es/number/epsilon.js' {
+ declare module.exports: $Exports<'core-js/es/number/epsilon'>;
+}
+declare module 'core-js/es/number/index' {
+ declare module.exports: $Exports<'core-js/es/number'>;
+}
+declare module 'core-js/es/number/index.js' {
+ declare module.exports: $Exports<'core-js/es/number'>;
+}
+declare module 'core-js/es/number/is-finite.js' {
+ declare module.exports: $Exports<'core-js/es/number/is-finite'>;
+}
+declare module 'core-js/es/number/is-integer.js' {
+ declare module.exports: $Exports<'core-js/es/number/is-integer'>;
+}
+declare module 'core-js/es/number/is-nan.js' {
+ declare module.exports: $Exports<'core-js/es/number/is-nan'>;
+}
+declare module 'core-js/es/number/is-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/es/number/is-safe-integer'>;
+}
+declare module 'core-js/es/number/max-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/es/number/max-safe-integer'>;
+}
+declare module 'core-js/es/number/min-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/es/number/min-safe-integer'>;
+}
+declare module 'core-js/es/number/parse-float.js' {
+ declare module.exports: $Exports<'core-js/es/number/parse-float'>;
+}
+declare module 'core-js/es/number/parse-int.js' {
+ declare module.exports: $Exports<'core-js/es/number/parse-int'>;
+}
+declare module 'core-js/es/number/to-fixed.js' {
+ declare module.exports: $Exports<'core-js/es/number/to-fixed'>;
+}
+declare module 'core-js/es/number/to-precision.js' {
+ declare module.exports: $Exports<'core-js/es/number/to-precision'>;
+}
+declare module 'core-js/es/number/virtual/index' {
+ declare module.exports: $Exports<'core-js/es/number/virtual'>;
+}
+declare module 'core-js/es/number/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/es/number/virtual'>;
+}
+declare module 'core-js/es/number/virtual/to-fixed.js' {
+ declare module.exports: $Exports<'core-js/es/number/virtual/to-fixed'>;
+}
+declare module 'core-js/es/number/virtual/to-precision.js' {
+ declare module.exports: $Exports<'core-js/es/number/virtual/to-precision'>;
+}
+declare module 'core-js/es/object/assign.js' {
+ declare module.exports: $Exports<'core-js/es/object/assign'>;
+}
+declare module 'core-js/es/object/create.js' {
+ declare module.exports: $Exports<'core-js/es/object/create'>;
+}
+declare module 'core-js/es/object/define-getter.js' {
+ declare module.exports: $Exports<'core-js/es/object/define-getter'>;
+}
+declare module 'core-js/es/object/define-properties.js' {
+ declare module.exports: $Exports<'core-js/es/object/define-properties'>;
+}
+declare module 'core-js/es/object/define-property.js' {
+ declare module.exports: $Exports<'core-js/es/object/define-property'>;
+}
+declare module 'core-js/es/object/define-setter.js' {
+ declare module.exports: $Exports<'core-js/es/object/define-setter'>;
+}
+declare module 'core-js/es/object/entries.js' {
+ declare module.exports: $Exports<'core-js/es/object/entries'>;
+}
+declare module 'core-js/es/object/freeze.js' {
+ declare module.exports: $Exports<'core-js/es/object/freeze'>;
+}
+declare module 'core-js/es/object/from-entries.js' {
+ declare module.exports: $Exports<'core-js/es/object/from-entries'>;
+}
+declare module 'core-js/es/object/get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/es/object/get-own-property-descriptor'>;
+}
+declare module 'core-js/es/object/get-own-property-descriptors.js' {
+ declare module.exports: $Exports<'core-js/es/object/get-own-property-descriptors'>;
+}
+declare module 'core-js/es/object/get-own-property-names.js' {
+ declare module.exports: $Exports<'core-js/es/object/get-own-property-names'>;
+}
+declare module 'core-js/es/object/get-own-property-symbols.js' {
+ declare module.exports: $Exports<'core-js/es/object/get-own-property-symbols'>;
+}
+declare module 'core-js/es/object/get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/es/object/get-prototype-of'>;
+}
+declare module 'core-js/es/object/index' {
+ declare module.exports: $Exports<'core-js/es/object'>;
+}
+declare module 'core-js/es/object/index.js' {
+ declare module.exports: $Exports<'core-js/es/object'>;
+}
+declare module 'core-js/es/object/is-extensible.js' {
+ declare module.exports: $Exports<'core-js/es/object/is-extensible'>;
+}
+declare module 'core-js/es/object/is-frozen.js' {
+ declare module.exports: $Exports<'core-js/es/object/is-frozen'>;
+}
+declare module 'core-js/es/object/is-sealed.js' {
+ declare module.exports: $Exports<'core-js/es/object/is-sealed'>;
+}
+declare module 'core-js/es/object/is.js' {
+ declare module.exports: $Exports<'core-js/es/object/is'>;
+}
+declare module 'core-js/es/object/keys.js' {
+ declare module.exports: $Exports<'core-js/es/object/keys'>;
+}
+declare module 'core-js/es/object/lookup-getter.js' {
+ declare module.exports: $Exports<'core-js/es/object/lookup-getter'>;
+}
+declare module 'core-js/es/object/lookup-setter.js' {
+ declare module.exports: $Exports<'core-js/es/object/lookup-setter'>;
+}
+declare module 'core-js/es/object/prevent-extensions.js' {
+ declare module.exports: $Exports<'core-js/es/object/prevent-extensions'>;
+}
+declare module 'core-js/es/object/seal.js' {
+ declare module.exports: $Exports<'core-js/es/object/seal'>;
+}
+declare module 'core-js/es/object/set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/es/object/set-prototype-of'>;
+}
+declare module 'core-js/es/object/to-string.js' {
+ declare module.exports: $Exports<'core-js/es/object/to-string'>;
+}
+declare module 'core-js/es/object/values.js' {
+ declare module.exports: $Exports<'core-js/es/object/values'>;
+}
+declare module 'core-js/es/parse-float.js' {
+ declare module.exports: $Exports<'core-js/es/parse-float'>;
+}
+declare module 'core-js/es/parse-int.js' {
+ declare module.exports: $Exports<'core-js/es/parse-int'>;
+}
+declare module 'core-js/es/promise/all-settled.js' {
+ declare module.exports: $Exports<'core-js/es/promise/all-settled'>;
+}
+declare module 'core-js/es/promise/finally.js' {
+ declare module.exports: $Exports<'core-js/es/promise/finally'>;
+}
+declare module 'core-js/es/promise/index' {
+ declare module.exports: $Exports<'core-js/es/promise'>;
+}
+declare module 'core-js/es/promise/index.js' {
+ declare module.exports: $Exports<'core-js/es/promise'>;
+}
+declare module 'core-js/es/reflect/apply.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/apply'>;
+}
+declare module 'core-js/es/reflect/construct.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/construct'>;
+}
+declare module 'core-js/es/reflect/define-property.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/define-property'>;
+}
+declare module 'core-js/es/reflect/delete-property.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/delete-property'>;
+}
+declare module 'core-js/es/reflect/get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/get-own-property-descriptor'>;
+}
+declare module 'core-js/es/reflect/get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/get-prototype-of'>;
+}
+declare module 'core-js/es/reflect/get.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/get'>;
+}
+declare module 'core-js/es/reflect/has.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/has'>;
+}
+declare module 'core-js/es/reflect/index' {
+ declare module.exports: $Exports<'core-js/es/reflect'>;
+}
+declare module 'core-js/es/reflect/index.js' {
+ declare module.exports: $Exports<'core-js/es/reflect'>;
+}
+declare module 'core-js/es/reflect/is-extensible.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/is-extensible'>;
+}
+declare module 'core-js/es/reflect/own-keys.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/own-keys'>;
+}
+declare module 'core-js/es/reflect/prevent-extensions.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/prevent-extensions'>;
+}
+declare module 'core-js/es/reflect/set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/set-prototype-of'>;
+}
+declare module 'core-js/es/reflect/set.js' {
+ declare module.exports: $Exports<'core-js/es/reflect/set'>;
+}
+declare module 'core-js/es/regexp/constructor.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/constructor'>;
+}
+declare module 'core-js/es/regexp/flags.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/flags'>;
+}
+declare module 'core-js/es/regexp/index' {
+ declare module.exports: $Exports<'core-js/es/regexp'>;
+}
+declare module 'core-js/es/regexp/index.js' {
+ declare module.exports: $Exports<'core-js/es/regexp'>;
+}
+declare module 'core-js/es/regexp/match.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/match'>;
+}
+declare module 'core-js/es/regexp/replace.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/replace'>;
+}
+declare module 'core-js/es/regexp/search.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/search'>;
+}
+declare module 'core-js/es/regexp/split.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/split'>;
+}
+declare module 'core-js/es/regexp/sticky.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/sticky'>;
+}
+declare module 'core-js/es/regexp/test.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/test'>;
+}
+declare module 'core-js/es/regexp/to-string.js' {
+ declare module.exports: $Exports<'core-js/es/regexp/to-string'>;
+}
+declare module 'core-js/es/set/index' {
+ declare module.exports: $Exports<'core-js/es/set'>;
+}
+declare module 'core-js/es/set/index.js' {
+ declare module.exports: $Exports<'core-js/es/set'>;
+}
+declare module 'core-js/es/string/anchor.js' {
+ declare module.exports: $Exports<'core-js/es/string/anchor'>;
+}
+declare module 'core-js/es/string/big.js' {
+ declare module.exports: $Exports<'core-js/es/string/big'>;
+}
+declare module 'core-js/es/string/blink.js' {
+ declare module.exports: $Exports<'core-js/es/string/blink'>;
+}
+declare module 'core-js/es/string/bold.js' {
+ declare module.exports: $Exports<'core-js/es/string/bold'>;
+}
+declare module 'core-js/es/string/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/es/string/code-point-at'>;
+}
+declare module 'core-js/es/string/ends-with.js' {
+ declare module.exports: $Exports<'core-js/es/string/ends-with'>;
+}
+declare module 'core-js/es/string/fixed.js' {
+ declare module.exports: $Exports<'core-js/es/string/fixed'>;
+}
+declare module 'core-js/es/string/fontcolor.js' {
+ declare module.exports: $Exports<'core-js/es/string/fontcolor'>;
+}
+declare module 'core-js/es/string/fontsize.js' {
+ declare module.exports: $Exports<'core-js/es/string/fontsize'>;
+}
+declare module 'core-js/es/string/from-code-point.js' {
+ declare module.exports: $Exports<'core-js/es/string/from-code-point'>;
+}
+declare module 'core-js/es/string/includes.js' {
+ declare module.exports: $Exports<'core-js/es/string/includes'>;
+}
+declare module 'core-js/es/string/index' {
+ declare module.exports: $Exports<'core-js/es/string'>;
+}
+declare module 'core-js/es/string/index.js' {
+ declare module.exports: $Exports<'core-js/es/string'>;
+}
+declare module 'core-js/es/string/italics.js' {
+ declare module.exports: $Exports<'core-js/es/string/italics'>;
+}
+declare module 'core-js/es/string/iterator.js' {
+ declare module.exports: $Exports<'core-js/es/string/iterator'>;
+}
+declare module 'core-js/es/string/link.js' {
+ declare module.exports: $Exports<'core-js/es/string/link'>;
+}
+declare module 'core-js/es/string/match-all.js' {
+ declare module.exports: $Exports<'core-js/es/string/match-all'>;
+}
+declare module 'core-js/es/string/match.js' {
+ declare module.exports: $Exports<'core-js/es/string/match'>;
+}
+declare module 'core-js/es/string/pad-end.js' {
+ declare module.exports: $Exports<'core-js/es/string/pad-end'>;
+}
+declare module 'core-js/es/string/pad-start.js' {
+ declare module.exports: $Exports<'core-js/es/string/pad-start'>;
+}
+declare module 'core-js/es/string/raw.js' {
+ declare module.exports: $Exports<'core-js/es/string/raw'>;
+}
+declare module 'core-js/es/string/repeat.js' {
+ declare module.exports: $Exports<'core-js/es/string/repeat'>;
+}
+declare module 'core-js/es/string/replace.js' {
+ declare module.exports: $Exports<'core-js/es/string/replace'>;
+}
+declare module 'core-js/es/string/search.js' {
+ declare module.exports: $Exports<'core-js/es/string/search'>;
+}
+declare module 'core-js/es/string/small.js' {
+ declare module.exports: $Exports<'core-js/es/string/small'>;
+}
+declare module 'core-js/es/string/split.js' {
+ declare module.exports: $Exports<'core-js/es/string/split'>;
+}
+declare module 'core-js/es/string/starts-with.js' {
+ declare module.exports: $Exports<'core-js/es/string/starts-with'>;
+}
+declare module 'core-js/es/string/strike.js' {
+ declare module.exports: $Exports<'core-js/es/string/strike'>;
+}
+declare module 'core-js/es/string/sub.js' {
+ declare module.exports: $Exports<'core-js/es/string/sub'>;
+}
+declare module 'core-js/es/string/sup.js' {
+ declare module.exports: $Exports<'core-js/es/string/sup'>;
+}
+declare module 'core-js/es/string/trim-end.js' {
+ declare module.exports: $Exports<'core-js/es/string/trim-end'>;
+}
+declare module 'core-js/es/string/trim-left.js' {
+ declare module.exports: $Exports<'core-js/es/string/trim-left'>;
+}
+declare module 'core-js/es/string/trim-right.js' {
+ declare module.exports: $Exports<'core-js/es/string/trim-right'>;
+}
+declare module 'core-js/es/string/trim-start.js' {
+ declare module.exports: $Exports<'core-js/es/string/trim-start'>;
+}
+declare module 'core-js/es/string/trim.js' {
+ declare module.exports: $Exports<'core-js/es/string/trim'>;
+}
+declare module 'core-js/es/string/virtual/anchor.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/anchor'>;
+}
+declare module 'core-js/es/string/virtual/big.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/big'>;
+}
+declare module 'core-js/es/string/virtual/blink.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/blink'>;
+}
+declare module 'core-js/es/string/virtual/bold.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/bold'>;
+}
+declare module 'core-js/es/string/virtual/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/code-point-at'>;
+}
+declare module 'core-js/es/string/virtual/ends-with.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/ends-with'>;
+}
+declare module 'core-js/es/string/virtual/fixed.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/fixed'>;
+}
+declare module 'core-js/es/string/virtual/fontcolor.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/fontcolor'>;
+}
+declare module 'core-js/es/string/virtual/fontsize.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/fontsize'>;
+}
+declare module 'core-js/es/string/virtual/includes.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/includes'>;
+}
+declare module 'core-js/es/string/virtual/index' {
+ declare module.exports: $Exports<'core-js/es/string/virtual'>;
+}
+declare module 'core-js/es/string/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual'>;
+}
+declare module 'core-js/es/string/virtual/italics.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/italics'>;
+}
+declare module 'core-js/es/string/virtual/iterator.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/iterator'>;
+}
+declare module 'core-js/es/string/virtual/link.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/link'>;
+}
+declare module 'core-js/es/string/virtual/match-all.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/match-all'>;
+}
+declare module 'core-js/es/string/virtual/pad-end.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/pad-end'>;
+}
+declare module 'core-js/es/string/virtual/pad-start.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/pad-start'>;
+}
+declare module 'core-js/es/string/virtual/repeat.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/repeat'>;
+}
+declare module 'core-js/es/string/virtual/small.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/small'>;
+}
+declare module 'core-js/es/string/virtual/starts-with.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/starts-with'>;
+}
+declare module 'core-js/es/string/virtual/strike.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/strike'>;
+}
+declare module 'core-js/es/string/virtual/sub.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/sub'>;
+}
+declare module 'core-js/es/string/virtual/sup.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/sup'>;
+}
+declare module 'core-js/es/string/virtual/trim-end.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/trim-end'>;
+}
+declare module 'core-js/es/string/virtual/trim-left.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/trim-left'>;
+}
+declare module 'core-js/es/string/virtual/trim-right.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/trim-right'>;
+}
+declare module 'core-js/es/string/virtual/trim-start.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/trim-start'>;
+}
+declare module 'core-js/es/string/virtual/trim.js' {
+ declare module.exports: $Exports<'core-js/es/string/virtual/trim'>;
+}
+declare module 'core-js/es/symbol/async-iterator.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/async-iterator'>;
+}
+declare module 'core-js/es/symbol/description.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/description'>;
+}
+declare module 'core-js/es/symbol/for.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/for'>;
+}
+declare module 'core-js/es/symbol/has-instance.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/has-instance'>;
+}
+declare module 'core-js/es/symbol/index' {
+ declare module.exports: $Exports<'core-js/es/symbol'>;
+}
+declare module 'core-js/es/symbol/index.js' {
+ declare module.exports: $Exports<'core-js/es/symbol'>;
+}
+declare module 'core-js/es/symbol/is-concat-spreadable.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/is-concat-spreadable'>;
+}
+declare module 'core-js/es/symbol/iterator.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/iterator'>;
+}
+declare module 'core-js/es/symbol/key-for.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/key-for'>;
+}
+declare module 'core-js/es/symbol/match-all.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/match-all'>;
+}
+declare module 'core-js/es/symbol/match.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/match'>;
+}
+declare module 'core-js/es/symbol/replace.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/replace'>;
+}
+declare module 'core-js/es/symbol/search.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/search'>;
+}
+declare module 'core-js/es/symbol/species.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/species'>;
+}
+declare module 'core-js/es/symbol/split.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/split'>;
+}
+declare module 'core-js/es/symbol/to-primitive.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/to-primitive'>;
+}
+declare module 'core-js/es/symbol/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/to-string-tag'>;
+}
+declare module 'core-js/es/symbol/unscopables.js' {
+ declare module.exports: $Exports<'core-js/es/symbol/unscopables'>;
+}
+declare module 'core-js/es/typed-array/copy-within.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/copy-within'>;
+}
+declare module 'core-js/es/typed-array/entries.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/entries'>;
+}
+declare module 'core-js/es/typed-array/every.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/every'>;
+}
+declare module 'core-js/es/typed-array/fill.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/fill'>;
+}
+declare module 'core-js/es/typed-array/filter.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/filter'>;
+}
+declare module 'core-js/es/typed-array/find-index.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/find-index'>;
+}
+declare module 'core-js/es/typed-array/find.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/find'>;
+}
+declare module 'core-js/es/typed-array/float32-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/float32-array'>;
+}
+declare module 'core-js/es/typed-array/float64-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/float64-array'>;
+}
+declare module 'core-js/es/typed-array/for-each.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/for-each'>;
+}
+declare module 'core-js/es/typed-array/from.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/from'>;
+}
+declare module 'core-js/es/typed-array/includes.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/includes'>;
+}
+declare module 'core-js/es/typed-array/index-of.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/index-of'>;
+}
+declare module 'core-js/es/typed-array/index' {
+ declare module.exports: $Exports<'core-js/es/typed-array'>;
+}
+declare module 'core-js/es/typed-array/index.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array'>;
+}
+declare module 'core-js/es/typed-array/int16-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/int16-array'>;
+}
+declare module 'core-js/es/typed-array/int32-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/int32-array'>;
+}
+declare module 'core-js/es/typed-array/int8-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/int8-array'>;
+}
+declare module 'core-js/es/typed-array/iterator.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/iterator'>;
+}
+declare module 'core-js/es/typed-array/join.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/join'>;
+}
+declare module 'core-js/es/typed-array/keys.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/keys'>;
+}
+declare module 'core-js/es/typed-array/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/last-index-of'>;
+}
+declare module 'core-js/es/typed-array/map.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/map'>;
+}
+declare module 'core-js/es/typed-array/methods.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/methods'>;
+}
+declare module 'core-js/es/typed-array/of.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/of'>;
+}
+declare module 'core-js/es/typed-array/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/reduce-right'>;
+}
+declare module 'core-js/es/typed-array/reduce.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/reduce'>;
+}
+declare module 'core-js/es/typed-array/reverse.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/reverse'>;
+}
+declare module 'core-js/es/typed-array/set.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/set'>;
+}
+declare module 'core-js/es/typed-array/slice.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/slice'>;
+}
+declare module 'core-js/es/typed-array/some.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/some'>;
+}
+declare module 'core-js/es/typed-array/sort.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/sort'>;
+}
+declare module 'core-js/es/typed-array/subarray.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/subarray'>;
+}
+declare module 'core-js/es/typed-array/to-locale-string.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/to-locale-string'>;
+}
+declare module 'core-js/es/typed-array/to-string.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/to-string'>;
+}
+declare module 'core-js/es/typed-array/uint16-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/uint16-array'>;
+}
+declare module 'core-js/es/typed-array/uint32-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/uint32-array'>;
+}
+declare module 'core-js/es/typed-array/uint8-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/uint8-array'>;
+}
+declare module 'core-js/es/typed-array/uint8-clamped-array.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/uint8-clamped-array'>;
+}
+declare module 'core-js/es/typed-array/values.js' {
+ declare module.exports: $Exports<'core-js/es/typed-array/values'>;
+}
+declare module 'core-js/es/weak-map/index' {
+ declare module.exports: $Exports<'core-js/es/weak-map'>;
+}
+declare module 'core-js/es/weak-map/index.js' {
+ declare module.exports: $Exports<'core-js/es/weak-map'>;
+}
+declare module 'core-js/es/weak-set/index' {
+ declare module.exports: $Exports<'core-js/es/weak-set'>;
+}
+declare module 'core-js/es/weak-set/index.js' {
+ declare module.exports: $Exports<'core-js/es/weak-set'>;
+}
+declare module 'core-js/features/aggregate-error.js' {
+ declare module.exports: $Exports<'core-js/features/aggregate-error'>;
+}
+declare module 'core-js/features/array-buffer/constructor.js' {
+ declare module.exports: $Exports<'core-js/features/array-buffer/constructor'>;
+}
+declare module 'core-js/features/array-buffer/index' {
+ declare module.exports: $Exports<'core-js/features/array-buffer'>;
+}
+declare module 'core-js/features/array-buffer/index.js' {
+ declare module.exports: $Exports<'core-js/features/array-buffer'>;
+}
+declare module 'core-js/features/array-buffer/is-view.js' {
+ declare module.exports: $Exports<'core-js/features/array-buffer/is-view'>;
+}
+declare module 'core-js/features/array-buffer/slice.js' {
+ declare module.exports: $Exports<'core-js/features/array-buffer/slice'>;
+}
+declare module 'core-js/features/array/concat.js' {
+ declare module.exports: $Exports<'core-js/features/array/concat'>;
+}
+declare module 'core-js/features/array/copy-within.js' {
+ declare module.exports: $Exports<'core-js/features/array/copy-within'>;
+}
+declare module 'core-js/features/array/entries.js' {
+ declare module.exports: $Exports<'core-js/features/array/entries'>;
+}
+declare module 'core-js/features/array/every.js' {
+ declare module.exports: $Exports<'core-js/features/array/every'>;
+}
+declare module 'core-js/features/array/fill.js' {
+ declare module.exports: $Exports<'core-js/features/array/fill'>;
+}
+declare module 'core-js/features/array/filter.js' {
+ declare module.exports: $Exports<'core-js/features/array/filter'>;
+}
+declare module 'core-js/features/array/find-index.js' {
+ declare module.exports: $Exports<'core-js/features/array/find-index'>;
+}
+declare module 'core-js/features/array/find.js' {
+ declare module.exports: $Exports<'core-js/features/array/find'>;
+}
+declare module 'core-js/features/array/flat-map.js' {
+ declare module.exports: $Exports<'core-js/features/array/flat-map'>;
+}
+declare module 'core-js/features/array/flat.js' {
+ declare module.exports: $Exports<'core-js/features/array/flat'>;
+}
+declare module 'core-js/features/array/for-each.js' {
+ declare module.exports: $Exports<'core-js/features/array/for-each'>;
+}
+declare module 'core-js/features/array/from.js' {
+ declare module.exports: $Exports<'core-js/features/array/from'>;
+}
+declare module 'core-js/features/array/includes.js' {
+ declare module.exports: $Exports<'core-js/features/array/includes'>;
+}
+declare module 'core-js/features/array/index-of.js' {
+ declare module.exports: $Exports<'core-js/features/array/index-of'>;
+}
+declare module 'core-js/features/array/index' {
+ declare module.exports: $Exports<'core-js/features/array'>;
+}
+declare module 'core-js/features/array/index.js' {
+ declare module.exports: $Exports<'core-js/features/array'>;
+}
+declare module 'core-js/features/array/is-array.js' {
+ declare module.exports: $Exports<'core-js/features/array/is-array'>;
+}
+declare module 'core-js/features/array/is-template-object.js' {
+ declare module.exports: $Exports<'core-js/features/array/is-template-object'>;
+}
+declare module 'core-js/features/array/iterator.js' {
+ declare module.exports: $Exports<'core-js/features/array/iterator'>;
+}
+declare module 'core-js/features/array/join.js' {
+ declare module.exports: $Exports<'core-js/features/array/join'>;
+}
+declare module 'core-js/features/array/keys.js' {
+ declare module.exports: $Exports<'core-js/features/array/keys'>;
+}
+declare module 'core-js/features/array/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/features/array/last-index-of'>;
+}
+declare module 'core-js/features/array/last-index.js' {
+ declare module.exports: $Exports<'core-js/features/array/last-index'>;
+}
+declare module 'core-js/features/array/last-item.js' {
+ declare module.exports: $Exports<'core-js/features/array/last-item'>;
+}
+declare module 'core-js/features/array/map.js' {
+ declare module.exports: $Exports<'core-js/features/array/map'>;
+}
+declare module 'core-js/features/array/of.js' {
+ declare module.exports: $Exports<'core-js/features/array/of'>;
+}
+declare module 'core-js/features/array/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/features/array/reduce-right'>;
+}
+declare module 'core-js/features/array/reduce.js' {
+ declare module.exports: $Exports<'core-js/features/array/reduce'>;
+}
+declare module 'core-js/features/array/reverse.js' {
+ declare module.exports: $Exports<'core-js/features/array/reverse'>;
+}
+declare module 'core-js/features/array/slice.js' {
+ declare module.exports: $Exports<'core-js/features/array/slice'>;
+}
+declare module 'core-js/features/array/some.js' {
+ declare module.exports: $Exports<'core-js/features/array/some'>;
+}
+declare module 'core-js/features/array/sort.js' {
+ declare module.exports: $Exports<'core-js/features/array/sort'>;
+}
+declare module 'core-js/features/array/splice.js' {
+ declare module.exports: $Exports<'core-js/features/array/splice'>;
+}
+declare module 'core-js/features/array/values.js' {
+ declare module.exports: $Exports<'core-js/features/array/values'>;
+}
+declare module 'core-js/features/array/virtual/concat.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/concat'>;
+}
+declare module 'core-js/features/array/virtual/copy-within.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/copy-within'>;
+}
+declare module 'core-js/features/array/virtual/entries.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/entries'>;
+}
+declare module 'core-js/features/array/virtual/every.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/every'>;
+}
+declare module 'core-js/features/array/virtual/fill.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/fill'>;
+}
+declare module 'core-js/features/array/virtual/filter.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/filter'>;
+}
+declare module 'core-js/features/array/virtual/find-index.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/find-index'>;
+}
+declare module 'core-js/features/array/virtual/find.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/find'>;
+}
+declare module 'core-js/features/array/virtual/flat-map.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/flat-map'>;
+}
+declare module 'core-js/features/array/virtual/flat.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/flat'>;
+}
+declare module 'core-js/features/array/virtual/for-each.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/for-each'>;
+}
+declare module 'core-js/features/array/virtual/includes.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/includes'>;
+}
+declare module 'core-js/features/array/virtual/index-of.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/index-of'>;
+}
+declare module 'core-js/features/array/virtual/index' {
+ declare module.exports: $Exports<'core-js/features/array/virtual'>;
+}
+declare module 'core-js/features/array/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual'>;
+}
+declare module 'core-js/features/array/virtual/iterator.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/iterator'>;
+}
+declare module 'core-js/features/array/virtual/join.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/join'>;
+}
+declare module 'core-js/features/array/virtual/keys.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/keys'>;
+}
+declare module 'core-js/features/array/virtual/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/last-index-of'>;
+}
+declare module 'core-js/features/array/virtual/map.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/map'>;
+}
+declare module 'core-js/features/array/virtual/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/reduce-right'>;
+}
+declare module 'core-js/features/array/virtual/reduce.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/reduce'>;
+}
+declare module 'core-js/features/array/virtual/reverse.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/reverse'>;
+}
+declare module 'core-js/features/array/virtual/slice.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/slice'>;
+}
+declare module 'core-js/features/array/virtual/some.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/some'>;
+}
+declare module 'core-js/features/array/virtual/sort.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/sort'>;
+}
+declare module 'core-js/features/array/virtual/splice.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/splice'>;
+}
+declare module 'core-js/features/array/virtual/values.js' {
+ declare module.exports: $Exports<'core-js/features/array/virtual/values'>;
+}
+declare module 'core-js/features/async-iterator/as-indexed-pairs.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/as-indexed-pairs'>;
+}
+declare module 'core-js/features/async-iterator/drop.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/drop'>;
+}
+declare module 'core-js/features/async-iterator/every.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/every'>;
+}
+declare module 'core-js/features/async-iterator/filter.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/filter'>;
+}
+declare module 'core-js/features/async-iterator/find.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/find'>;
+}
+declare module 'core-js/features/async-iterator/flat-map.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/flat-map'>;
+}
+declare module 'core-js/features/async-iterator/for-each.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/for-each'>;
+}
+declare module 'core-js/features/async-iterator/from.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/from'>;
+}
+declare module 'core-js/features/async-iterator/index' {
+ declare module.exports: $Exports<'core-js/features/async-iterator'>;
+}
+declare module 'core-js/features/async-iterator/index.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator'>;
+}
+declare module 'core-js/features/async-iterator/map.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/map'>;
+}
+declare module 'core-js/features/async-iterator/reduce.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/reduce'>;
+}
+declare module 'core-js/features/async-iterator/some.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/some'>;
+}
+declare module 'core-js/features/async-iterator/take.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/take'>;
+}
+declare module 'core-js/features/async-iterator/to-array.js' {
+ declare module.exports: $Exports<'core-js/features/async-iterator/to-array'>;
+}
+declare module 'core-js/features/clear-immediate.js' {
+ declare module.exports: $Exports<'core-js/features/clear-immediate'>;
+}
+declare module 'core-js/features/composite-key.js' {
+ declare module.exports: $Exports<'core-js/features/composite-key'>;
+}
+declare module 'core-js/features/composite-symbol.js' {
+ declare module.exports: $Exports<'core-js/features/composite-symbol'>;
+}
+declare module 'core-js/features/data-view/index' {
+ declare module.exports: $Exports<'core-js/features/data-view'>;
+}
+declare module 'core-js/features/data-view/index.js' {
+ declare module.exports: $Exports<'core-js/features/data-view'>;
+}
+declare module 'core-js/features/date/index' {
+ declare module.exports: $Exports<'core-js/features/date'>;
+}
+declare module 'core-js/features/date/index.js' {
+ declare module.exports: $Exports<'core-js/features/date'>;
+}
+declare module 'core-js/features/date/now.js' {
+ declare module.exports: $Exports<'core-js/features/date/now'>;
+}
+declare module 'core-js/features/date/to-iso-string.js' {
+ declare module.exports: $Exports<'core-js/features/date/to-iso-string'>;
+}
+declare module 'core-js/features/date/to-json.js' {
+ declare module.exports: $Exports<'core-js/features/date/to-json'>;
+}
+declare module 'core-js/features/date/to-primitive.js' {
+ declare module.exports: $Exports<'core-js/features/date/to-primitive'>;
+}
+declare module 'core-js/features/date/to-string.js' {
+ declare module.exports: $Exports<'core-js/features/date/to-string'>;
+}
+declare module 'core-js/features/dom-collections/for-each.js' {
+ declare module.exports: $Exports<'core-js/features/dom-collections/for-each'>;
+}
+declare module 'core-js/features/dom-collections/index' {
+ declare module.exports: $Exports<'core-js/features/dom-collections'>;
+}
+declare module 'core-js/features/dom-collections/index.js' {
+ declare module.exports: $Exports<'core-js/features/dom-collections'>;
+}
+declare module 'core-js/features/dom-collections/iterator.js' {
+ declare module.exports: $Exports<'core-js/features/dom-collections/iterator'>;
+}
+declare module 'core-js/features/function/bind.js' {
+ declare module.exports: $Exports<'core-js/features/function/bind'>;
+}
+declare module 'core-js/features/function/has-instance.js' {
+ declare module.exports: $Exports<'core-js/features/function/has-instance'>;
+}
+declare module 'core-js/features/function/index' {
+ declare module.exports: $Exports<'core-js/features/function'>;
+}
+declare module 'core-js/features/function/index.js' {
+ declare module.exports: $Exports<'core-js/features/function'>;
+}
+declare module 'core-js/features/function/name.js' {
+ declare module.exports: $Exports<'core-js/features/function/name'>;
+}
+declare module 'core-js/features/function/virtual/bind.js' {
+ declare module.exports: $Exports<'core-js/features/function/virtual/bind'>;
+}
+declare module 'core-js/features/function/virtual/index' {
+ declare module.exports: $Exports<'core-js/features/function/virtual'>;
+}
+declare module 'core-js/features/function/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/features/function/virtual'>;
+}
+declare module 'core-js/features/get-iterator-method.js' {
+ declare module.exports: $Exports<'core-js/features/get-iterator-method'>;
+}
+declare module 'core-js/features/get-iterator.js' {
+ declare module.exports: $Exports<'core-js/features/get-iterator'>;
+}
+declare module 'core-js/features/global-this.js' {
+ declare module.exports: $Exports<'core-js/features/global-this'>;
+}
+declare module 'core-js/features/index' {
+ declare module.exports: $Exports<'core-js/features'>;
+}
+declare module 'core-js/features/index.js' {
+ declare module.exports: $Exports<'core-js/features'>;
+}
+declare module 'core-js/features/instance/at.js' {
+ declare module.exports: $Exports<'core-js/features/instance/at'>;
+}
+declare module 'core-js/features/instance/bind.js' {
+ declare module.exports: $Exports<'core-js/features/instance/bind'>;
+}
+declare module 'core-js/features/instance/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/features/instance/code-point-at'>;
+}
+declare module 'core-js/features/instance/code-points.js' {
+ declare module.exports: $Exports<'core-js/features/instance/code-points'>;
+}
+declare module 'core-js/features/instance/concat.js' {
+ declare module.exports: $Exports<'core-js/features/instance/concat'>;
+}
+declare module 'core-js/features/instance/copy-within.js' {
+ declare module.exports: $Exports<'core-js/features/instance/copy-within'>;
+}
+declare module 'core-js/features/instance/ends-with.js' {
+ declare module.exports: $Exports<'core-js/features/instance/ends-with'>;
+}
+declare module 'core-js/features/instance/entries.js' {
+ declare module.exports: $Exports<'core-js/features/instance/entries'>;
+}
+declare module 'core-js/features/instance/every.js' {
+ declare module.exports: $Exports<'core-js/features/instance/every'>;
+}
+declare module 'core-js/features/instance/fill.js' {
+ declare module.exports: $Exports<'core-js/features/instance/fill'>;
+}
+declare module 'core-js/features/instance/filter.js' {
+ declare module.exports: $Exports<'core-js/features/instance/filter'>;
+}
+declare module 'core-js/features/instance/find-index.js' {
+ declare module.exports: $Exports<'core-js/features/instance/find-index'>;
+}
+declare module 'core-js/features/instance/find.js' {
+ declare module.exports: $Exports<'core-js/features/instance/find'>;
+}
+declare module 'core-js/features/instance/flags.js' {
+ declare module.exports: $Exports<'core-js/features/instance/flags'>;
+}
+declare module 'core-js/features/instance/flat-map.js' {
+ declare module.exports: $Exports<'core-js/features/instance/flat-map'>;
+}
+declare module 'core-js/features/instance/flat.js' {
+ declare module.exports: $Exports<'core-js/features/instance/flat'>;
+}
+declare module 'core-js/features/instance/for-each.js' {
+ declare module.exports: $Exports<'core-js/features/instance/for-each'>;
+}
+declare module 'core-js/features/instance/includes.js' {
+ declare module.exports: $Exports<'core-js/features/instance/includes'>;
+}
+declare module 'core-js/features/instance/index-of.js' {
+ declare module.exports: $Exports<'core-js/features/instance/index-of'>;
+}
+declare module 'core-js/features/instance/keys.js' {
+ declare module.exports: $Exports<'core-js/features/instance/keys'>;
+}
+declare module 'core-js/features/instance/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/features/instance/last-index-of'>;
+}
+declare module 'core-js/features/instance/map.js' {
+ declare module.exports: $Exports<'core-js/features/instance/map'>;
+}
+declare module 'core-js/features/instance/match-all.js' {
+ declare module.exports: $Exports<'core-js/features/instance/match-all'>;
+}
+declare module 'core-js/features/instance/pad-end.js' {
+ declare module.exports: $Exports<'core-js/features/instance/pad-end'>;
+}
+declare module 'core-js/features/instance/pad-start.js' {
+ declare module.exports: $Exports<'core-js/features/instance/pad-start'>;
+}
+declare module 'core-js/features/instance/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/features/instance/reduce-right'>;
+}
+declare module 'core-js/features/instance/reduce.js' {
+ declare module.exports: $Exports<'core-js/features/instance/reduce'>;
+}
+declare module 'core-js/features/instance/repeat.js' {
+ declare module.exports: $Exports<'core-js/features/instance/repeat'>;
+}
+declare module 'core-js/features/instance/replace-all.js' {
+ declare module.exports: $Exports<'core-js/features/instance/replace-all'>;
+}
+declare module 'core-js/features/instance/reverse.js' {
+ declare module.exports: $Exports<'core-js/features/instance/reverse'>;
+}
+declare module 'core-js/features/instance/slice.js' {
+ declare module.exports: $Exports<'core-js/features/instance/slice'>;
+}
+declare module 'core-js/features/instance/some.js' {
+ declare module.exports: $Exports<'core-js/features/instance/some'>;
+}
+declare module 'core-js/features/instance/sort.js' {
+ declare module.exports: $Exports<'core-js/features/instance/sort'>;
+}
+declare module 'core-js/features/instance/splice.js' {
+ declare module.exports: $Exports<'core-js/features/instance/splice'>;
+}
+declare module 'core-js/features/instance/starts-with.js' {
+ declare module.exports: $Exports<'core-js/features/instance/starts-with'>;
+}
+declare module 'core-js/features/instance/trim-end.js' {
+ declare module.exports: $Exports<'core-js/features/instance/trim-end'>;
+}
+declare module 'core-js/features/instance/trim-left.js' {
+ declare module.exports: $Exports<'core-js/features/instance/trim-left'>;
+}
+declare module 'core-js/features/instance/trim-right.js' {
+ declare module.exports: $Exports<'core-js/features/instance/trim-right'>;
+}
+declare module 'core-js/features/instance/trim-start.js' {
+ declare module.exports: $Exports<'core-js/features/instance/trim-start'>;
+}
+declare module 'core-js/features/instance/trim.js' {
+ declare module.exports: $Exports<'core-js/features/instance/trim'>;
+}
+declare module 'core-js/features/instance/values.js' {
+ declare module.exports: $Exports<'core-js/features/instance/values'>;
+}
+declare module 'core-js/features/is-iterable.js' {
+ declare module.exports: $Exports<'core-js/features/is-iterable'>;
+}
+declare module 'core-js/features/iterator/as-indexed-pairs.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/as-indexed-pairs'>;
+}
+declare module 'core-js/features/iterator/drop.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/drop'>;
+}
+declare module 'core-js/features/iterator/every.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/every'>;
+}
+declare module 'core-js/features/iterator/filter.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/filter'>;
+}
+declare module 'core-js/features/iterator/find.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/find'>;
+}
+declare module 'core-js/features/iterator/flat-map.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/flat-map'>;
+}
+declare module 'core-js/features/iterator/for-each.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/for-each'>;
+}
+declare module 'core-js/features/iterator/from.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/from'>;
+}
+declare module 'core-js/features/iterator/index' {
+ declare module.exports: $Exports<'core-js/features/iterator'>;
+}
+declare module 'core-js/features/iterator/index.js' {
+ declare module.exports: $Exports<'core-js/features/iterator'>;
+}
+declare module 'core-js/features/iterator/map.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/map'>;
+}
+declare module 'core-js/features/iterator/reduce.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/reduce'>;
+}
+declare module 'core-js/features/iterator/some.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/some'>;
+}
+declare module 'core-js/features/iterator/take.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/take'>;
+}
+declare module 'core-js/features/iterator/to-array.js' {
+ declare module.exports: $Exports<'core-js/features/iterator/to-array'>;
+}
+declare module 'core-js/features/json/index' {
+ declare module.exports: $Exports<'core-js/features/json'>;
+}
+declare module 'core-js/features/json/index.js' {
+ declare module.exports: $Exports<'core-js/features/json'>;
+}
+declare module 'core-js/features/json/stringify.js' {
+ declare module.exports: $Exports<'core-js/features/json/stringify'>;
+}
+declare module 'core-js/features/json/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/features/json/to-string-tag'>;
+}
+declare module 'core-js/features/map/delete-all.js' {
+ declare module.exports: $Exports<'core-js/features/map/delete-all'>;
+}
+declare module 'core-js/features/map/every.js' {
+ declare module.exports: $Exports<'core-js/features/map/every'>;
+}
+declare module 'core-js/features/map/filter.js' {
+ declare module.exports: $Exports<'core-js/features/map/filter'>;
+}
+declare module 'core-js/features/map/find-key.js' {
+ declare module.exports: $Exports<'core-js/features/map/find-key'>;
+}
+declare module 'core-js/features/map/find.js' {
+ declare module.exports: $Exports<'core-js/features/map/find'>;
+}
+declare module 'core-js/features/map/from.js' {
+ declare module.exports: $Exports<'core-js/features/map/from'>;
+}
+declare module 'core-js/features/map/group-by.js' {
+ declare module.exports: $Exports<'core-js/features/map/group-by'>;
+}
+declare module 'core-js/features/map/includes.js' {
+ declare module.exports: $Exports<'core-js/features/map/includes'>;
+}
+declare module 'core-js/features/map/index' {
+ declare module.exports: $Exports<'core-js/features/map'>;
+}
+declare module 'core-js/features/map/index.js' {
+ declare module.exports: $Exports<'core-js/features/map'>;
+}
+declare module 'core-js/features/map/key-by.js' {
+ declare module.exports: $Exports<'core-js/features/map/key-by'>;
+}
+declare module 'core-js/features/map/key-of.js' {
+ declare module.exports: $Exports<'core-js/features/map/key-of'>;
+}
+declare module 'core-js/features/map/map-keys.js' {
+ declare module.exports: $Exports<'core-js/features/map/map-keys'>;
+}
+declare module 'core-js/features/map/map-values.js' {
+ declare module.exports: $Exports<'core-js/features/map/map-values'>;
+}
+declare module 'core-js/features/map/merge.js' {
+ declare module.exports: $Exports<'core-js/features/map/merge'>;
+}
+declare module 'core-js/features/map/of.js' {
+ declare module.exports: $Exports<'core-js/features/map/of'>;
+}
+declare module 'core-js/features/map/reduce.js' {
+ declare module.exports: $Exports<'core-js/features/map/reduce'>;
+}
+declare module 'core-js/features/map/some.js' {
+ declare module.exports: $Exports<'core-js/features/map/some'>;
+}
+declare module 'core-js/features/map/update-or-insert.js' {
+ declare module.exports: $Exports<'core-js/features/map/update-or-insert'>;
+}
+declare module 'core-js/features/map/update.js' {
+ declare module.exports: $Exports<'core-js/features/map/update'>;
+}
+declare module 'core-js/features/map/upsert.js' {
+ declare module.exports: $Exports<'core-js/features/map/upsert'>;
+}
+declare module 'core-js/features/math/acosh.js' {
+ declare module.exports: $Exports<'core-js/features/math/acosh'>;
+}
+declare module 'core-js/features/math/asinh.js' {
+ declare module.exports: $Exports<'core-js/features/math/asinh'>;
+}
+declare module 'core-js/features/math/atanh.js' {
+ declare module.exports: $Exports<'core-js/features/math/atanh'>;
+}
+declare module 'core-js/features/math/cbrt.js' {
+ declare module.exports: $Exports<'core-js/features/math/cbrt'>;
+}
+declare module 'core-js/features/math/clamp.js' {
+ declare module.exports: $Exports<'core-js/features/math/clamp'>;
+}
+declare module 'core-js/features/math/clz32.js' {
+ declare module.exports: $Exports<'core-js/features/math/clz32'>;
+}
+declare module 'core-js/features/math/cosh.js' {
+ declare module.exports: $Exports<'core-js/features/math/cosh'>;
+}
+declare module 'core-js/features/math/deg-per-rad.js' {
+ declare module.exports: $Exports<'core-js/features/math/deg-per-rad'>;
+}
+declare module 'core-js/features/math/degrees.js' {
+ declare module.exports: $Exports<'core-js/features/math/degrees'>;
+}
+declare module 'core-js/features/math/expm1.js' {
+ declare module.exports: $Exports<'core-js/features/math/expm1'>;
+}
+declare module 'core-js/features/math/fround.js' {
+ declare module.exports: $Exports<'core-js/features/math/fround'>;
+}
+declare module 'core-js/features/math/fscale.js' {
+ declare module.exports: $Exports<'core-js/features/math/fscale'>;
+}
+declare module 'core-js/features/math/hypot.js' {
+ declare module.exports: $Exports<'core-js/features/math/hypot'>;
+}
+declare module 'core-js/features/math/iaddh.js' {
+ declare module.exports: $Exports<'core-js/features/math/iaddh'>;
+}
+declare module 'core-js/features/math/imul.js' {
+ declare module.exports: $Exports<'core-js/features/math/imul'>;
+}
+declare module 'core-js/features/math/imulh.js' {
+ declare module.exports: $Exports<'core-js/features/math/imulh'>;
+}
+declare module 'core-js/features/math/index' {
+ declare module.exports: $Exports<'core-js/features/math'>;
+}
+declare module 'core-js/features/math/index.js' {
+ declare module.exports: $Exports<'core-js/features/math'>;
+}
+declare module 'core-js/features/math/isubh.js' {
+ declare module.exports: $Exports<'core-js/features/math/isubh'>;
+}
+declare module 'core-js/features/math/log10.js' {
+ declare module.exports: $Exports<'core-js/features/math/log10'>;
+}
+declare module 'core-js/features/math/log1p.js' {
+ declare module.exports: $Exports<'core-js/features/math/log1p'>;
+}
+declare module 'core-js/features/math/log2.js' {
+ declare module.exports: $Exports<'core-js/features/math/log2'>;
+}
+declare module 'core-js/features/math/rad-per-deg.js' {
+ declare module.exports: $Exports<'core-js/features/math/rad-per-deg'>;
+}
+declare module 'core-js/features/math/radians.js' {
+ declare module.exports: $Exports<'core-js/features/math/radians'>;
+}
+declare module 'core-js/features/math/scale.js' {
+ declare module.exports: $Exports<'core-js/features/math/scale'>;
+}
+declare module 'core-js/features/math/seeded-prng.js' {
+ declare module.exports: $Exports<'core-js/features/math/seeded-prng'>;
+}
+declare module 'core-js/features/math/sign.js' {
+ declare module.exports: $Exports<'core-js/features/math/sign'>;
+}
+declare module 'core-js/features/math/signbit.js' {
+ declare module.exports: $Exports<'core-js/features/math/signbit'>;
+}
+declare module 'core-js/features/math/sinh.js' {
+ declare module.exports: $Exports<'core-js/features/math/sinh'>;
+}
+declare module 'core-js/features/math/tanh.js' {
+ declare module.exports: $Exports<'core-js/features/math/tanh'>;
+}
+declare module 'core-js/features/math/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/features/math/to-string-tag'>;
+}
+declare module 'core-js/features/math/trunc.js' {
+ declare module.exports: $Exports<'core-js/features/math/trunc'>;
+}
+declare module 'core-js/features/math/umulh.js' {
+ declare module.exports: $Exports<'core-js/features/math/umulh'>;
+}
+declare module 'core-js/features/number/constructor.js' {
+ declare module.exports: $Exports<'core-js/features/number/constructor'>;
+}
+declare module 'core-js/features/number/epsilon.js' {
+ declare module.exports: $Exports<'core-js/features/number/epsilon'>;
+}
+declare module 'core-js/features/number/from-string.js' {
+ declare module.exports: $Exports<'core-js/features/number/from-string'>;
+}
+declare module 'core-js/features/number/index' {
+ declare module.exports: $Exports<'core-js/features/number'>;
+}
+declare module 'core-js/features/number/index.js' {
+ declare module.exports: $Exports<'core-js/features/number'>;
+}
+declare module 'core-js/features/number/is-finite.js' {
+ declare module.exports: $Exports<'core-js/features/number/is-finite'>;
+}
+declare module 'core-js/features/number/is-integer.js' {
+ declare module.exports: $Exports<'core-js/features/number/is-integer'>;
+}
+declare module 'core-js/features/number/is-nan.js' {
+ declare module.exports: $Exports<'core-js/features/number/is-nan'>;
+}
+declare module 'core-js/features/number/is-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/features/number/is-safe-integer'>;
+}
+declare module 'core-js/features/number/max-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/features/number/max-safe-integer'>;
+}
+declare module 'core-js/features/number/min-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/features/number/min-safe-integer'>;
+}
+declare module 'core-js/features/number/parse-float.js' {
+ declare module.exports: $Exports<'core-js/features/number/parse-float'>;
+}
+declare module 'core-js/features/number/parse-int.js' {
+ declare module.exports: $Exports<'core-js/features/number/parse-int'>;
+}
+declare module 'core-js/features/number/to-fixed.js' {
+ declare module.exports: $Exports<'core-js/features/number/to-fixed'>;
+}
+declare module 'core-js/features/number/to-precision.js' {
+ declare module.exports: $Exports<'core-js/features/number/to-precision'>;
+}
+declare module 'core-js/features/number/virtual/index' {
+ declare module.exports: $Exports<'core-js/features/number/virtual'>;
+}
+declare module 'core-js/features/number/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/features/number/virtual'>;
+}
+declare module 'core-js/features/number/virtual/to-fixed.js' {
+ declare module.exports: $Exports<'core-js/features/number/virtual/to-fixed'>;
+}
+declare module 'core-js/features/number/virtual/to-precision.js' {
+ declare module.exports: $Exports<'core-js/features/number/virtual/to-precision'>;
+}
+declare module 'core-js/features/object/assign.js' {
+ declare module.exports: $Exports<'core-js/features/object/assign'>;
+}
+declare module 'core-js/features/object/create.js' {
+ declare module.exports: $Exports<'core-js/features/object/create'>;
+}
+declare module 'core-js/features/object/define-getter.js' {
+ declare module.exports: $Exports<'core-js/features/object/define-getter'>;
+}
+declare module 'core-js/features/object/define-properties.js' {
+ declare module.exports: $Exports<'core-js/features/object/define-properties'>;
+}
+declare module 'core-js/features/object/define-property.js' {
+ declare module.exports: $Exports<'core-js/features/object/define-property'>;
+}
+declare module 'core-js/features/object/define-setter.js' {
+ declare module.exports: $Exports<'core-js/features/object/define-setter'>;
+}
+declare module 'core-js/features/object/entries.js' {
+ declare module.exports: $Exports<'core-js/features/object/entries'>;
+}
+declare module 'core-js/features/object/freeze.js' {
+ declare module.exports: $Exports<'core-js/features/object/freeze'>;
+}
+declare module 'core-js/features/object/from-entries.js' {
+ declare module.exports: $Exports<'core-js/features/object/from-entries'>;
+}
+declare module 'core-js/features/object/get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/features/object/get-own-property-descriptor'>;
+}
+declare module 'core-js/features/object/get-own-property-descriptors.js' {
+ declare module.exports: $Exports<'core-js/features/object/get-own-property-descriptors'>;
+}
+declare module 'core-js/features/object/get-own-property-names.js' {
+ declare module.exports: $Exports<'core-js/features/object/get-own-property-names'>;
+}
+declare module 'core-js/features/object/get-own-property-symbols.js' {
+ declare module.exports: $Exports<'core-js/features/object/get-own-property-symbols'>;
+}
+declare module 'core-js/features/object/get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/features/object/get-prototype-of'>;
+}
+declare module 'core-js/features/object/index' {
+ declare module.exports: $Exports<'core-js/features/object'>;
+}
+declare module 'core-js/features/object/index.js' {
+ declare module.exports: $Exports<'core-js/features/object'>;
+}
+declare module 'core-js/features/object/is-extensible.js' {
+ declare module.exports: $Exports<'core-js/features/object/is-extensible'>;
+}
+declare module 'core-js/features/object/is-frozen.js' {
+ declare module.exports: $Exports<'core-js/features/object/is-frozen'>;
+}
+declare module 'core-js/features/object/is-sealed.js' {
+ declare module.exports: $Exports<'core-js/features/object/is-sealed'>;
+}
+declare module 'core-js/features/object/is.js' {
+ declare module.exports: $Exports<'core-js/features/object/is'>;
+}
+declare module 'core-js/features/object/iterate-entries.js' {
+ declare module.exports: $Exports<'core-js/features/object/iterate-entries'>;
+}
+declare module 'core-js/features/object/iterate-keys.js' {
+ declare module.exports: $Exports<'core-js/features/object/iterate-keys'>;
+}
+declare module 'core-js/features/object/iterate-values.js' {
+ declare module.exports: $Exports<'core-js/features/object/iterate-values'>;
+}
+declare module 'core-js/features/object/keys.js' {
+ declare module.exports: $Exports<'core-js/features/object/keys'>;
+}
+declare module 'core-js/features/object/lookup-getter.js' {
+ declare module.exports: $Exports<'core-js/features/object/lookup-getter'>;
+}
+declare module 'core-js/features/object/lookup-setter.js' {
+ declare module.exports: $Exports<'core-js/features/object/lookup-setter'>;
+}
+declare module 'core-js/features/object/prevent-extensions.js' {
+ declare module.exports: $Exports<'core-js/features/object/prevent-extensions'>;
+}
+declare module 'core-js/features/object/seal.js' {
+ declare module.exports: $Exports<'core-js/features/object/seal'>;
+}
+declare module 'core-js/features/object/set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/features/object/set-prototype-of'>;
+}
+declare module 'core-js/features/object/to-string.js' {
+ declare module.exports: $Exports<'core-js/features/object/to-string'>;
+}
+declare module 'core-js/features/object/values.js' {
+ declare module.exports: $Exports<'core-js/features/object/values'>;
+}
+declare module 'core-js/features/observable/index' {
+ declare module.exports: $Exports<'core-js/features/observable'>;
+}
+declare module 'core-js/features/observable/index.js' {
+ declare module.exports: $Exports<'core-js/features/observable'>;
+}
+declare module 'core-js/features/parse-float.js' {
+ declare module.exports: $Exports<'core-js/features/parse-float'>;
+}
+declare module 'core-js/features/parse-int.js' {
+ declare module.exports: $Exports<'core-js/features/parse-int'>;
+}
+declare module 'core-js/features/promise/all-settled.js' {
+ declare module.exports: $Exports<'core-js/features/promise/all-settled'>;
+}
+declare module 'core-js/features/promise/any.js' {
+ declare module.exports: $Exports<'core-js/features/promise/any'>;
+}
+declare module 'core-js/features/promise/finally.js' {
+ declare module.exports: $Exports<'core-js/features/promise/finally'>;
+}
+declare module 'core-js/features/promise/index' {
+ declare module.exports: $Exports<'core-js/features/promise'>;
+}
+declare module 'core-js/features/promise/index.js' {
+ declare module.exports: $Exports<'core-js/features/promise'>;
+}
+declare module 'core-js/features/promise/try.js' {
+ declare module.exports: $Exports<'core-js/features/promise/try'>;
+}
+declare module 'core-js/features/queue-microtask.js' {
+ declare module.exports: $Exports<'core-js/features/queue-microtask'>;
+}
+declare module 'core-js/features/reflect/apply.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/apply'>;
+}
+declare module 'core-js/features/reflect/construct.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/construct'>;
+}
+declare module 'core-js/features/reflect/define-metadata.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/define-metadata'>;
+}
+declare module 'core-js/features/reflect/define-property.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/define-property'>;
+}
+declare module 'core-js/features/reflect/delete-metadata.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/delete-metadata'>;
+}
+declare module 'core-js/features/reflect/delete-property.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/delete-property'>;
+}
+declare module 'core-js/features/reflect/get-metadata-keys.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/get-metadata-keys'>;
+}
+declare module 'core-js/features/reflect/get-metadata.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/get-metadata'>;
+}
+declare module 'core-js/features/reflect/get-own-metadata-keys.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/get-own-metadata-keys'>;
+}
+declare module 'core-js/features/reflect/get-own-metadata.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/get-own-metadata'>;
+}
+declare module 'core-js/features/reflect/get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/get-own-property-descriptor'>;
+}
+declare module 'core-js/features/reflect/get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/get-prototype-of'>;
+}
+declare module 'core-js/features/reflect/get.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/get'>;
+}
+declare module 'core-js/features/reflect/has-metadata.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/has-metadata'>;
+}
+declare module 'core-js/features/reflect/has-own-metadata.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/has-own-metadata'>;
+}
+declare module 'core-js/features/reflect/has.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/has'>;
+}
+declare module 'core-js/features/reflect/index' {
+ declare module.exports: $Exports<'core-js/features/reflect'>;
+}
+declare module 'core-js/features/reflect/index.js' {
+ declare module.exports: $Exports<'core-js/features/reflect'>;
+}
+declare module 'core-js/features/reflect/is-extensible.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/is-extensible'>;
+}
+declare module 'core-js/features/reflect/metadata.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/metadata'>;
+}
+declare module 'core-js/features/reflect/own-keys.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/own-keys'>;
+}
+declare module 'core-js/features/reflect/prevent-extensions.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/prevent-extensions'>;
+}
+declare module 'core-js/features/reflect/set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/set-prototype-of'>;
+}
+declare module 'core-js/features/reflect/set.js' {
+ declare module.exports: $Exports<'core-js/features/reflect/set'>;
+}
+declare module 'core-js/features/regexp/constructor.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/constructor'>;
+}
+declare module 'core-js/features/regexp/flags.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/flags'>;
+}
+declare module 'core-js/features/regexp/index' {
+ declare module.exports: $Exports<'core-js/features/regexp'>;
+}
+declare module 'core-js/features/regexp/index.js' {
+ declare module.exports: $Exports<'core-js/features/regexp'>;
+}
+declare module 'core-js/features/regexp/match.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/match'>;
+}
+declare module 'core-js/features/regexp/replace.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/replace'>;
+}
+declare module 'core-js/features/regexp/search.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/search'>;
+}
+declare module 'core-js/features/regexp/split.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/split'>;
+}
+declare module 'core-js/features/regexp/sticky.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/sticky'>;
+}
+declare module 'core-js/features/regexp/test.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/test'>;
+}
+declare module 'core-js/features/regexp/to-string.js' {
+ declare module.exports: $Exports<'core-js/features/regexp/to-string'>;
+}
+declare module 'core-js/features/set-immediate.js' {
+ declare module.exports: $Exports<'core-js/features/set-immediate'>;
+}
+declare module 'core-js/features/set-interval.js' {
+ declare module.exports: $Exports<'core-js/features/set-interval'>;
+}
+declare module 'core-js/features/set-timeout.js' {
+ declare module.exports: $Exports<'core-js/features/set-timeout'>;
+}
+declare module 'core-js/features/set/add-all.js' {
+ declare module.exports: $Exports<'core-js/features/set/add-all'>;
+}
+declare module 'core-js/features/set/delete-all.js' {
+ declare module.exports: $Exports<'core-js/features/set/delete-all'>;
+}
+declare module 'core-js/features/set/difference.js' {
+ declare module.exports: $Exports<'core-js/features/set/difference'>;
+}
+declare module 'core-js/features/set/every.js' {
+ declare module.exports: $Exports<'core-js/features/set/every'>;
+}
+declare module 'core-js/features/set/filter.js' {
+ declare module.exports: $Exports<'core-js/features/set/filter'>;
+}
+declare module 'core-js/features/set/find.js' {
+ declare module.exports: $Exports<'core-js/features/set/find'>;
+}
+declare module 'core-js/features/set/from.js' {
+ declare module.exports: $Exports<'core-js/features/set/from'>;
+}
+declare module 'core-js/features/set/index' {
+ declare module.exports: $Exports<'core-js/features/set'>;
+}
+declare module 'core-js/features/set/index.js' {
+ declare module.exports: $Exports<'core-js/features/set'>;
+}
+declare module 'core-js/features/set/intersection.js' {
+ declare module.exports: $Exports<'core-js/features/set/intersection'>;
+}
+declare module 'core-js/features/set/is-disjoint-from.js' {
+ declare module.exports: $Exports<'core-js/features/set/is-disjoint-from'>;
+}
+declare module 'core-js/features/set/is-subset-of.js' {
+ declare module.exports: $Exports<'core-js/features/set/is-subset-of'>;
+}
+declare module 'core-js/features/set/is-superset-of.js' {
+ declare module.exports: $Exports<'core-js/features/set/is-superset-of'>;
+}
+declare module 'core-js/features/set/join.js' {
+ declare module.exports: $Exports<'core-js/features/set/join'>;
+}
+declare module 'core-js/features/set/map.js' {
+ declare module.exports: $Exports<'core-js/features/set/map'>;
+}
+declare module 'core-js/features/set/of.js' {
+ declare module.exports: $Exports<'core-js/features/set/of'>;
+}
+declare module 'core-js/features/set/reduce.js' {
+ declare module.exports: $Exports<'core-js/features/set/reduce'>;
+}
+declare module 'core-js/features/set/some.js' {
+ declare module.exports: $Exports<'core-js/features/set/some'>;
+}
+declare module 'core-js/features/set/symmetric-difference.js' {
+ declare module.exports: $Exports<'core-js/features/set/symmetric-difference'>;
+}
+declare module 'core-js/features/set/union.js' {
+ declare module.exports: $Exports<'core-js/features/set/union'>;
+}
+declare module 'core-js/features/string/anchor.js' {
+ declare module.exports: $Exports<'core-js/features/string/anchor'>;
+}
+declare module 'core-js/features/string/at.js' {
+ declare module.exports: $Exports<'core-js/features/string/at'>;
+}
+declare module 'core-js/features/string/big.js' {
+ declare module.exports: $Exports<'core-js/features/string/big'>;
+}
+declare module 'core-js/features/string/blink.js' {
+ declare module.exports: $Exports<'core-js/features/string/blink'>;
+}
+declare module 'core-js/features/string/bold.js' {
+ declare module.exports: $Exports<'core-js/features/string/bold'>;
+}
+declare module 'core-js/features/string/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/features/string/code-point-at'>;
+}
+declare module 'core-js/features/string/code-points.js' {
+ declare module.exports: $Exports<'core-js/features/string/code-points'>;
+}
+declare module 'core-js/features/string/ends-with.js' {
+ declare module.exports: $Exports<'core-js/features/string/ends-with'>;
+}
+declare module 'core-js/features/string/fixed.js' {
+ declare module.exports: $Exports<'core-js/features/string/fixed'>;
+}
+declare module 'core-js/features/string/fontcolor.js' {
+ declare module.exports: $Exports<'core-js/features/string/fontcolor'>;
+}
+declare module 'core-js/features/string/fontsize.js' {
+ declare module.exports: $Exports<'core-js/features/string/fontsize'>;
+}
+declare module 'core-js/features/string/from-code-point.js' {
+ declare module.exports: $Exports<'core-js/features/string/from-code-point'>;
+}
+declare module 'core-js/features/string/includes.js' {
+ declare module.exports: $Exports<'core-js/features/string/includes'>;
+}
+declare module 'core-js/features/string/index' {
+ declare module.exports: $Exports<'core-js/features/string'>;
+}
+declare module 'core-js/features/string/index.js' {
+ declare module.exports: $Exports<'core-js/features/string'>;
+}
+declare module 'core-js/features/string/italics.js' {
+ declare module.exports: $Exports<'core-js/features/string/italics'>;
+}
+declare module 'core-js/features/string/iterator.js' {
+ declare module.exports: $Exports<'core-js/features/string/iterator'>;
+}
+declare module 'core-js/features/string/link.js' {
+ declare module.exports: $Exports<'core-js/features/string/link'>;
+}
+declare module 'core-js/features/string/match-all.js' {
+ declare module.exports: $Exports<'core-js/features/string/match-all'>;
+}
+declare module 'core-js/features/string/match.js' {
+ declare module.exports: $Exports<'core-js/features/string/match'>;
+}
+declare module 'core-js/features/string/pad-end.js' {
+ declare module.exports: $Exports<'core-js/features/string/pad-end'>;
+}
+declare module 'core-js/features/string/pad-start.js' {
+ declare module.exports: $Exports<'core-js/features/string/pad-start'>;
+}
+declare module 'core-js/features/string/raw.js' {
+ declare module.exports: $Exports<'core-js/features/string/raw'>;
+}
+declare module 'core-js/features/string/repeat.js' {
+ declare module.exports: $Exports<'core-js/features/string/repeat'>;
+}
+declare module 'core-js/features/string/replace-all.js' {
+ declare module.exports: $Exports<'core-js/features/string/replace-all'>;
+}
+declare module 'core-js/features/string/replace.js' {
+ declare module.exports: $Exports<'core-js/features/string/replace'>;
+}
+declare module 'core-js/features/string/search.js' {
+ declare module.exports: $Exports<'core-js/features/string/search'>;
+}
+declare module 'core-js/features/string/small.js' {
+ declare module.exports: $Exports<'core-js/features/string/small'>;
+}
+declare module 'core-js/features/string/split.js' {
+ declare module.exports: $Exports<'core-js/features/string/split'>;
+}
+declare module 'core-js/features/string/starts-with.js' {
+ declare module.exports: $Exports<'core-js/features/string/starts-with'>;
+}
+declare module 'core-js/features/string/strike.js' {
+ declare module.exports: $Exports<'core-js/features/string/strike'>;
+}
+declare module 'core-js/features/string/sub.js' {
+ declare module.exports: $Exports<'core-js/features/string/sub'>;
+}
+declare module 'core-js/features/string/sup.js' {
+ declare module.exports: $Exports<'core-js/features/string/sup'>;
+}
+declare module 'core-js/features/string/trim-end.js' {
+ declare module.exports: $Exports<'core-js/features/string/trim-end'>;
+}
+declare module 'core-js/features/string/trim-left.js' {
+ declare module.exports: $Exports<'core-js/features/string/trim-left'>;
+}
+declare module 'core-js/features/string/trim-right.js' {
+ declare module.exports: $Exports<'core-js/features/string/trim-right'>;
+}
+declare module 'core-js/features/string/trim-start.js' {
+ declare module.exports: $Exports<'core-js/features/string/trim-start'>;
+}
+declare module 'core-js/features/string/trim.js' {
+ declare module.exports: $Exports<'core-js/features/string/trim'>;
+}
+declare module 'core-js/features/string/virtual/anchor.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/anchor'>;
+}
+declare module 'core-js/features/string/virtual/at.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/at'>;
+}
+declare module 'core-js/features/string/virtual/big.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/big'>;
+}
+declare module 'core-js/features/string/virtual/blink.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/blink'>;
+}
+declare module 'core-js/features/string/virtual/bold.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/bold'>;
+}
+declare module 'core-js/features/string/virtual/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/code-point-at'>;
+}
+declare module 'core-js/features/string/virtual/code-points.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/code-points'>;
+}
+declare module 'core-js/features/string/virtual/ends-with.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/ends-with'>;
+}
+declare module 'core-js/features/string/virtual/fixed.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/fixed'>;
+}
+declare module 'core-js/features/string/virtual/fontcolor.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/fontcolor'>;
+}
+declare module 'core-js/features/string/virtual/fontsize.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/fontsize'>;
+}
+declare module 'core-js/features/string/virtual/includes.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/includes'>;
+}
+declare module 'core-js/features/string/virtual/index' {
+ declare module.exports: $Exports<'core-js/features/string/virtual'>;
+}
+declare module 'core-js/features/string/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual'>;
+}
+declare module 'core-js/features/string/virtual/italics.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/italics'>;
+}
+declare module 'core-js/features/string/virtual/iterator.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/iterator'>;
+}
+declare module 'core-js/features/string/virtual/link.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/link'>;
+}
+declare module 'core-js/features/string/virtual/match-all.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/match-all'>;
+}
+declare module 'core-js/features/string/virtual/pad-end.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/pad-end'>;
+}
+declare module 'core-js/features/string/virtual/pad-start.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/pad-start'>;
+}
+declare module 'core-js/features/string/virtual/repeat.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/repeat'>;
+}
+declare module 'core-js/features/string/virtual/replace-all.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/replace-all'>;
+}
+declare module 'core-js/features/string/virtual/small.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/small'>;
+}
+declare module 'core-js/features/string/virtual/starts-with.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/starts-with'>;
+}
+declare module 'core-js/features/string/virtual/strike.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/strike'>;
+}
+declare module 'core-js/features/string/virtual/sub.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/sub'>;
+}
+declare module 'core-js/features/string/virtual/sup.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/sup'>;
+}
+declare module 'core-js/features/string/virtual/trim-end.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/trim-end'>;
+}
+declare module 'core-js/features/string/virtual/trim-left.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/trim-left'>;
+}
+declare module 'core-js/features/string/virtual/trim-right.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/trim-right'>;
+}
+declare module 'core-js/features/string/virtual/trim-start.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/trim-start'>;
+}
+declare module 'core-js/features/string/virtual/trim.js' {
+ declare module.exports: $Exports<'core-js/features/string/virtual/trim'>;
+}
+declare module 'core-js/features/symbol/async-dispose.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/async-dispose'>;
+}
+declare module 'core-js/features/symbol/async-iterator.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/async-iterator'>;
+}
+declare module 'core-js/features/symbol/description.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/description'>;
+}
+declare module 'core-js/features/symbol/dispose.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/dispose'>;
+}
+declare module 'core-js/features/symbol/for.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/for'>;
+}
+declare module 'core-js/features/symbol/has-instance.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/has-instance'>;
+}
+declare module 'core-js/features/symbol/index' {
+ declare module.exports: $Exports<'core-js/features/symbol'>;
+}
+declare module 'core-js/features/symbol/index.js' {
+ declare module.exports: $Exports<'core-js/features/symbol'>;
+}
+declare module 'core-js/features/symbol/is-concat-spreadable.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/is-concat-spreadable'>;
+}
+declare module 'core-js/features/symbol/iterator.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/iterator'>;
+}
+declare module 'core-js/features/symbol/key-for.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/key-for'>;
+}
+declare module 'core-js/features/symbol/match-all.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/match-all'>;
+}
+declare module 'core-js/features/symbol/match.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/match'>;
+}
+declare module 'core-js/features/symbol/observable.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/observable'>;
+}
+declare module 'core-js/features/symbol/pattern-match.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/pattern-match'>;
+}
+declare module 'core-js/features/symbol/replace-all.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/replace-all'>;
+}
+declare module 'core-js/features/symbol/replace.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/replace'>;
+}
+declare module 'core-js/features/symbol/search.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/search'>;
+}
+declare module 'core-js/features/symbol/species.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/species'>;
+}
+declare module 'core-js/features/symbol/split.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/split'>;
+}
+declare module 'core-js/features/symbol/to-primitive.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/to-primitive'>;
+}
+declare module 'core-js/features/symbol/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/to-string-tag'>;
+}
+declare module 'core-js/features/symbol/unscopables.js' {
+ declare module.exports: $Exports<'core-js/features/symbol/unscopables'>;
+}
+declare module 'core-js/features/typed-array/copy-within.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/copy-within'>;
+}
+declare module 'core-js/features/typed-array/entries.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/entries'>;
+}
+declare module 'core-js/features/typed-array/every.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/every'>;
+}
+declare module 'core-js/features/typed-array/fill.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/fill'>;
+}
+declare module 'core-js/features/typed-array/filter.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/filter'>;
+}
+declare module 'core-js/features/typed-array/find-index.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/find-index'>;
+}
+declare module 'core-js/features/typed-array/find.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/find'>;
+}
+declare module 'core-js/features/typed-array/float32-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/float32-array'>;
+}
+declare module 'core-js/features/typed-array/float64-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/float64-array'>;
+}
+declare module 'core-js/features/typed-array/for-each.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/for-each'>;
+}
+declare module 'core-js/features/typed-array/from.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/from'>;
+}
+declare module 'core-js/features/typed-array/includes.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/includes'>;
+}
+declare module 'core-js/features/typed-array/index-of.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/index-of'>;
+}
+declare module 'core-js/features/typed-array/index' {
+ declare module.exports: $Exports<'core-js/features/typed-array'>;
+}
+declare module 'core-js/features/typed-array/index.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array'>;
+}
+declare module 'core-js/features/typed-array/int16-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/int16-array'>;
+}
+declare module 'core-js/features/typed-array/int32-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/int32-array'>;
+}
+declare module 'core-js/features/typed-array/int8-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/int8-array'>;
+}
+declare module 'core-js/features/typed-array/iterator.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/iterator'>;
+}
+declare module 'core-js/features/typed-array/join.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/join'>;
+}
+declare module 'core-js/features/typed-array/keys.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/keys'>;
+}
+declare module 'core-js/features/typed-array/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/last-index-of'>;
+}
+declare module 'core-js/features/typed-array/map.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/map'>;
+}
+declare module 'core-js/features/typed-array/of.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/of'>;
+}
+declare module 'core-js/features/typed-array/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/reduce-right'>;
+}
+declare module 'core-js/features/typed-array/reduce.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/reduce'>;
+}
+declare module 'core-js/features/typed-array/reverse.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/reverse'>;
+}
+declare module 'core-js/features/typed-array/set.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/set'>;
+}
+declare module 'core-js/features/typed-array/slice.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/slice'>;
+}
+declare module 'core-js/features/typed-array/some.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/some'>;
+}
+declare module 'core-js/features/typed-array/sort.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/sort'>;
+}
+declare module 'core-js/features/typed-array/subarray.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/subarray'>;
+}
+declare module 'core-js/features/typed-array/to-locale-string.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/to-locale-string'>;
+}
+declare module 'core-js/features/typed-array/to-string.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/to-string'>;
+}
+declare module 'core-js/features/typed-array/uint16-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/uint16-array'>;
+}
+declare module 'core-js/features/typed-array/uint32-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/uint32-array'>;
+}
+declare module 'core-js/features/typed-array/uint8-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/uint8-array'>;
+}
+declare module 'core-js/features/typed-array/uint8-clamped-array.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/uint8-clamped-array'>;
+}
+declare module 'core-js/features/typed-array/values.js' {
+ declare module.exports: $Exports<'core-js/features/typed-array/values'>;
+}
+declare module 'core-js/features/url-search-params/index' {
+ declare module.exports: $Exports<'core-js/features/url-search-params'>;
+}
+declare module 'core-js/features/url-search-params/index.js' {
+ declare module.exports: $Exports<'core-js/features/url-search-params'>;
+}
+declare module 'core-js/features/url/index' {
+ declare module.exports: $Exports<'core-js/features/url'>;
+}
+declare module 'core-js/features/url/index.js' {
+ declare module.exports: $Exports<'core-js/features/url'>;
+}
+declare module 'core-js/features/url/to-json.js' {
+ declare module.exports: $Exports<'core-js/features/url/to-json'>;
+}
+declare module 'core-js/features/weak-map/delete-all.js' {
+ declare module.exports: $Exports<'core-js/features/weak-map/delete-all'>;
+}
+declare module 'core-js/features/weak-map/from.js' {
+ declare module.exports: $Exports<'core-js/features/weak-map/from'>;
+}
+declare module 'core-js/features/weak-map/index' {
+ declare module.exports: $Exports<'core-js/features/weak-map'>;
+}
+declare module 'core-js/features/weak-map/index.js' {
+ declare module.exports: $Exports<'core-js/features/weak-map'>;
+}
+declare module 'core-js/features/weak-map/of.js' {
+ declare module.exports: $Exports<'core-js/features/weak-map/of'>;
+}
+declare module 'core-js/features/weak-map/upsert.js' {
+ declare module.exports: $Exports<'core-js/features/weak-map/upsert'>;
+}
+declare module 'core-js/features/weak-set/add-all.js' {
+ declare module.exports: $Exports<'core-js/features/weak-set/add-all'>;
+}
+declare module 'core-js/features/weak-set/delete-all.js' {
+ declare module.exports: $Exports<'core-js/features/weak-set/delete-all'>;
+}
+declare module 'core-js/features/weak-set/from.js' {
+ declare module.exports: $Exports<'core-js/features/weak-set/from'>;
+}
+declare module 'core-js/features/weak-set/index' {
+ declare module.exports: $Exports<'core-js/features/weak-set'>;
+}
+declare module 'core-js/features/weak-set/index.js' {
+ declare module.exports: $Exports<'core-js/features/weak-set'>;
+}
+declare module 'core-js/features/weak-set/of.js' {
+ declare module.exports: $Exports<'core-js/features/weak-set/of'>;
+}
+declare module 'core-js/index' {
+ declare module.exports: $Exports<'core-js'>;
+}
+declare module 'core-js/index.js' {
+ declare module.exports: $Exports<'core-js'>;
+}
+declare module 'core-js/internals/a-function.js' {
+ declare module.exports: $Exports<'core-js/internals/a-function'>;
+}
+declare module 'core-js/internals/a-possible-prototype.js' {
+ declare module.exports: $Exports<'core-js/internals/a-possible-prototype'>;
+}
+declare module 'core-js/internals/add-to-unscopables.js' {
+ declare module.exports: $Exports<'core-js/internals/add-to-unscopables'>;
+}
+declare module 'core-js/internals/advance-string-index.js' {
+ declare module.exports: $Exports<'core-js/internals/advance-string-index'>;
+}
+declare module 'core-js/internals/an-instance.js' {
+ declare module.exports: $Exports<'core-js/internals/an-instance'>;
+}
+declare module 'core-js/internals/an-object.js' {
+ declare module.exports: $Exports<'core-js/internals/an-object'>;
+}
+declare module 'core-js/internals/array-buffer-native.js' {
+ declare module.exports: $Exports<'core-js/internals/array-buffer-native'>;
+}
+declare module 'core-js/internals/array-buffer-view-core.js' {
+ declare module.exports: $Exports<'core-js/internals/array-buffer-view-core'>;
+}
+declare module 'core-js/internals/array-buffer.js' {
+ declare module.exports: $Exports<'core-js/internals/array-buffer'>;
+}
+declare module 'core-js/internals/array-copy-within.js' {
+ declare module.exports: $Exports<'core-js/internals/array-copy-within'>;
+}
+declare module 'core-js/internals/array-fill.js' {
+ declare module.exports: $Exports<'core-js/internals/array-fill'>;
+}
+declare module 'core-js/internals/array-for-each.js' {
+ declare module.exports: $Exports<'core-js/internals/array-for-each'>;
+}
+declare module 'core-js/internals/array-from.js' {
+ declare module.exports: $Exports<'core-js/internals/array-from'>;
+}
+declare module 'core-js/internals/array-includes.js' {
+ declare module.exports: $Exports<'core-js/internals/array-includes'>;
+}
+declare module 'core-js/internals/array-iteration.js' {
+ declare module.exports: $Exports<'core-js/internals/array-iteration'>;
+}
+declare module 'core-js/internals/array-last-index-of.js' {
+ declare module.exports: $Exports<'core-js/internals/array-last-index-of'>;
+}
+declare module 'core-js/internals/array-method-has-species-support.js' {
+ declare module.exports: $Exports<'core-js/internals/array-method-has-species-support'>;
+}
+declare module 'core-js/internals/array-method-is-strict.js' {
+ declare module.exports: $Exports<'core-js/internals/array-method-is-strict'>;
+}
+declare module 'core-js/internals/array-method-uses-to-length.js' {
+ declare module.exports: $Exports<'core-js/internals/array-method-uses-to-length'>;
+}
+declare module 'core-js/internals/array-reduce.js' {
+ declare module.exports: $Exports<'core-js/internals/array-reduce'>;
+}
+declare module 'core-js/internals/array-species-create.js' {
+ declare module.exports: $Exports<'core-js/internals/array-species-create'>;
+}
+declare module 'core-js/internals/async-iterator-create-proxy.js' {
+ declare module.exports: $Exports<'core-js/internals/async-iterator-create-proxy'>;
+}
+declare module 'core-js/internals/async-iterator-iteration.js' {
+ declare module.exports: $Exports<'core-js/internals/async-iterator-iteration'>;
+}
+declare module 'core-js/internals/async-iterator-prototype.js' {
+ declare module.exports: $Exports<'core-js/internals/async-iterator-prototype'>;
+}
+declare module 'core-js/internals/call-with-safe-iteration-closing.js' {
+ declare module.exports: $Exports<'core-js/internals/call-with-safe-iteration-closing'>;
+}
+declare module 'core-js/internals/check-correctness-of-iteration.js' {
+ declare module.exports: $Exports<'core-js/internals/check-correctness-of-iteration'>;
+}
+declare module 'core-js/internals/classof-raw.js' {
+ declare module.exports: $Exports<'core-js/internals/classof-raw'>;
+}
+declare module 'core-js/internals/classof.js' {
+ declare module.exports: $Exports<'core-js/internals/classof'>;
+}
+declare module 'core-js/internals/collection-add-all.js' {
+ declare module.exports: $Exports<'core-js/internals/collection-add-all'>;
+}
+declare module 'core-js/internals/collection-delete-all.js' {
+ declare module.exports: $Exports<'core-js/internals/collection-delete-all'>;
+}
+declare module 'core-js/internals/collection-from.js' {
+ declare module.exports: $Exports<'core-js/internals/collection-from'>;
+}
+declare module 'core-js/internals/collection-of.js' {
+ declare module.exports: $Exports<'core-js/internals/collection-of'>;
+}
+declare module 'core-js/internals/collection-strong.js' {
+ declare module.exports: $Exports<'core-js/internals/collection-strong'>;
+}
+declare module 'core-js/internals/collection-weak.js' {
+ declare module.exports: $Exports<'core-js/internals/collection-weak'>;
+}
+declare module 'core-js/internals/collection.js' {
+ declare module.exports: $Exports<'core-js/internals/collection'>;
+}
+declare module 'core-js/internals/composite-key.js' {
+ declare module.exports: $Exports<'core-js/internals/composite-key'>;
+}
+declare module 'core-js/internals/copy-constructor-properties.js' {
+ declare module.exports: $Exports<'core-js/internals/copy-constructor-properties'>;
+}
+declare module 'core-js/internals/correct-is-regexp-logic.js' {
+ declare module.exports: $Exports<'core-js/internals/correct-is-regexp-logic'>;
+}
+declare module 'core-js/internals/correct-prototype-getter.js' {
+ declare module.exports: $Exports<'core-js/internals/correct-prototype-getter'>;
+}
+declare module 'core-js/internals/create-html.js' {
+ declare module.exports: $Exports<'core-js/internals/create-html'>;
+}
+declare module 'core-js/internals/create-iterator-constructor.js' {
+ declare module.exports: $Exports<'core-js/internals/create-iterator-constructor'>;
+}
+declare module 'core-js/internals/create-non-enumerable-property.js' {
+ declare module.exports: $Exports<'core-js/internals/create-non-enumerable-property'>;
+}
+declare module 'core-js/internals/create-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/internals/create-property-descriptor'>;
+}
+declare module 'core-js/internals/create-property.js' {
+ declare module.exports: $Exports<'core-js/internals/create-property'>;
+}
+declare module 'core-js/internals/date-to-iso-string.js' {
+ declare module.exports: $Exports<'core-js/internals/date-to-iso-string'>;
+}
+declare module 'core-js/internals/date-to-primitive.js' {
+ declare module.exports: $Exports<'core-js/internals/date-to-primitive'>;
+}
+declare module 'core-js/internals/define-iterator.js' {
+ declare module.exports: $Exports<'core-js/internals/define-iterator'>;
+}
+declare module 'core-js/internals/define-well-known-symbol.js' {
+ declare module.exports: $Exports<'core-js/internals/define-well-known-symbol'>;
+}
+declare module 'core-js/internals/descriptors.js' {
+ declare module.exports: $Exports<'core-js/internals/descriptors'>;
+}
+declare module 'core-js/internals/document-create-element.js' {
+ declare module.exports: $Exports<'core-js/internals/document-create-element'>;
+}
+declare module 'core-js/internals/dom-iterables.js' {
+ declare module.exports: $Exports<'core-js/internals/dom-iterables'>;
+}
+declare module 'core-js/internals/engine-is-ios.js' {
+ declare module.exports: $Exports<'core-js/internals/engine-is-ios'>;
+}
+declare module 'core-js/internals/engine-user-agent.js' {
+ declare module.exports: $Exports<'core-js/internals/engine-user-agent'>;
+}
+declare module 'core-js/internals/engine-v8-version.js' {
+ declare module.exports: $Exports<'core-js/internals/engine-v8-version'>;
+}
+declare module 'core-js/internals/entry-unbind.js' {
+ declare module.exports: $Exports<'core-js/internals/entry-unbind'>;
+}
+declare module 'core-js/internals/entry-virtual.js' {
+ declare module.exports: $Exports<'core-js/internals/entry-virtual'>;
+}
+declare module 'core-js/internals/enum-bug-keys.js' {
+ declare module.exports: $Exports<'core-js/internals/enum-bug-keys'>;
+}
+declare module 'core-js/internals/export.js' {
+ declare module.exports: $Exports<'core-js/internals/export'>;
+}
+declare module 'core-js/internals/fails.js' {
+ declare module.exports: $Exports<'core-js/internals/fails'>;
+}
+declare module 'core-js/internals/fix-regexp-well-known-symbol-logic.js' {
+ declare module.exports: $Exports<'core-js/internals/fix-regexp-well-known-symbol-logic'>;
+}
+declare module 'core-js/internals/flatten-into-array.js' {
+ declare module.exports: $Exports<'core-js/internals/flatten-into-array'>;
+}
+declare module 'core-js/internals/freezing.js' {
+ declare module.exports: $Exports<'core-js/internals/freezing'>;
+}
+declare module 'core-js/internals/function-bind-context.js' {
+ declare module.exports: $Exports<'core-js/internals/function-bind-context'>;
+}
+declare module 'core-js/internals/function-bind.js' {
+ declare module.exports: $Exports<'core-js/internals/function-bind'>;
+}
+declare module 'core-js/internals/get-async-iterator-method.js' {
+ declare module.exports: $Exports<'core-js/internals/get-async-iterator-method'>;
+}
+declare module 'core-js/internals/get-built-in.js' {
+ declare module.exports: $Exports<'core-js/internals/get-built-in'>;
+}
+declare module 'core-js/internals/get-iterator-method.js' {
+ declare module.exports: $Exports<'core-js/internals/get-iterator-method'>;
+}
+declare module 'core-js/internals/get-iterator.js' {
+ declare module.exports: $Exports<'core-js/internals/get-iterator'>;
+}
+declare module 'core-js/internals/get-map-iterator.js' {
+ declare module.exports: $Exports<'core-js/internals/get-map-iterator'>;
+}
+declare module 'core-js/internals/get-set-iterator.js' {
+ declare module.exports: $Exports<'core-js/internals/get-set-iterator'>;
+}
+declare module 'core-js/internals/global.js' {
+ declare module.exports: $Exports<'core-js/internals/global'>;
+}
+declare module 'core-js/internals/has.js' {
+ declare module.exports: $Exports<'core-js/internals/has'>;
+}
+declare module 'core-js/internals/hidden-keys.js' {
+ declare module.exports: $Exports<'core-js/internals/hidden-keys'>;
+}
+declare module 'core-js/internals/host-report-errors.js' {
+ declare module.exports: $Exports<'core-js/internals/host-report-errors'>;
+}
+declare module 'core-js/internals/html.js' {
+ declare module.exports: $Exports<'core-js/internals/html'>;
+}
+declare module 'core-js/internals/ie8-dom-define.js' {
+ declare module.exports: $Exports<'core-js/internals/ie8-dom-define'>;
+}
+declare module 'core-js/internals/ieee754.js' {
+ declare module.exports: $Exports<'core-js/internals/ieee754'>;
+}
+declare module 'core-js/internals/indexed-object.js' {
+ declare module.exports: $Exports<'core-js/internals/indexed-object'>;
+}
+declare module 'core-js/internals/inherit-if-required.js' {
+ declare module.exports: $Exports<'core-js/internals/inherit-if-required'>;
+}
+declare module 'core-js/internals/inspect-source.js' {
+ declare module.exports: $Exports<'core-js/internals/inspect-source'>;
+}
+declare module 'core-js/internals/internal-metadata.js' {
+ declare module.exports: $Exports<'core-js/internals/internal-metadata'>;
+}
+declare module 'core-js/internals/internal-state.js' {
+ declare module.exports: $Exports<'core-js/internals/internal-state'>;
+}
+declare module 'core-js/internals/is-array-iterator-method.js' {
+ declare module.exports: $Exports<'core-js/internals/is-array-iterator-method'>;
+}
+declare module 'core-js/internals/is-array.js' {
+ declare module.exports: $Exports<'core-js/internals/is-array'>;
+}
+declare module 'core-js/internals/is-forced.js' {
+ declare module.exports: $Exports<'core-js/internals/is-forced'>;
+}
+declare module 'core-js/internals/is-integer.js' {
+ declare module.exports: $Exports<'core-js/internals/is-integer'>;
+}
+declare module 'core-js/internals/is-iterable.js' {
+ declare module.exports: $Exports<'core-js/internals/is-iterable'>;
+}
+declare module 'core-js/internals/is-object.js' {
+ declare module.exports: $Exports<'core-js/internals/is-object'>;
+}
+declare module 'core-js/internals/is-pure.js' {
+ declare module.exports: $Exports<'core-js/internals/is-pure'>;
+}
+declare module 'core-js/internals/is-regexp.js' {
+ declare module.exports: $Exports<'core-js/internals/is-regexp'>;
+}
+declare module 'core-js/internals/iterate.js' {
+ declare module.exports: $Exports<'core-js/internals/iterate'>;
+}
+declare module 'core-js/internals/iterator-create-proxy.js' {
+ declare module.exports: $Exports<'core-js/internals/iterator-create-proxy'>;
+}
+declare module 'core-js/internals/iterators-core.js' {
+ declare module.exports: $Exports<'core-js/internals/iterators-core'>;
+}
+declare module 'core-js/internals/iterators.js' {
+ declare module.exports: $Exports<'core-js/internals/iterators'>;
+}
+declare module 'core-js/internals/map-upsert.js' {
+ declare module.exports: $Exports<'core-js/internals/map-upsert'>;
+}
+declare module 'core-js/internals/math-expm1.js' {
+ declare module.exports: $Exports<'core-js/internals/math-expm1'>;
+}
+declare module 'core-js/internals/math-fround.js' {
+ declare module.exports: $Exports<'core-js/internals/math-fround'>;
+}
+declare module 'core-js/internals/math-log1p.js' {
+ declare module.exports: $Exports<'core-js/internals/math-log1p'>;
+}
+declare module 'core-js/internals/math-scale.js' {
+ declare module.exports: $Exports<'core-js/internals/math-scale'>;
+}
+declare module 'core-js/internals/math-sign.js' {
+ declare module.exports: $Exports<'core-js/internals/math-sign'>;
+}
+declare module 'core-js/internals/microtask.js' {
+ declare module.exports: $Exports<'core-js/internals/microtask'>;
+}
+declare module 'core-js/internals/native-promise-constructor.js' {
+ declare module.exports: $Exports<'core-js/internals/native-promise-constructor'>;
+}
+declare module 'core-js/internals/native-symbol.js' {
+ declare module.exports: $Exports<'core-js/internals/native-symbol'>;
+}
+declare module 'core-js/internals/native-url.js' {
+ declare module.exports: $Exports<'core-js/internals/native-url'>;
+}
+declare module 'core-js/internals/native-weak-map.js' {
+ declare module.exports: $Exports<'core-js/internals/native-weak-map'>;
+}
+declare module 'core-js/internals/new-promise-capability.js' {
+ declare module.exports: $Exports<'core-js/internals/new-promise-capability'>;
+}
+declare module 'core-js/internals/not-a-regexp.js' {
+ declare module.exports: $Exports<'core-js/internals/not-a-regexp'>;
+}
+declare module 'core-js/internals/number-is-finite.js' {
+ declare module.exports: $Exports<'core-js/internals/number-is-finite'>;
+}
+declare module 'core-js/internals/number-parse-float.js' {
+ declare module.exports: $Exports<'core-js/internals/number-parse-float'>;
+}
+declare module 'core-js/internals/number-parse-int.js' {
+ declare module.exports: $Exports<'core-js/internals/number-parse-int'>;
+}
+declare module 'core-js/internals/object-assign.js' {
+ declare module.exports: $Exports<'core-js/internals/object-assign'>;
+}
+declare module 'core-js/internals/object-create.js' {
+ declare module.exports: $Exports<'core-js/internals/object-create'>;
+}
+declare module 'core-js/internals/object-define-properties.js' {
+ declare module.exports: $Exports<'core-js/internals/object-define-properties'>;
+}
+declare module 'core-js/internals/object-define-property.js' {
+ declare module.exports: $Exports<'core-js/internals/object-define-property'>;
+}
+declare module 'core-js/internals/object-get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/internals/object-get-own-property-descriptor'>;
+}
+declare module 'core-js/internals/object-get-own-property-names-external.js' {
+ declare module.exports: $Exports<'core-js/internals/object-get-own-property-names-external'>;
+}
+declare module 'core-js/internals/object-get-own-property-names.js' {
+ declare module.exports: $Exports<'core-js/internals/object-get-own-property-names'>;
+}
+declare module 'core-js/internals/object-get-own-property-symbols.js' {
+ declare module.exports: $Exports<'core-js/internals/object-get-own-property-symbols'>;
+}
+declare module 'core-js/internals/object-get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/internals/object-get-prototype-of'>;
+}
+declare module 'core-js/internals/object-iterator.js' {
+ declare module.exports: $Exports<'core-js/internals/object-iterator'>;
+}
+declare module 'core-js/internals/object-keys-internal.js' {
+ declare module.exports: $Exports<'core-js/internals/object-keys-internal'>;
+}
+declare module 'core-js/internals/object-keys.js' {
+ declare module.exports: $Exports<'core-js/internals/object-keys'>;
+}
+declare module 'core-js/internals/object-property-is-enumerable.js' {
+ declare module.exports: $Exports<'core-js/internals/object-property-is-enumerable'>;
+}
+declare module 'core-js/internals/object-prototype-accessors-forced.js' {
+ declare module.exports: $Exports<'core-js/internals/object-prototype-accessors-forced'>;
+}
+declare module 'core-js/internals/object-set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/internals/object-set-prototype-of'>;
+}
+declare module 'core-js/internals/object-to-array.js' {
+ declare module.exports: $Exports<'core-js/internals/object-to-array'>;
+}
+declare module 'core-js/internals/object-to-string.js' {
+ declare module.exports: $Exports<'core-js/internals/object-to-string'>;
+}
+declare module 'core-js/internals/own-keys.js' {
+ declare module.exports: $Exports<'core-js/internals/own-keys'>;
+}
+declare module 'core-js/internals/path.js' {
+ declare module.exports: $Exports<'core-js/internals/path'>;
+}
+declare module 'core-js/internals/perform.js' {
+ declare module.exports: $Exports<'core-js/internals/perform'>;
+}
+declare module 'core-js/internals/promise-resolve.js' {
+ declare module.exports: $Exports<'core-js/internals/promise-resolve'>;
+}
+declare module 'core-js/internals/redefine-all.js' {
+ declare module.exports: $Exports<'core-js/internals/redefine-all'>;
+}
+declare module 'core-js/internals/redefine.js' {
+ declare module.exports: $Exports<'core-js/internals/redefine'>;
+}
+declare module 'core-js/internals/reflect-metadata.js' {
+ declare module.exports: $Exports<'core-js/internals/reflect-metadata'>;
+}
+declare module 'core-js/internals/regexp-exec-abstract.js' {
+ declare module.exports: $Exports<'core-js/internals/regexp-exec-abstract'>;
+}
+declare module 'core-js/internals/regexp-exec.js' {
+ declare module.exports: $Exports<'core-js/internals/regexp-exec'>;
+}
+declare module 'core-js/internals/regexp-flags.js' {
+ declare module.exports: $Exports<'core-js/internals/regexp-flags'>;
+}
+declare module 'core-js/internals/regexp-sticky-helpers.js' {
+ declare module.exports: $Exports<'core-js/internals/regexp-sticky-helpers'>;
+}
+declare module 'core-js/internals/require-object-coercible.js' {
+ declare module.exports: $Exports<'core-js/internals/require-object-coercible'>;
+}
+declare module 'core-js/internals/same-value-zero.js' {
+ declare module.exports: $Exports<'core-js/internals/same-value-zero'>;
+}
+declare module 'core-js/internals/same-value.js' {
+ declare module.exports: $Exports<'core-js/internals/same-value'>;
+}
+declare module 'core-js/internals/set-global.js' {
+ declare module.exports: $Exports<'core-js/internals/set-global'>;
+}
+declare module 'core-js/internals/set-species.js' {
+ declare module.exports: $Exports<'core-js/internals/set-species'>;
+}
+declare module 'core-js/internals/set-to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/internals/set-to-string-tag'>;
+}
+declare module 'core-js/internals/shared-key.js' {
+ declare module.exports: $Exports<'core-js/internals/shared-key'>;
+}
+declare module 'core-js/internals/shared-store.js' {
+ declare module.exports: $Exports<'core-js/internals/shared-store'>;
+}
+declare module 'core-js/internals/shared.js' {
+ declare module.exports: $Exports<'core-js/internals/shared'>;
+}
+declare module 'core-js/internals/species-constructor.js' {
+ declare module.exports: $Exports<'core-js/internals/species-constructor'>;
+}
+declare module 'core-js/internals/string-html-forced.js' {
+ declare module.exports: $Exports<'core-js/internals/string-html-forced'>;
+}
+declare module 'core-js/internals/string-multibyte.js' {
+ declare module.exports: $Exports<'core-js/internals/string-multibyte'>;
+}
+declare module 'core-js/internals/string-pad-webkit-bug.js' {
+ declare module.exports: $Exports<'core-js/internals/string-pad-webkit-bug'>;
+}
+declare module 'core-js/internals/string-pad.js' {
+ declare module.exports: $Exports<'core-js/internals/string-pad'>;
+}
+declare module 'core-js/internals/string-punycode-to-ascii.js' {
+ declare module.exports: $Exports<'core-js/internals/string-punycode-to-ascii'>;
+}
+declare module 'core-js/internals/string-repeat.js' {
+ declare module.exports: $Exports<'core-js/internals/string-repeat'>;
+}
+declare module 'core-js/internals/string-trim-forced.js' {
+ declare module.exports: $Exports<'core-js/internals/string-trim-forced'>;
+}
+declare module 'core-js/internals/string-trim.js' {
+ declare module.exports: $Exports<'core-js/internals/string-trim'>;
+}
+declare module 'core-js/internals/task.js' {
+ declare module.exports: $Exports<'core-js/internals/task'>;
+}
+declare module 'core-js/internals/this-number-value.js' {
+ declare module.exports: $Exports<'core-js/internals/this-number-value'>;
+}
+declare module 'core-js/internals/to-absolute-index.js' {
+ declare module.exports: $Exports<'core-js/internals/to-absolute-index'>;
+}
+declare module 'core-js/internals/to-index.js' {
+ declare module.exports: $Exports<'core-js/internals/to-index'>;
+}
+declare module 'core-js/internals/to-indexed-object.js' {
+ declare module.exports: $Exports<'core-js/internals/to-indexed-object'>;
+}
+declare module 'core-js/internals/to-integer.js' {
+ declare module.exports: $Exports<'core-js/internals/to-integer'>;
+}
+declare module 'core-js/internals/to-length.js' {
+ declare module.exports: $Exports<'core-js/internals/to-length'>;
+}
+declare module 'core-js/internals/to-object.js' {
+ declare module.exports: $Exports<'core-js/internals/to-object'>;
+}
+declare module 'core-js/internals/to-offset.js' {
+ declare module.exports: $Exports<'core-js/internals/to-offset'>;
+}
+declare module 'core-js/internals/to-positive-integer.js' {
+ declare module.exports: $Exports<'core-js/internals/to-positive-integer'>;
+}
+declare module 'core-js/internals/to-primitive.js' {
+ declare module.exports: $Exports<'core-js/internals/to-primitive'>;
+}
+declare module 'core-js/internals/to-string-tag-support.js' {
+ declare module.exports: $Exports<'core-js/internals/to-string-tag-support'>;
+}
+declare module 'core-js/internals/typed-array-constructor.js' {
+ declare module.exports: $Exports<'core-js/internals/typed-array-constructor'>;
+}
+declare module 'core-js/internals/typed-array-constructors-require-wrappers.js' {
+ declare module.exports: $Exports<'core-js/internals/typed-array-constructors-require-wrappers'>;
+}
+declare module 'core-js/internals/typed-array-from.js' {
+ declare module.exports: $Exports<'core-js/internals/typed-array-from'>;
+}
+declare module 'core-js/internals/uid.js' {
+ declare module.exports: $Exports<'core-js/internals/uid'>;
+}
+declare module 'core-js/internals/use-symbol-as-uid.js' {
+ declare module.exports: $Exports<'core-js/internals/use-symbol-as-uid'>;
+}
+declare module 'core-js/internals/well-known-symbol-wrapped.js' {
+ declare module.exports: $Exports<'core-js/internals/well-known-symbol-wrapped'>;
+}
+declare module 'core-js/internals/well-known-symbol.js' {
+ declare module.exports: $Exports<'core-js/internals/well-known-symbol'>;
+}
+declare module 'core-js/internals/whitespaces.js' {
+ declare module.exports: $Exports<'core-js/internals/whitespaces'>;
+}
+declare module 'core-js/modules/es.array-buffer.constructor.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array-buffer.constructor'>;
+}
+declare module 'core-js/modules/es.array-buffer.is-view.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array-buffer.is-view'>;
+}
+declare module 'core-js/modules/es.array-buffer.slice.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array-buffer.slice'>;
+}
+declare module 'core-js/modules/es.array.concat.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.concat'>;
+}
+declare module 'core-js/modules/es.array.copy-within.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.copy-within'>;
+}
+declare module 'core-js/modules/es.array.every.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.every'>;
+}
+declare module 'core-js/modules/es.array.fill.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.fill'>;
+}
+declare module 'core-js/modules/es.array.filter.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.filter'>;
+}
+declare module 'core-js/modules/es.array.find-index.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.find-index'>;
+}
+declare module 'core-js/modules/es.array.find.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.find'>;
+}
+declare module 'core-js/modules/es.array.flat-map.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.flat-map'>;
+}
+declare module 'core-js/modules/es.array.flat.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.flat'>;
+}
+declare module 'core-js/modules/es.array.for-each.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.for-each'>;
+}
+declare module 'core-js/modules/es.array.from.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.from'>;
+}
+declare module 'core-js/modules/es.array.includes.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.includes'>;
+}
+declare module 'core-js/modules/es.array.index-of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.index-of'>;
+}
+declare module 'core-js/modules/es.array.is-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.is-array'>;
+}
+declare module 'core-js/modules/es.array.iterator.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.iterator'>;
+}
+declare module 'core-js/modules/es.array.join.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.join'>;
+}
+declare module 'core-js/modules/es.array.last-index-of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.last-index-of'>;
+}
+declare module 'core-js/modules/es.array.map.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.map'>;
+}
+declare module 'core-js/modules/es.array.of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.of'>;
+}
+declare module 'core-js/modules/es.array.reduce-right.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.reduce-right'>;
+}
+declare module 'core-js/modules/es.array.reduce.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.reduce'>;
+}
+declare module 'core-js/modules/es.array.reverse.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.reverse'>;
+}
+declare module 'core-js/modules/es.array.slice.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.slice'>;
+}
+declare module 'core-js/modules/es.array.some.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.some'>;
+}
+declare module 'core-js/modules/es.array.sort.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.sort'>;
+}
+declare module 'core-js/modules/es.array.species.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.species'>;
+}
+declare module 'core-js/modules/es.array.splice.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.splice'>;
+}
+declare module 'core-js/modules/es.array.unscopables.flat-map.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.unscopables.flat-map'>;
+}
+declare module 'core-js/modules/es.array.unscopables.flat.js' {
+ declare module.exports: $Exports<'core-js/modules/es.array.unscopables.flat'>;
+}
+declare module 'core-js/modules/es.data-view.js' {
+ declare module.exports: $Exports<'core-js/modules/es.data-view'>;
+}
+declare module 'core-js/modules/es.date.now.js' {
+ declare module.exports: $Exports<'core-js/modules/es.date.now'>;
+}
+declare module 'core-js/modules/es.date.to-iso-string.js' {
+ declare module.exports: $Exports<'core-js/modules/es.date.to-iso-string'>;
+}
+declare module 'core-js/modules/es.date.to-json.js' {
+ declare module.exports: $Exports<'core-js/modules/es.date.to-json'>;
+}
+declare module 'core-js/modules/es.date.to-primitive.js' {
+ declare module.exports: $Exports<'core-js/modules/es.date.to-primitive'>;
+}
+declare module 'core-js/modules/es.date.to-string.js' {
+ declare module.exports: $Exports<'core-js/modules/es.date.to-string'>;
+}
+declare module 'core-js/modules/es.function.bind.js' {
+ declare module.exports: $Exports<'core-js/modules/es.function.bind'>;
+}
+declare module 'core-js/modules/es.function.has-instance.js' {
+ declare module.exports: $Exports<'core-js/modules/es.function.has-instance'>;
+}
+declare module 'core-js/modules/es.function.name.js' {
+ declare module.exports: $Exports<'core-js/modules/es.function.name'>;
+}
+declare module 'core-js/modules/es.global-this.js' {
+ declare module.exports: $Exports<'core-js/modules/es.global-this'>;
+}
+declare module 'core-js/modules/es.json.stringify.js' {
+ declare module.exports: $Exports<'core-js/modules/es.json.stringify'>;
+}
+declare module 'core-js/modules/es.json.to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/modules/es.json.to-string-tag'>;
+}
+declare module 'core-js/modules/es.map.js' {
+ declare module.exports: $Exports<'core-js/modules/es.map'>;
+}
+declare module 'core-js/modules/es.math.acosh.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.acosh'>;
+}
+declare module 'core-js/modules/es.math.asinh.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.asinh'>;
+}
+declare module 'core-js/modules/es.math.atanh.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.atanh'>;
+}
+declare module 'core-js/modules/es.math.cbrt.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.cbrt'>;
+}
+declare module 'core-js/modules/es.math.clz32.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.clz32'>;
+}
+declare module 'core-js/modules/es.math.cosh.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.cosh'>;
+}
+declare module 'core-js/modules/es.math.expm1.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.expm1'>;
+}
+declare module 'core-js/modules/es.math.fround.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.fround'>;
+}
+declare module 'core-js/modules/es.math.hypot.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.hypot'>;
+}
+declare module 'core-js/modules/es.math.imul.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.imul'>;
+}
+declare module 'core-js/modules/es.math.log10.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.log10'>;
+}
+declare module 'core-js/modules/es.math.log1p.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.log1p'>;
+}
+declare module 'core-js/modules/es.math.log2.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.log2'>;
+}
+declare module 'core-js/modules/es.math.sign.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.sign'>;
+}
+declare module 'core-js/modules/es.math.sinh.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.sinh'>;
+}
+declare module 'core-js/modules/es.math.tanh.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.tanh'>;
+}
+declare module 'core-js/modules/es.math.to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.to-string-tag'>;
+}
+declare module 'core-js/modules/es.math.trunc.js' {
+ declare module.exports: $Exports<'core-js/modules/es.math.trunc'>;
+}
+declare module 'core-js/modules/es.number.constructor.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.constructor'>;
+}
+declare module 'core-js/modules/es.number.epsilon.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.epsilon'>;
+}
+declare module 'core-js/modules/es.number.is-finite.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.is-finite'>;
+}
+declare module 'core-js/modules/es.number.is-integer.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.is-integer'>;
+}
+declare module 'core-js/modules/es.number.is-nan.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.is-nan'>;
+}
+declare module 'core-js/modules/es.number.is-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.is-safe-integer'>;
+}
+declare module 'core-js/modules/es.number.max-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.max-safe-integer'>;
+}
+declare module 'core-js/modules/es.number.min-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.min-safe-integer'>;
+}
+declare module 'core-js/modules/es.number.parse-float.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.parse-float'>;
+}
+declare module 'core-js/modules/es.number.parse-int.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.parse-int'>;
+}
+declare module 'core-js/modules/es.number.to-fixed.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.to-fixed'>;
+}
+declare module 'core-js/modules/es.number.to-precision.js' {
+ declare module.exports: $Exports<'core-js/modules/es.number.to-precision'>;
+}
+declare module 'core-js/modules/es.object.assign.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.assign'>;
+}
+declare module 'core-js/modules/es.object.create.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.create'>;
+}
+declare module 'core-js/modules/es.object.define-getter.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.define-getter'>;
+}
+declare module 'core-js/modules/es.object.define-properties.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.define-properties'>;
+}
+declare module 'core-js/modules/es.object.define-property.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.define-property'>;
+}
+declare module 'core-js/modules/es.object.define-setter.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.define-setter'>;
+}
+declare module 'core-js/modules/es.object.entries.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.entries'>;
+}
+declare module 'core-js/modules/es.object.freeze.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.freeze'>;
+}
+declare module 'core-js/modules/es.object.from-entries.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.from-entries'>;
+}
+declare module 'core-js/modules/es.object.get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.get-own-property-descriptor'>;
+}
+declare module 'core-js/modules/es.object.get-own-property-descriptors.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.get-own-property-descriptors'>;
+}
+declare module 'core-js/modules/es.object.get-own-property-names.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.get-own-property-names'>;
+}
+declare module 'core-js/modules/es.object.get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.get-prototype-of'>;
+}
+declare module 'core-js/modules/es.object.is-extensible.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.is-extensible'>;
+}
+declare module 'core-js/modules/es.object.is-frozen.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.is-frozen'>;
+}
+declare module 'core-js/modules/es.object.is-sealed.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.is-sealed'>;
+}
+declare module 'core-js/modules/es.object.is.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.is'>;
+}
+declare module 'core-js/modules/es.object.keys.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.keys'>;
+}
+declare module 'core-js/modules/es.object.lookup-getter.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.lookup-getter'>;
+}
+declare module 'core-js/modules/es.object.lookup-setter.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.lookup-setter'>;
+}
+declare module 'core-js/modules/es.object.prevent-extensions.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.prevent-extensions'>;
+}
+declare module 'core-js/modules/es.object.seal.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.seal'>;
+}
+declare module 'core-js/modules/es.object.set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.set-prototype-of'>;
+}
+declare module 'core-js/modules/es.object.to-string.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.to-string'>;
+}
+declare module 'core-js/modules/es.object.values.js' {
+ declare module.exports: $Exports<'core-js/modules/es.object.values'>;
+}
+declare module 'core-js/modules/es.parse-float.js' {
+ declare module.exports: $Exports<'core-js/modules/es.parse-float'>;
+}
+declare module 'core-js/modules/es.parse-int.js' {
+ declare module.exports: $Exports<'core-js/modules/es.parse-int'>;
+}
+declare module 'core-js/modules/es.promise.all-settled.js' {
+ declare module.exports: $Exports<'core-js/modules/es.promise.all-settled'>;
+}
+declare module 'core-js/modules/es.promise.finally.js' {
+ declare module.exports: $Exports<'core-js/modules/es.promise.finally'>;
+}
+declare module 'core-js/modules/es.promise.js' {
+ declare module.exports: $Exports<'core-js/modules/es.promise'>;
+}
+declare module 'core-js/modules/es.reflect.apply.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.apply'>;
+}
+declare module 'core-js/modules/es.reflect.construct.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.construct'>;
+}
+declare module 'core-js/modules/es.reflect.define-property.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.define-property'>;
+}
+declare module 'core-js/modules/es.reflect.delete-property.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.delete-property'>;
+}
+declare module 'core-js/modules/es.reflect.get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.get-own-property-descriptor'>;
+}
+declare module 'core-js/modules/es.reflect.get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.get-prototype-of'>;
+}
+declare module 'core-js/modules/es.reflect.get.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.get'>;
+}
+declare module 'core-js/modules/es.reflect.has.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.has'>;
+}
+declare module 'core-js/modules/es.reflect.is-extensible.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.is-extensible'>;
+}
+declare module 'core-js/modules/es.reflect.own-keys.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.own-keys'>;
+}
+declare module 'core-js/modules/es.reflect.prevent-extensions.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.prevent-extensions'>;
+}
+declare module 'core-js/modules/es.reflect.set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.set-prototype-of'>;
+}
+declare module 'core-js/modules/es.reflect.set.js' {
+ declare module.exports: $Exports<'core-js/modules/es.reflect.set'>;
+}
+declare module 'core-js/modules/es.regexp.constructor.js' {
+ declare module.exports: $Exports<'core-js/modules/es.regexp.constructor'>;
+}
+declare module 'core-js/modules/es.regexp.exec.js' {
+ declare module.exports: $Exports<'core-js/modules/es.regexp.exec'>;
+}
+declare module 'core-js/modules/es.regexp.flags.js' {
+ declare module.exports: $Exports<'core-js/modules/es.regexp.flags'>;
+}
+declare module 'core-js/modules/es.regexp.sticky.js' {
+ declare module.exports: $Exports<'core-js/modules/es.regexp.sticky'>;
+}
+declare module 'core-js/modules/es.regexp.test.js' {
+ declare module.exports: $Exports<'core-js/modules/es.regexp.test'>;
+}
+declare module 'core-js/modules/es.regexp.to-string.js' {
+ declare module.exports: $Exports<'core-js/modules/es.regexp.to-string'>;
+}
+declare module 'core-js/modules/es.set.js' {
+ declare module.exports: $Exports<'core-js/modules/es.set'>;
+}
+declare module 'core-js/modules/es.string.anchor.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.anchor'>;
+}
+declare module 'core-js/modules/es.string.big.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.big'>;
+}
+declare module 'core-js/modules/es.string.blink.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.blink'>;
+}
+declare module 'core-js/modules/es.string.bold.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.bold'>;
+}
+declare module 'core-js/modules/es.string.code-point-at.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.code-point-at'>;
+}
+declare module 'core-js/modules/es.string.ends-with.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.ends-with'>;
+}
+declare module 'core-js/modules/es.string.fixed.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.fixed'>;
+}
+declare module 'core-js/modules/es.string.fontcolor.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.fontcolor'>;
+}
+declare module 'core-js/modules/es.string.fontsize.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.fontsize'>;
+}
+declare module 'core-js/modules/es.string.from-code-point.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.from-code-point'>;
+}
+declare module 'core-js/modules/es.string.includes.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.includes'>;
+}
+declare module 'core-js/modules/es.string.italics.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.italics'>;
+}
+declare module 'core-js/modules/es.string.iterator.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.iterator'>;
+}
+declare module 'core-js/modules/es.string.link.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.link'>;
+}
+declare module 'core-js/modules/es.string.match-all.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.match-all'>;
+}
+declare module 'core-js/modules/es.string.match.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.match'>;
+}
+declare module 'core-js/modules/es.string.pad-end.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.pad-end'>;
+}
+declare module 'core-js/modules/es.string.pad-start.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.pad-start'>;
+}
+declare module 'core-js/modules/es.string.raw.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.raw'>;
+}
+declare module 'core-js/modules/es.string.repeat.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.repeat'>;
+}
+declare module 'core-js/modules/es.string.replace.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.replace'>;
+}
+declare module 'core-js/modules/es.string.search.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.search'>;
+}
+declare module 'core-js/modules/es.string.small.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.small'>;
+}
+declare module 'core-js/modules/es.string.split.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.split'>;
+}
+declare module 'core-js/modules/es.string.starts-with.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.starts-with'>;
+}
+declare module 'core-js/modules/es.string.strike.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.strike'>;
+}
+declare module 'core-js/modules/es.string.sub.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.sub'>;
+}
+declare module 'core-js/modules/es.string.sup.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.sup'>;
+}
+declare module 'core-js/modules/es.string.trim-end.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.trim-end'>;
+}
+declare module 'core-js/modules/es.string.trim-start.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.trim-start'>;
+}
+declare module 'core-js/modules/es.string.trim.js' {
+ declare module.exports: $Exports<'core-js/modules/es.string.trim'>;
+}
+declare module 'core-js/modules/es.symbol.async-iterator.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.async-iterator'>;
+}
+declare module 'core-js/modules/es.symbol.description.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.description'>;
+}
+declare module 'core-js/modules/es.symbol.has-instance.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.has-instance'>;
+}
+declare module 'core-js/modules/es.symbol.is-concat-spreadable.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.is-concat-spreadable'>;
+}
+declare module 'core-js/modules/es.symbol.iterator.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.iterator'>;
+}
+declare module 'core-js/modules/es.symbol.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol'>;
+}
+declare module 'core-js/modules/es.symbol.match-all.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.match-all'>;
+}
+declare module 'core-js/modules/es.symbol.match.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.match'>;
+}
+declare module 'core-js/modules/es.symbol.replace.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.replace'>;
+}
+declare module 'core-js/modules/es.symbol.search.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.search'>;
+}
+declare module 'core-js/modules/es.symbol.species.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.species'>;
+}
+declare module 'core-js/modules/es.symbol.split.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.split'>;
+}
+declare module 'core-js/modules/es.symbol.to-primitive.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.to-primitive'>;
+}
+declare module 'core-js/modules/es.symbol.to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.to-string-tag'>;
+}
+declare module 'core-js/modules/es.symbol.unscopables.js' {
+ declare module.exports: $Exports<'core-js/modules/es.symbol.unscopables'>;
+}
+declare module 'core-js/modules/es.typed-array.copy-within.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.copy-within'>;
+}
+declare module 'core-js/modules/es.typed-array.every.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.every'>;
+}
+declare module 'core-js/modules/es.typed-array.fill.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.fill'>;
+}
+declare module 'core-js/modules/es.typed-array.filter.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.filter'>;
+}
+declare module 'core-js/modules/es.typed-array.find-index.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.find-index'>;
+}
+declare module 'core-js/modules/es.typed-array.find.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.find'>;
+}
+declare module 'core-js/modules/es.typed-array.float32-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.float32-array'>;
+}
+declare module 'core-js/modules/es.typed-array.float64-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.float64-array'>;
+}
+declare module 'core-js/modules/es.typed-array.for-each.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.for-each'>;
+}
+declare module 'core-js/modules/es.typed-array.from.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.from'>;
+}
+declare module 'core-js/modules/es.typed-array.includes.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.includes'>;
+}
+declare module 'core-js/modules/es.typed-array.index-of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.index-of'>;
+}
+declare module 'core-js/modules/es.typed-array.int16-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.int16-array'>;
+}
+declare module 'core-js/modules/es.typed-array.int32-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.int32-array'>;
+}
+declare module 'core-js/modules/es.typed-array.int8-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.int8-array'>;
+}
+declare module 'core-js/modules/es.typed-array.iterator.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.iterator'>;
+}
+declare module 'core-js/modules/es.typed-array.join.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.join'>;
+}
+declare module 'core-js/modules/es.typed-array.last-index-of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.last-index-of'>;
+}
+declare module 'core-js/modules/es.typed-array.map.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.map'>;
+}
+declare module 'core-js/modules/es.typed-array.of.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.of'>;
+}
+declare module 'core-js/modules/es.typed-array.reduce-right.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.reduce-right'>;
+}
+declare module 'core-js/modules/es.typed-array.reduce.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.reduce'>;
+}
+declare module 'core-js/modules/es.typed-array.reverse.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.reverse'>;
+}
+declare module 'core-js/modules/es.typed-array.set.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.set'>;
+}
+declare module 'core-js/modules/es.typed-array.slice.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.slice'>;
+}
+declare module 'core-js/modules/es.typed-array.some.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.some'>;
+}
+declare module 'core-js/modules/es.typed-array.sort.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.sort'>;
+}
+declare module 'core-js/modules/es.typed-array.subarray.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.subarray'>;
+}
+declare module 'core-js/modules/es.typed-array.to-locale-string.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.to-locale-string'>;
+}
+declare module 'core-js/modules/es.typed-array.to-string.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.to-string'>;
+}
+declare module 'core-js/modules/es.typed-array.uint16-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.uint16-array'>;
+}
+declare module 'core-js/modules/es.typed-array.uint32-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.uint32-array'>;
+}
+declare module 'core-js/modules/es.typed-array.uint8-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.uint8-array'>;
+}
+declare module 'core-js/modules/es.typed-array.uint8-clamped-array.js' {
+ declare module.exports: $Exports<'core-js/modules/es.typed-array.uint8-clamped-array'>;
+}
+declare module 'core-js/modules/es.weak-map.js' {
+ declare module.exports: $Exports<'core-js/modules/es.weak-map'>;
+}
+declare module 'core-js/modules/es.weak-set.js' {
+ declare module.exports: $Exports<'core-js/modules/es.weak-set'>;
+}
+declare module 'core-js/modules/esnext.aggregate-error.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.aggregate-error'>;
+}
+declare module 'core-js/modules/esnext.array.is-template-object.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.array.is-template-object'>;
+}
+declare module 'core-js/modules/esnext.array.last-index.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.array.last-index'>;
+}
+declare module 'core-js/modules/esnext.array.last-item.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.array.last-item'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.as-indexed-pairs.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.as-indexed-pairs'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.constructor.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.constructor'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.drop.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.drop'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.every.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.every'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.filter.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.filter'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.find.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.find'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.flat-map.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.flat-map'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.for-each.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.for-each'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.from.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.from'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.map.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.map'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.reduce.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.reduce'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.some.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.some'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.take.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.take'>;
+}
+declare module 'core-js/modules/esnext.async-iterator.to-array.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.async-iterator.to-array'>;
+}
+declare module 'core-js/modules/esnext.composite-key.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.composite-key'>;
+}
+declare module 'core-js/modules/esnext.composite-symbol.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.composite-symbol'>;
+}
+declare module 'core-js/modules/esnext.global-this.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.global-this'>;
+}
+declare module 'core-js/modules/esnext.iterator.as-indexed-pairs.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.as-indexed-pairs'>;
+}
+declare module 'core-js/modules/esnext.iterator.constructor.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.constructor'>;
+}
+declare module 'core-js/modules/esnext.iterator.drop.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.drop'>;
+}
+declare module 'core-js/modules/esnext.iterator.every.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.every'>;
+}
+declare module 'core-js/modules/esnext.iterator.filter.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.filter'>;
+}
+declare module 'core-js/modules/esnext.iterator.find.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.find'>;
+}
+declare module 'core-js/modules/esnext.iterator.flat-map.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.flat-map'>;
+}
+declare module 'core-js/modules/esnext.iterator.for-each.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.for-each'>;
+}
+declare module 'core-js/modules/esnext.iterator.from.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.from'>;
+}
+declare module 'core-js/modules/esnext.iterator.map.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.map'>;
+}
+declare module 'core-js/modules/esnext.iterator.reduce.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.reduce'>;
+}
+declare module 'core-js/modules/esnext.iterator.some.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.some'>;
+}
+declare module 'core-js/modules/esnext.iterator.take.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.take'>;
+}
+declare module 'core-js/modules/esnext.iterator.to-array.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.iterator.to-array'>;
+}
+declare module 'core-js/modules/esnext.map.delete-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.delete-all'>;
+}
+declare module 'core-js/modules/esnext.map.every.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.every'>;
+}
+declare module 'core-js/modules/esnext.map.filter.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.filter'>;
+}
+declare module 'core-js/modules/esnext.map.find-key.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.find-key'>;
+}
+declare module 'core-js/modules/esnext.map.find.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.find'>;
+}
+declare module 'core-js/modules/esnext.map.from.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.from'>;
+}
+declare module 'core-js/modules/esnext.map.group-by.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.group-by'>;
+}
+declare module 'core-js/modules/esnext.map.includes.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.includes'>;
+}
+declare module 'core-js/modules/esnext.map.key-by.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.key-by'>;
+}
+declare module 'core-js/modules/esnext.map.key-of.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.key-of'>;
+}
+declare module 'core-js/modules/esnext.map.map-keys.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.map-keys'>;
+}
+declare module 'core-js/modules/esnext.map.map-values.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.map-values'>;
+}
+declare module 'core-js/modules/esnext.map.merge.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.merge'>;
+}
+declare module 'core-js/modules/esnext.map.of.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.of'>;
+}
+declare module 'core-js/modules/esnext.map.reduce.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.reduce'>;
+}
+declare module 'core-js/modules/esnext.map.some.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.some'>;
+}
+declare module 'core-js/modules/esnext.map.update-or-insert.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.update-or-insert'>;
+}
+declare module 'core-js/modules/esnext.map.update.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.update'>;
+}
+declare module 'core-js/modules/esnext.map.upsert.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.map.upsert'>;
+}
+declare module 'core-js/modules/esnext.math.clamp.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.clamp'>;
+}
+declare module 'core-js/modules/esnext.math.deg-per-rad.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.deg-per-rad'>;
+}
+declare module 'core-js/modules/esnext.math.degrees.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.degrees'>;
+}
+declare module 'core-js/modules/esnext.math.fscale.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.fscale'>;
+}
+declare module 'core-js/modules/esnext.math.iaddh.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.iaddh'>;
+}
+declare module 'core-js/modules/esnext.math.imulh.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.imulh'>;
+}
+declare module 'core-js/modules/esnext.math.isubh.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.isubh'>;
+}
+declare module 'core-js/modules/esnext.math.rad-per-deg.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.rad-per-deg'>;
+}
+declare module 'core-js/modules/esnext.math.radians.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.radians'>;
+}
+declare module 'core-js/modules/esnext.math.scale.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.scale'>;
+}
+declare module 'core-js/modules/esnext.math.seeded-prng.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.seeded-prng'>;
+}
+declare module 'core-js/modules/esnext.math.signbit.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.signbit'>;
+}
+declare module 'core-js/modules/esnext.math.umulh.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.math.umulh'>;
+}
+declare module 'core-js/modules/esnext.number.from-string.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.number.from-string'>;
+}
+declare module 'core-js/modules/esnext.object.iterate-entries.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.object.iterate-entries'>;
+}
+declare module 'core-js/modules/esnext.object.iterate-keys.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.object.iterate-keys'>;
+}
+declare module 'core-js/modules/esnext.object.iterate-values.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.object.iterate-values'>;
+}
+declare module 'core-js/modules/esnext.observable.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.observable'>;
+}
+declare module 'core-js/modules/esnext.promise.all-settled.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.promise.all-settled'>;
+}
+declare module 'core-js/modules/esnext.promise.any.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.promise.any'>;
+}
+declare module 'core-js/modules/esnext.promise.try.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.promise.try'>;
+}
+declare module 'core-js/modules/esnext.reflect.define-metadata.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.define-metadata'>;
+}
+declare module 'core-js/modules/esnext.reflect.delete-metadata.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.delete-metadata'>;
+}
+declare module 'core-js/modules/esnext.reflect.get-metadata-keys.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.get-metadata-keys'>;
+}
+declare module 'core-js/modules/esnext.reflect.get-metadata.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.get-metadata'>;
+}
+declare module 'core-js/modules/esnext.reflect.get-own-metadata-keys.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.get-own-metadata-keys'>;
+}
+declare module 'core-js/modules/esnext.reflect.get-own-metadata.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.get-own-metadata'>;
+}
+declare module 'core-js/modules/esnext.reflect.has-metadata.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.has-metadata'>;
+}
+declare module 'core-js/modules/esnext.reflect.has-own-metadata.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.has-own-metadata'>;
+}
+declare module 'core-js/modules/esnext.reflect.metadata.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.reflect.metadata'>;
+}
+declare module 'core-js/modules/esnext.set.add-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.add-all'>;
+}
+declare module 'core-js/modules/esnext.set.delete-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.delete-all'>;
+}
+declare module 'core-js/modules/esnext.set.difference.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.difference'>;
+}
+declare module 'core-js/modules/esnext.set.every.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.every'>;
+}
+declare module 'core-js/modules/esnext.set.filter.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.filter'>;
+}
+declare module 'core-js/modules/esnext.set.find.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.find'>;
+}
+declare module 'core-js/modules/esnext.set.from.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.from'>;
+}
+declare module 'core-js/modules/esnext.set.intersection.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.intersection'>;
+}
+declare module 'core-js/modules/esnext.set.is-disjoint-from.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.is-disjoint-from'>;
+}
+declare module 'core-js/modules/esnext.set.is-subset-of.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.is-subset-of'>;
+}
+declare module 'core-js/modules/esnext.set.is-superset-of.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.is-superset-of'>;
+}
+declare module 'core-js/modules/esnext.set.join.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.join'>;
+}
+declare module 'core-js/modules/esnext.set.map.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.map'>;
+}
+declare module 'core-js/modules/esnext.set.of.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.of'>;
+}
+declare module 'core-js/modules/esnext.set.reduce.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.reduce'>;
+}
+declare module 'core-js/modules/esnext.set.some.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.some'>;
+}
+declare module 'core-js/modules/esnext.set.symmetric-difference.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.symmetric-difference'>;
+}
+declare module 'core-js/modules/esnext.set.union.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.set.union'>;
+}
+declare module 'core-js/modules/esnext.string.at.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.string.at'>;
+}
+declare module 'core-js/modules/esnext.string.code-points.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.string.code-points'>;
+}
+declare module 'core-js/modules/esnext.string.match-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.string.match-all'>;
+}
+declare module 'core-js/modules/esnext.string.replace-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.string.replace-all'>;
+}
+declare module 'core-js/modules/esnext.symbol.async-dispose.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.symbol.async-dispose'>;
+}
+declare module 'core-js/modules/esnext.symbol.dispose.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.symbol.dispose'>;
+}
+declare module 'core-js/modules/esnext.symbol.observable.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.symbol.observable'>;
+}
+declare module 'core-js/modules/esnext.symbol.pattern-match.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.symbol.pattern-match'>;
+}
+declare module 'core-js/modules/esnext.symbol.replace-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.symbol.replace-all'>;
+}
+declare module 'core-js/modules/esnext.weak-map.delete-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.weak-map.delete-all'>;
+}
+declare module 'core-js/modules/esnext.weak-map.from.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.weak-map.from'>;
+}
+declare module 'core-js/modules/esnext.weak-map.of.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.weak-map.of'>;
+}
+declare module 'core-js/modules/esnext.weak-map.upsert.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.weak-map.upsert'>;
+}
+declare module 'core-js/modules/esnext.weak-set.add-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.weak-set.add-all'>;
+}
+declare module 'core-js/modules/esnext.weak-set.delete-all.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.weak-set.delete-all'>;
+}
+declare module 'core-js/modules/esnext.weak-set.from.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.weak-set.from'>;
+}
+declare module 'core-js/modules/esnext.weak-set.of.js' {
+ declare module.exports: $Exports<'core-js/modules/esnext.weak-set.of'>;
+}
+declare module 'core-js/modules/web.dom-collections.for-each.js' {
+ declare module.exports: $Exports<'core-js/modules/web.dom-collections.for-each'>;
+}
+declare module 'core-js/modules/web.dom-collections.iterator.js' {
+ declare module.exports: $Exports<'core-js/modules/web.dom-collections.iterator'>;
+}
+declare module 'core-js/modules/web.immediate.js' {
+ declare module.exports: $Exports<'core-js/modules/web.immediate'>;
+}
+declare module 'core-js/modules/web.queue-microtask.js' {
+ declare module.exports: $Exports<'core-js/modules/web.queue-microtask'>;
+}
+declare module 'core-js/modules/web.timers.js' {
+ declare module.exports: $Exports<'core-js/modules/web.timers'>;
+}
+declare module 'core-js/modules/web.url-search-params.js' {
+ declare module.exports: $Exports<'core-js/modules/web.url-search-params'>;
+}
+declare module 'core-js/modules/web.url.js' {
+ declare module.exports: $Exports<'core-js/modules/web.url'>;
+}
+declare module 'core-js/modules/web.url.to-json.js' {
+ declare module.exports: $Exports<'core-js/modules/web.url.to-json'>;
+}
+declare module 'core-js/postinstall.js' {
+ declare module.exports: $Exports<'core-js/postinstall'>;
+}
+declare module 'core-js/proposals/array-is-template-object.js' {
+ declare module.exports: $Exports<'core-js/proposals/array-is-template-object'>;
+}
+declare module 'core-js/proposals/array-last.js' {
+ declare module.exports: $Exports<'core-js/proposals/array-last'>;
+}
+declare module 'core-js/proposals/collection-methods.js' {
+ declare module.exports: $Exports<'core-js/proposals/collection-methods'>;
+}
+declare module 'core-js/proposals/collection-of-from.js' {
+ declare module.exports: $Exports<'core-js/proposals/collection-of-from'>;
+}
+declare module 'core-js/proposals/efficient-64-bit-arithmetic.js' {
+ declare module.exports: $Exports<'core-js/proposals/efficient-64-bit-arithmetic'>;
+}
+declare module 'core-js/proposals/global-this.js' {
+ declare module.exports: $Exports<'core-js/proposals/global-this'>;
+}
+declare module 'core-js/proposals/index' {
+ declare module.exports: $Exports<'core-js/proposals'>;
+}
+declare module 'core-js/proposals/index.js' {
+ declare module.exports: $Exports<'core-js/proposals'>;
+}
+declare module 'core-js/proposals/iterator-helpers.js' {
+ declare module.exports: $Exports<'core-js/proposals/iterator-helpers'>;
+}
+declare module 'core-js/proposals/keys-composition.js' {
+ declare module.exports: $Exports<'core-js/proposals/keys-composition'>;
+}
+declare module 'core-js/proposals/map-update-or-insert.js' {
+ declare module.exports: $Exports<'core-js/proposals/map-update-or-insert'>;
+}
+declare module 'core-js/proposals/map-upsert.js' {
+ declare module.exports: $Exports<'core-js/proposals/map-upsert'>;
+}
+declare module 'core-js/proposals/math-extensions.js' {
+ declare module.exports: $Exports<'core-js/proposals/math-extensions'>;
+}
+declare module 'core-js/proposals/math-signbit.js' {
+ declare module.exports: $Exports<'core-js/proposals/math-signbit'>;
+}
+declare module 'core-js/proposals/number-from-string.js' {
+ declare module.exports: $Exports<'core-js/proposals/number-from-string'>;
+}
+declare module 'core-js/proposals/object-iteration.js' {
+ declare module.exports: $Exports<'core-js/proposals/object-iteration'>;
+}
+declare module 'core-js/proposals/observable.js' {
+ declare module.exports: $Exports<'core-js/proposals/observable'>;
+}
+declare module 'core-js/proposals/pattern-matching.js' {
+ declare module.exports: $Exports<'core-js/proposals/pattern-matching'>;
+}
+declare module 'core-js/proposals/promise-all-settled.js' {
+ declare module.exports: $Exports<'core-js/proposals/promise-all-settled'>;
+}
+declare module 'core-js/proposals/promise-any.js' {
+ declare module.exports: $Exports<'core-js/proposals/promise-any'>;
+}
+declare module 'core-js/proposals/promise-try.js' {
+ declare module.exports: $Exports<'core-js/proposals/promise-try'>;
+}
+declare module 'core-js/proposals/reflect-metadata.js' {
+ declare module.exports: $Exports<'core-js/proposals/reflect-metadata'>;
+}
+declare module 'core-js/proposals/seeded-random.js' {
+ declare module.exports: $Exports<'core-js/proposals/seeded-random'>;
+}
+declare module 'core-js/proposals/set-methods.js' {
+ declare module.exports: $Exports<'core-js/proposals/set-methods'>;
+}
+declare module 'core-js/proposals/string-at.js' {
+ declare module.exports: $Exports<'core-js/proposals/string-at'>;
+}
+declare module 'core-js/proposals/string-code-points.js' {
+ declare module.exports: $Exports<'core-js/proposals/string-code-points'>;
+}
+declare module 'core-js/proposals/string-match-all.js' {
+ declare module.exports: $Exports<'core-js/proposals/string-match-all'>;
+}
+declare module 'core-js/proposals/string-replace-all.js' {
+ declare module.exports: $Exports<'core-js/proposals/string-replace-all'>;
+}
+declare module 'core-js/proposals/url.js' {
+ declare module.exports: $Exports<'core-js/proposals/url'>;
+}
+declare module 'core-js/proposals/using-statement.js' {
+ declare module.exports: $Exports<'core-js/proposals/using-statement'>;
+}
+declare module 'core-js/stable/array-buffer/constructor.js' {
+ declare module.exports: $Exports<'core-js/stable/array-buffer/constructor'>;
+}
+declare module 'core-js/stable/array-buffer/index' {
+ declare module.exports: $Exports<'core-js/stable/array-buffer'>;
+}
+declare module 'core-js/stable/array-buffer/index.js' {
+ declare module.exports: $Exports<'core-js/stable/array-buffer'>;
+}
+declare module 'core-js/stable/array-buffer/is-view.js' {
+ declare module.exports: $Exports<'core-js/stable/array-buffer/is-view'>;
+}
+declare module 'core-js/stable/array-buffer/slice.js' {
+ declare module.exports: $Exports<'core-js/stable/array-buffer/slice'>;
+}
+declare module 'core-js/stable/array/concat.js' {
+ declare module.exports: $Exports<'core-js/stable/array/concat'>;
+}
+declare module 'core-js/stable/array/copy-within.js' {
+ declare module.exports: $Exports<'core-js/stable/array/copy-within'>;
+}
+declare module 'core-js/stable/array/entries.js' {
+ declare module.exports: $Exports<'core-js/stable/array/entries'>;
+}
+declare module 'core-js/stable/array/every.js' {
+ declare module.exports: $Exports<'core-js/stable/array/every'>;
+}
+declare module 'core-js/stable/array/fill.js' {
+ declare module.exports: $Exports<'core-js/stable/array/fill'>;
+}
+declare module 'core-js/stable/array/filter.js' {
+ declare module.exports: $Exports<'core-js/stable/array/filter'>;
+}
+declare module 'core-js/stable/array/find-index.js' {
+ declare module.exports: $Exports<'core-js/stable/array/find-index'>;
+}
+declare module 'core-js/stable/array/find.js' {
+ declare module.exports: $Exports<'core-js/stable/array/find'>;
+}
+declare module 'core-js/stable/array/flat-map.js' {
+ declare module.exports: $Exports<'core-js/stable/array/flat-map'>;
+}
+declare module 'core-js/stable/array/flat.js' {
+ declare module.exports: $Exports<'core-js/stable/array/flat'>;
+}
+declare module 'core-js/stable/array/for-each.js' {
+ declare module.exports: $Exports<'core-js/stable/array/for-each'>;
+}
+declare module 'core-js/stable/array/from.js' {
+ declare module.exports: $Exports<'core-js/stable/array/from'>;
+}
+declare module 'core-js/stable/array/includes.js' {
+ declare module.exports: $Exports<'core-js/stable/array/includes'>;
+}
+declare module 'core-js/stable/array/index-of.js' {
+ declare module.exports: $Exports<'core-js/stable/array/index-of'>;
+}
+declare module 'core-js/stable/array/index' {
+ declare module.exports: $Exports<'core-js/stable/array'>;
+}
+declare module 'core-js/stable/array/index.js' {
+ declare module.exports: $Exports<'core-js/stable/array'>;
+}
+declare module 'core-js/stable/array/is-array.js' {
+ declare module.exports: $Exports<'core-js/stable/array/is-array'>;
+}
+declare module 'core-js/stable/array/iterator.js' {
+ declare module.exports: $Exports<'core-js/stable/array/iterator'>;
+}
+declare module 'core-js/stable/array/join.js' {
+ declare module.exports: $Exports<'core-js/stable/array/join'>;
+}
+declare module 'core-js/stable/array/keys.js' {
+ declare module.exports: $Exports<'core-js/stable/array/keys'>;
+}
+declare module 'core-js/stable/array/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/stable/array/last-index-of'>;
+}
+declare module 'core-js/stable/array/map.js' {
+ declare module.exports: $Exports<'core-js/stable/array/map'>;
+}
+declare module 'core-js/stable/array/of.js' {
+ declare module.exports: $Exports<'core-js/stable/array/of'>;
+}
+declare module 'core-js/stable/array/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/stable/array/reduce-right'>;
+}
+declare module 'core-js/stable/array/reduce.js' {
+ declare module.exports: $Exports<'core-js/stable/array/reduce'>;
+}
+declare module 'core-js/stable/array/reverse.js' {
+ declare module.exports: $Exports<'core-js/stable/array/reverse'>;
+}
+declare module 'core-js/stable/array/slice.js' {
+ declare module.exports: $Exports<'core-js/stable/array/slice'>;
+}
+declare module 'core-js/stable/array/some.js' {
+ declare module.exports: $Exports<'core-js/stable/array/some'>;
+}
+declare module 'core-js/stable/array/sort.js' {
+ declare module.exports: $Exports<'core-js/stable/array/sort'>;
+}
+declare module 'core-js/stable/array/splice.js' {
+ declare module.exports: $Exports<'core-js/stable/array/splice'>;
+}
+declare module 'core-js/stable/array/values.js' {
+ declare module.exports: $Exports<'core-js/stable/array/values'>;
+}
+declare module 'core-js/stable/array/virtual/concat.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/concat'>;
+}
+declare module 'core-js/stable/array/virtual/copy-within.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/copy-within'>;
+}
+declare module 'core-js/stable/array/virtual/entries.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/entries'>;
+}
+declare module 'core-js/stable/array/virtual/every.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/every'>;
+}
+declare module 'core-js/stable/array/virtual/fill.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/fill'>;
+}
+declare module 'core-js/stable/array/virtual/filter.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/filter'>;
+}
+declare module 'core-js/stable/array/virtual/find-index.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/find-index'>;
+}
+declare module 'core-js/stable/array/virtual/find.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/find'>;
+}
+declare module 'core-js/stable/array/virtual/flat-map.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/flat-map'>;
+}
+declare module 'core-js/stable/array/virtual/flat.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/flat'>;
+}
+declare module 'core-js/stable/array/virtual/for-each.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/for-each'>;
+}
+declare module 'core-js/stable/array/virtual/includes.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/includes'>;
+}
+declare module 'core-js/stable/array/virtual/index-of.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/index-of'>;
+}
+declare module 'core-js/stable/array/virtual/index' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual'>;
+}
+declare module 'core-js/stable/array/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual'>;
+}
+declare module 'core-js/stable/array/virtual/iterator.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/iterator'>;
+}
+declare module 'core-js/stable/array/virtual/join.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/join'>;
+}
+declare module 'core-js/stable/array/virtual/keys.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/keys'>;
+}
+declare module 'core-js/stable/array/virtual/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/last-index-of'>;
+}
+declare module 'core-js/stable/array/virtual/map.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/map'>;
+}
+declare module 'core-js/stable/array/virtual/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/reduce-right'>;
+}
+declare module 'core-js/stable/array/virtual/reduce.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/reduce'>;
+}
+declare module 'core-js/stable/array/virtual/reverse.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/reverse'>;
+}
+declare module 'core-js/stable/array/virtual/slice.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/slice'>;
+}
+declare module 'core-js/stable/array/virtual/some.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/some'>;
+}
+declare module 'core-js/stable/array/virtual/sort.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/sort'>;
+}
+declare module 'core-js/stable/array/virtual/splice.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/splice'>;
+}
+declare module 'core-js/stable/array/virtual/values.js' {
+ declare module.exports: $Exports<'core-js/stable/array/virtual/values'>;
+}
+declare module 'core-js/stable/clear-immediate.js' {
+ declare module.exports: $Exports<'core-js/stable/clear-immediate'>;
+}
+declare module 'core-js/stable/data-view/index' {
+ declare module.exports: $Exports<'core-js/stable/data-view'>;
+}
+declare module 'core-js/stable/data-view/index.js' {
+ declare module.exports: $Exports<'core-js/stable/data-view'>;
+}
+declare module 'core-js/stable/date/index' {
+ declare module.exports: $Exports<'core-js/stable/date'>;
+}
+declare module 'core-js/stable/date/index.js' {
+ declare module.exports: $Exports<'core-js/stable/date'>;
+}
+declare module 'core-js/stable/date/now.js' {
+ declare module.exports: $Exports<'core-js/stable/date/now'>;
+}
+declare module 'core-js/stable/date/to-iso-string.js' {
+ declare module.exports: $Exports<'core-js/stable/date/to-iso-string'>;
+}
+declare module 'core-js/stable/date/to-json.js' {
+ declare module.exports: $Exports<'core-js/stable/date/to-json'>;
+}
+declare module 'core-js/stable/date/to-primitive.js' {
+ declare module.exports: $Exports<'core-js/stable/date/to-primitive'>;
+}
+declare module 'core-js/stable/date/to-string.js' {
+ declare module.exports: $Exports<'core-js/stable/date/to-string'>;
+}
+declare module 'core-js/stable/dom-collections/for-each.js' {
+ declare module.exports: $Exports<'core-js/stable/dom-collections/for-each'>;
+}
+declare module 'core-js/stable/dom-collections/index' {
+ declare module.exports: $Exports<'core-js/stable/dom-collections'>;
+}
+declare module 'core-js/stable/dom-collections/index.js' {
+ declare module.exports: $Exports<'core-js/stable/dom-collections'>;
+}
+declare module 'core-js/stable/dom-collections/iterator.js' {
+ declare module.exports: $Exports<'core-js/stable/dom-collections/iterator'>;
+}
+declare module 'core-js/stable/function/bind.js' {
+ declare module.exports: $Exports<'core-js/stable/function/bind'>;
+}
+declare module 'core-js/stable/function/has-instance.js' {
+ declare module.exports: $Exports<'core-js/stable/function/has-instance'>;
+}
+declare module 'core-js/stable/function/index' {
+ declare module.exports: $Exports<'core-js/stable/function'>;
+}
+declare module 'core-js/stable/function/index.js' {
+ declare module.exports: $Exports<'core-js/stable/function'>;
+}
+declare module 'core-js/stable/function/name.js' {
+ declare module.exports: $Exports<'core-js/stable/function/name'>;
+}
+declare module 'core-js/stable/function/virtual/bind.js' {
+ declare module.exports: $Exports<'core-js/stable/function/virtual/bind'>;
+}
+declare module 'core-js/stable/function/virtual/index' {
+ declare module.exports: $Exports<'core-js/stable/function/virtual'>;
+}
+declare module 'core-js/stable/function/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/stable/function/virtual'>;
+}
+declare module 'core-js/stable/global-this.js' {
+ declare module.exports: $Exports<'core-js/stable/global-this'>;
+}
+declare module 'core-js/stable/index' {
+ declare module.exports: $Exports<'core-js/stable'>;
+}
+declare module 'core-js/stable/index.js' {
+ declare module.exports: $Exports<'core-js/stable'>;
+}
+declare module 'core-js/stable/instance/bind.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/bind'>;
+}
+declare module 'core-js/stable/instance/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/code-point-at'>;
+}
+declare module 'core-js/stable/instance/concat.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/concat'>;
+}
+declare module 'core-js/stable/instance/copy-within.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/copy-within'>;
+}
+declare module 'core-js/stable/instance/ends-with.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/ends-with'>;
+}
+declare module 'core-js/stable/instance/entries.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/entries'>;
+}
+declare module 'core-js/stable/instance/every.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/every'>;
+}
+declare module 'core-js/stable/instance/fill.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/fill'>;
+}
+declare module 'core-js/stable/instance/filter.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/filter'>;
+}
+declare module 'core-js/stable/instance/find-index.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/find-index'>;
+}
+declare module 'core-js/stable/instance/find.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/find'>;
+}
+declare module 'core-js/stable/instance/flags.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/flags'>;
+}
+declare module 'core-js/stable/instance/flat-map.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/flat-map'>;
+}
+declare module 'core-js/stable/instance/flat.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/flat'>;
+}
+declare module 'core-js/stable/instance/for-each.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/for-each'>;
+}
+declare module 'core-js/stable/instance/includes.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/includes'>;
+}
+declare module 'core-js/stable/instance/index-of.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/index-of'>;
+}
+declare module 'core-js/stable/instance/keys.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/keys'>;
+}
+declare module 'core-js/stable/instance/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/last-index-of'>;
+}
+declare module 'core-js/stable/instance/map.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/map'>;
+}
+declare module 'core-js/stable/instance/match-all.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/match-all'>;
+}
+declare module 'core-js/stable/instance/pad-end.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/pad-end'>;
+}
+declare module 'core-js/stable/instance/pad-start.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/pad-start'>;
+}
+declare module 'core-js/stable/instance/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/reduce-right'>;
+}
+declare module 'core-js/stable/instance/reduce.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/reduce'>;
+}
+declare module 'core-js/stable/instance/repeat.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/repeat'>;
+}
+declare module 'core-js/stable/instance/reverse.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/reverse'>;
+}
+declare module 'core-js/stable/instance/slice.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/slice'>;
+}
+declare module 'core-js/stable/instance/some.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/some'>;
+}
+declare module 'core-js/stable/instance/sort.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/sort'>;
+}
+declare module 'core-js/stable/instance/splice.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/splice'>;
+}
+declare module 'core-js/stable/instance/starts-with.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/starts-with'>;
+}
+declare module 'core-js/stable/instance/trim-end.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/trim-end'>;
+}
+declare module 'core-js/stable/instance/trim-left.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/trim-left'>;
+}
+declare module 'core-js/stable/instance/trim-right.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/trim-right'>;
+}
+declare module 'core-js/stable/instance/trim-start.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/trim-start'>;
+}
+declare module 'core-js/stable/instance/trim.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/trim'>;
+}
+declare module 'core-js/stable/instance/values.js' {
+ declare module.exports: $Exports<'core-js/stable/instance/values'>;
+}
+declare module 'core-js/stable/json/index' {
+ declare module.exports: $Exports<'core-js/stable/json'>;
+}
+declare module 'core-js/stable/json/index.js' {
+ declare module.exports: $Exports<'core-js/stable/json'>;
+}
+declare module 'core-js/stable/json/stringify.js' {
+ declare module.exports: $Exports<'core-js/stable/json/stringify'>;
+}
+declare module 'core-js/stable/json/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/stable/json/to-string-tag'>;
+}
+declare module 'core-js/stable/map/index' {
+ declare module.exports: $Exports<'core-js/stable/map'>;
+}
+declare module 'core-js/stable/map/index.js' {
+ declare module.exports: $Exports<'core-js/stable/map'>;
+}
+declare module 'core-js/stable/math/acosh.js' {
+ declare module.exports: $Exports<'core-js/stable/math/acosh'>;
+}
+declare module 'core-js/stable/math/asinh.js' {
+ declare module.exports: $Exports<'core-js/stable/math/asinh'>;
+}
+declare module 'core-js/stable/math/atanh.js' {
+ declare module.exports: $Exports<'core-js/stable/math/atanh'>;
+}
+declare module 'core-js/stable/math/cbrt.js' {
+ declare module.exports: $Exports<'core-js/stable/math/cbrt'>;
+}
+declare module 'core-js/stable/math/clz32.js' {
+ declare module.exports: $Exports<'core-js/stable/math/clz32'>;
+}
+declare module 'core-js/stable/math/cosh.js' {
+ declare module.exports: $Exports<'core-js/stable/math/cosh'>;
+}
+declare module 'core-js/stable/math/expm1.js' {
+ declare module.exports: $Exports<'core-js/stable/math/expm1'>;
+}
+declare module 'core-js/stable/math/fround.js' {
+ declare module.exports: $Exports<'core-js/stable/math/fround'>;
+}
+declare module 'core-js/stable/math/hypot.js' {
+ declare module.exports: $Exports<'core-js/stable/math/hypot'>;
+}
+declare module 'core-js/stable/math/imul.js' {
+ declare module.exports: $Exports<'core-js/stable/math/imul'>;
+}
+declare module 'core-js/stable/math/index' {
+ declare module.exports: $Exports<'core-js/stable/math'>;
+}
+declare module 'core-js/stable/math/index.js' {
+ declare module.exports: $Exports<'core-js/stable/math'>;
+}
+declare module 'core-js/stable/math/log10.js' {
+ declare module.exports: $Exports<'core-js/stable/math/log10'>;
+}
+declare module 'core-js/stable/math/log1p.js' {
+ declare module.exports: $Exports<'core-js/stable/math/log1p'>;
+}
+declare module 'core-js/stable/math/log2.js' {
+ declare module.exports: $Exports<'core-js/stable/math/log2'>;
+}
+declare module 'core-js/stable/math/sign.js' {
+ declare module.exports: $Exports<'core-js/stable/math/sign'>;
+}
+declare module 'core-js/stable/math/sinh.js' {
+ declare module.exports: $Exports<'core-js/stable/math/sinh'>;
+}
+declare module 'core-js/stable/math/tanh.js' {
+ declare module.exports: $Exports<'core-js/stable/math/tanh'>;
+}
+declare module 'core-js/stable/math/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/stable/math/to-string-tag'>;
+}
+declare module 'core-js/stable/math/trunc.js' {
+ declare module.exports: $Exports<'core-js/stable/math/trunc'>;
+}
+declare module 'core-js/stable/number/constructor.js' {
+ declare module.exports: $Exports<'core-js/stable/number/constructor'>;
+}
+declare module 'core-js/stable/number/epsilon.js' {
+ declare module.exports: $Exports<'core-js/stable/number/epsilon'>;
+}
+declare module 'core-js/stable/number/index' {
+ declare module.exports: $Exports<'core-js/stable/number'>;
+}
+declare module 'core-js/stable/number/index.js' {
+ declare module.exports: $Exports<'core-js/stable/number'>;
+}
+declare module 'core-js/stable/number/is-finite.js' {
+ declare module.exports: $Exports<'core-js/stable/number/is-finite'>;
+}
+declare module 'core-js/stable/number/is-integer.js' {
+ declare module.exports: $Exports<'core-js/stable/number/is-integer'>;
+}
+declare module 'core-js/stable/number/is-nan.js' {
+ declare module.exports: $Exports<'core-js/stable/number/is-nan'>;
+}
+declare module 'core-js/stable/number/is-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/stable/number/is-safe-integer'>;
+}
+declare module 'core-js/stable/number/max-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/stable/number/max-safe-integer'>;
+}
+declare module 'core-js/stable/number/min-safe-integer.js' {
+ declare module.exports: $Exports<'core-js/stable/number/min-safe-integer'>;
+}
+declare module 'core-js/stable/number/parse-float.js' {
+ declare module.exports: $Exports<'core-js/stable/number/parse-float'>;
+}
+declare module 'core-js/stable/number/parse-int.js' {
+ declare module.exports: $Exports<'core-js/stable/number/parse-int'>;
+}
+declare module 'core-js/stable/number/to-fixed.js' {
+ declare module.exports: $Exports<'core-js/stable/number/to-fixed'>;
+}
+declare module 'core-js/stable/number/to-precision.js' {
+ declare module.exports: $Exports<'core-js/stable/number/to-precision'>;
+}
+declare module 'core-js/stable/number/virtual/index' {
+ declare module.exports: $Exports<'core-js/stable/number/virtual'>;
+}
+declare module 'core-js/stable/number/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/stable/number/virtual'>;
+}
+declare module 'core-js/stable/number/virtual/to-fixed.js' {
+ declare module.exports: $Exports<'core-js/stable/number/virtual/to-fixed'>;
+}
+declare module 'core-js/stable/number/virtual/to-precision.js' {
+ declare module.exports: $Exports<'core-js/stable/number/virtual/to-precision'>;
+}
+declare module 'core-js/stable/object/assign.js' {
+ declare module.exports: $Exports<'core-js/stable/object/assign'>;
+}
+declare module 'core-js/stable/object/create.js' {
+ declare module.exports: $Exports<'core-js/stable/object/create'>;
+}
+declare module 'core-js/stable/object/define-getter.js' {
+ declare module.exports: $Exports<'core-js/stable/object/define-getter'>;
+}
+declare module 'core-js/stable/object/define-properties.js' {
+ declare module.exports: $Exports<'core-js/stable/object/define-properties'>;
+}
+declare module 'core-js/stable/object/define-property.js' {
+ declare module.exports: $Exports<'core-js/stable/object/define-property'>;
+}
+declare module 'core-js/stable/object/define-setter.js' {
+ declare module.exports: $Exports<'core-js/stable/object/define-setter'>;
+}
+declare module 'core-js/stable/object/entries.js' {
+ declare module.exports: $Exports<'core-js/stable/object/entries'>;
+}
+declare module 'core-js/stable/object/freeze.js' {
+ declare module.exports: $Exports<'core-js/stable/object/freeze'>;
+}
+declare module 'core-js/stable/object/from-entries.js' {
+ declare module.exports: $Exports<'core-js/stable/object/from-entries'>;
+}
+declare module 'core-js/stable/object/get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/stable/object/get-own-property-descriptor'>;
+}
+declare module 'core-js/stable/object/get-own-property-descriptors.js' {
+ declare module.exports: $Exports<'core-js/stable/object/get-own-property-descriptors'>;
+}
+declare module 'core-js/stable/object/get-own-property-names.js' {
+ declare module.exports: $Exports<'core-js/stable/object/get-own-property-names'>;
+}
+declare module 'core-js/stable/object/get-own-property-symbols.js' {
+ declare module.exports: $Exports<'core-js/stable/object/get-own-property-symbols'>;
+}
+declare module 'core-js/stable/object/get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/stable/object/get-prototype-of'>;
+}
+declare module 'core-js/stable/object/index' {
+ declare module.exports: $Exports<'core-js/stable/object'>;
+}
+declare module 'core-js/stable/object/index.js' {
+ declare module.exports: $Exports<'core-js/stable/object'>;
+}
+declare module 'core-js/stable/object/is-extensible.js' {
+ declare module.exports: $Exports<'core-js/stable/object/is-extensible'>;
+}
+declare module 'core-js/stable/object/is-frozen.js' {
+ declare module.exports: $Exports<'core-js/stable/object/is-frozen'>;
+}
+declare module 'core-js/stable/object/is-sealed.js' {
+ declare module.exports: $Exports<'core-js/stable/object/is-sealed'>;
+}
+declare module 'core-js/stable/object/is.js' {
+ declare module.exports: $Exports<'core-js/stable/object/is'>;
+}
+declare module 'core-js/stable/object/keys.js' {
+ declare module.exports: $Exports<'core-js/stable/object/keys'>;
+}
+declare module 'core-js/stable/object/lookup-getter.js' {
+ declare module.exports: $Exports<'core-js/stable/object/lookup-getter'>;
+}
+declare module 'core-js/stable/object/lookup-setter.js' {
+ declare module.exports: $Exports<'core-js/stable/object/lookup-setter'>;
+}
+declare module 'core-js/stable/object/prevent-extensions.js' {
+ declare module.exports: $Exports<'core-js/stable/object/prevent-extensions'>;
+}
+declare module 'core-js/stable/object/seal.js' {
+ declare module.exports: $Exports<'core-js/stable/object/seal'>;
+}
+declare module 'core-js/stable/object/set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/stable/object/set-prototype-of'>;
+}
+declare module 'core-js/stable/object/to-string.js' {
+ declare module.exports: $Exports<'core-js/stable/object/to-string'>;
+}
+declare module 'core-js/stable/object/values.js' {
+ declare module.exports: $Exports<'core-js/stable/object/values'>;
+}
+declare module 'core-js/stable/parse-float.js' {
+ declare module.exports: $Exports<'core-js/stable/parse-float'>;
+}
+declare module 'core-js/stable/parse-int.js' {
+ declare module.exports: $Exports<'core-js/stable/parse-int'>;
+}
+declare module 'core-js/stable/promise/all-settled.js' {
+ declare module.exports: $Exports<'core-js/stable/promise/all-settled'>;
+}
+declare module 'core-js/stable/promise/finally.js' {
+ declare module.exports: $Exports<'core-js/stable/promise/finally'>;
+}
+declare module 'core-js/stable/promise/index' {
+ declare module.exports: $Exports<'core-js/stable/promise'>;
+}
+declare module 'core-js/stable/promise/index.js' {
+ declare module.exports: $Exports<'core-js/stable/promise'>;
+}
+declare module 'core-js/stable/queue-microtask.js' {
+ declare module.exports: $Exports<'core-js/stable/queue-microtask'>;
+}
+declare module 'core-js/stable/reflect/apply.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/apply'>;
+}
+declare module 'core-js/stable/reflect/construct.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/construct'>;
+}
+declare module 'core-js/stable/reflect/define-property.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/define-property'>;
+}
+declare module 'core-js/stable/reflect/delete-property.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/delete-property'>;
+}
+declare module 'core-js/stable/reflect/get-own-property-descriptor.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/get-own-property-descriptor'>;
+}
+declare module 'core-js/stable/reflect/get-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/get-prototype-of'>;
+}
+declare module 'core-js/stable/reflect/get.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/get'>;
+}
+declare module 'core-js/stable/reflect/has.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/has'>;
+}
+declare module 'core-js/stable/reflect/index' {
+ declare module.exports: $Exports<'core-js/stable/reflect'>;
+}
+declare module 'core-js/stable/reflect/index.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect'>;
+}
+declare module 'core-js/stable/reflect/is-extensible.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/is-extensible'>;
+}
+declare module 'core-js/stable/reflect/own-keys.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/own-keys'>;
+}
+declare module 'core-js/stable/reflect/prevent-extensions.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/prevent-extensions'>;
+}
+declare module 'core-js/stable/reflect/set-prototype-of.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/set-prototype-of'>;
+}
+declare module 'core-js/stable/reflect/set.js' {
+ declare module.exports: $Exports<'core-js/stable/reflect/set'>;
+}
+declare module 'core-js/stable/regexp/constructor.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/constructor'>;
+}
+declare module 'core-js/stable/regexp/flags.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/flags'>;
+}
+declare module 'core-js/stable/regexp/index' {
+ declare module.exports: $Exports<'core-js/stable/regexp'>;
+}
+declare module 'core-js/stable/regexp/index.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp'>;
+}
+declare module 'core-js/stable/regexp/match.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/match'>;
+}
+declare module 'core-js/stable/regexp/replace.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/replace'>;
+}
+declare module 'core-js/stable/regexp/search.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/search'>;
+}
+declare module 'core-js/stable/regexp/split.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/split'>;
+}
+declare module 'core-js/stable/regexp/sticky.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/sticky'>;
+}
+declare module 'core-js/stable/regexp/test.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/test'>;
+}
+declare module 'core-js/stable/regexp/to-string.js' {
+ declare module.exports: $Exports<'core-js/stable/regexp/to-string'>;
+}
+declare module 'core-js/stable/set-immediate.js' {
+ declare module.exports: $Exports<'core-js/stable/set-immediate'>;
+}
+declare module 'core-js/stable/set-interval.js' {
+ declare module.exports: $Exports<'core-js/stable/set-interval'>;
+}
+declare module 'core-js/stable/set-timeout.js' {
+ declare module.exports: $Exports<'core-js/stable/set-timeout'>;
+}
+declare module 'core-js/stable/set/index' {
+ declare module.exports: $Exports<'core-js/stable/set'>;
+}
+declare module 'core-js/stable/set/index.js' {
+ declare module.exports: $Exports<'core-js/stable/set'>;
+}
+declare module 'core-js/stable/string/anchor.js' {
+ declare module.exports: $Exports<'core-js/stable/string/anchor'>;
+}
+declare module 'core-js/stable/string/big.js' {
+ declare module.exports: $Exports<'core-js/stable/string/big'>;
+}
+declare module 'core-js/stable/string/blink.js' {
+ declare module.exports: $Exports<'core-js/stable/string/blink'>;
+}
+declare module 'core-js/stable/string/bold.js' {
+ declare module.exports: $Exports<'core-js/stable/string/bold'>;
+}
+declare module 'core-js/stable/string/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/stable/string/code-point-at'>;
+}
+declare module 'core-js/stable/string/ends-with.js' {
+ declare module.exports: $Exports<'core-js/stable/string/ends-with'>;
+}
+declare module 'core-js/stable/string/fixed.js' {
+ declare module.exports: $Exports<'core-js/stable/string/fixed'>;
+}
+declare module 'core-js/stable/string/fontcolor.js' {
+ declare module.exports: $Exports<'core-js/stable/string/fontcolor'>;
+}
+declare module 'core-js/stable/string/fontsize.js' {
+ declare module.exports: $Exports<'core-js/stable/string/fontsize'>;
+}
+declare module 'core-js/stable/string/from-code-point.js' {
+ declare module.exports: $Exports<'core-js/stable/string/from-code-point'>;
+}
+declare module 'core-js/stable/string/includes.js' {
+ declare module.exports: $Exports<'core-js/stable/string/includes'>;
+}
+declare module 'core-js/stable/string/index' {
+ declare module.exports: $Exports<'core-js/stable/string'>;
+}
+declare module 'core-js/stable/string/index.js' {
+ declare module.exports: $Exports<'core-js/stable/string'>;
+}
+declare module 'core-js/stable/string/italics.js' {
+ declare module.exports: $Exports<'core-js/stable/string/italics'>;
+}
+declare module 'core-js/stable/string/iterator.js' {
+ declare module.exports: $Exports<'core-js/stable/string/iterator'>;
+}
+declare module 'core-js/stable/string/link.js' {
+ declare module.exports: $Exports<'core-js/stable/string/link'>;
+}
+declare module 'core-js/stable/string/match-all.js' {
+ declare module.exports: $Exports<'core-js/stable/string/match-all'>;
+}
+declare module 'core-js/stable/string/match.js' {
+ declare module.exports: $Exports<'core-js/stable/string/match'>;
+}
+declare module 'core-js/stable/string/pad-end.js' {
+ declare module.exports: $Exports<'core-js/stable/string/pad-end'>;
+}
+declare module 'core-js/stable/string/pad-start.js' {
+ declare module.exports: $Exports<'core-js/stable/string/pad-start'>;
+}
+declare module 'core-js/stable/string/raw.js' {
+ declare module.exports: $Exports<'core-js/stable/string/raw'>;
+}
+declare module 'core-js/stable/string/repeat.js' {
+ declare module.exports: $Exports<'core-js/stable/string/repeat'>;
+}
+declare module 'core-js/stable/string/replace.js' {
+ declare module.exports: $Exports<'core-js/stable/string/replace'>;
+}
+declare module 'core-js/stable/string/search.js' {
+ declare module.exports: $Exports<'core-js/stable/string/search'>;
+}
+declare module 'core-js/stable/string/small.js' {
+ declare module.exports: $Exports<'core-js/stable/string/small'>;
+}
+declare module 'core-js/stable/string/split.js' {
+ declare module.exports: $Exports<'core-js/stable/string/split'>;
+}
+declare module 'core-js/stable/string/starts-with.js' {
+ declare module.exports: $Exports<'core-js/stable/string/starts-with'>;
+}
+declare module 'core-js/stable/string/strike.js' {
+ declare module.exports: $Exports<'core-js/stable/string/strike'>;
+}
+declare module 'core-js/stable/string/sub.js' {
+ declare module.exports: $Exports<'core-js/stable/string/sub'>;
+}
+declare module 'core-js/stable/string/sup.js' {
+ declare module.exports: $Exports<'core-js/stable/string/sup'>;
+}
+declare module 'core-js/stable/string/trim-end.js' {
+ declare module.exports: $Exports<'core-js/stable/string/trim-end'>;
+}
+declare module 'core-js/stable/string/trim-left.js' {
+ declare module.exports: $Exports<'core-js/stable/string/trim-left'>;
+}
+declare module 'core-js/stable/string/trim-right.js' {
+ declare module.exports: $Exports<'core-js/stable/string/trim-right'>;
+}
+declare module 'core-js/stable/string/trim-start.js' {
+ declare module.exports: $Exports<'core-js/stable/string/trim-start'>;
+}
+declare module 'core-js/stable/string/trim.js' {
+ declare module.exports: $Exports<'core-js/stable/string/trim'>;
+}
+declare module 'core-js/stable/string/virtual/anchor.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/anchor'>;
+}
+declare module 'core-js/stable/string/virtual/big.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/big'>;
+}
+declare module 'core-js/stable/string/virtual/blink.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/blink'>;
+}
+declare module 'core-js/stable/string/virtual/bold.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/bold'>;
+}
+declare module 'core-js/stable/string/virtual/code-point-at.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/code-point-at'>;
+}
+declare module 'core-js/stable/string/virtual/ends-with.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/ends-with'>;
+}
+declare module 'core-js/stable/string/virtual/fixed.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/fixed'>;
+}
+declare module 'core-js/stable/string/virtual/fontcolor.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/fontcolor'>;
+}
+declare module 'core-js/stable/string/virtual/fontsize.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/fontsize'>;
+}
+declare module 'core-js/stable/string/virtual/includes.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/includes'>;
+}
+declare module 'core-js/stable/string/virtual/index' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual'>;
+}
+declare module 'core-js/stable/string/virtual/index.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual'>;
+}
+declare module 'core-js/stable/string/virtual/italics.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/italics'>;
+}
+declare module 'core-js/stable/string/virtual/iterator.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/iterator'>;
+}
+declare module 'core-js/stable/string/virtual/link.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/link'>;
+}
+declare module 'core-js/stable/string/virtual/match-all.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/match-all'>;
+}
+declare module 'core-js/stable/string/virtual/pad-end.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/pad-end'>;
+}
+declare module 'core-js/stable/string/virtual/pad-start.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/pad-start'>;
+}
+declare module 'core-js/stable/string/virtual/repeat.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/repeat'>;
+}
+declare module 'core-js/stable/string/virtual/small.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/small'>;
+}
+declare module 'core-js/stable/string/virtual/starts-with.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/starts-with'>;
+}
+declare module 'core-js/stable/string/virtual/strike.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/strike'>;
+}
+declare module 'core-js/stable/string/virtual/sub.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/sub'>;
+}
+declare module 'core-js/stable/string/virtual/sup.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/sup'>;
+}
+declare module 'core-js/stable/string/virtual/trim-end.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/trim-end'>;
+}
+declare module 'core-js/stable/string/virtual/trim-left.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/trim-left'>;
+}
+declare module 'core-js/stable/string/virtual/trim-right.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/trim-right'>;
+}
+declare module 'core-js/stable/string/virtual/trim-start.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/trim-start'>;
+}
+declare module 'core-js/stable/string/virtual/trim.js' {
+ declare module.exports: $Exports<'core-js/stable/string/virtual/trim'>;
+}
+declare module 'core-js/stable/symbol/async-iterator.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/async-iterator'>;
+}
+declare module 'core-js/stable/symbol/description.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/description'>;
+}
+declare module 'core-js/stable/symbol/for.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/for'>;
+}
+declare module 'core-js/stable/symbol/has-instance.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/has-instance'>;
+}
+declare module 'core-js/stable/symbol/index' {
+ declare module.exports: $Exports<'core-js/stable/symbol'>;
+}
+declare module 'core-js/stable/symbol/index.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol'>;
+}
+declare module 'core-js/stable/symbol/is-concat-spreadable.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/is-concat-spreadable'>;
+}
+declare module 'core-js/stable/symbol/iterator.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/iterator'>;
+}
+declare module 'core-js/stable/symbol/key-for.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/key-for'>;
+}
+declare module 'core-js/stable/symbol/match-all.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/match-all'>;
+}
+declare module 'core-js/stable/symbol/match.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/match'>;
+}
+declare module 'core-js/stable/symbol/replace.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/replace'>;
+}
+declare module 'core-js/stable/symbol/search.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/search'>;
+}
+declare module 'core-js/stable/symbol/species.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/species'>;
+}
+declare module 'core-js/stable/symbol/split.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/split'>;
+}
+declare module 'core-js/stable/symbol/to-primitive.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/to-primitive'>;
+}
+declare module 'core-js/stable/symbol/to-string-tag.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/to-string-tag'>;
+}
+declare module 'core-js/stable/symbol/unscopables.js' {
+ declare module.exports: $Exports<'core-js/stable/symbol/unscopables'>;
+}
+declare module 'core-js/stable/typed-array/copy-within.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/copy-within'>;
+}
+declare module 'core-js/stable/typed-array/entries.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/entries'>;
+}
+declare module 'core-js/stable/typed-array/every.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/every'>;
+}
+declare module 'core-js/stable/typed-array/fill.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/fill'>;
+}
+declare module 'core-js/stable/typed-array/filter.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/filter'>;
+}
+declare module 'core-js/stable/typed-array/find-index.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/find-index'>;
+}
+declare module 'core-js/stable/typed-array/find.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/find'>;
+}
+declare module 'core-js/stable/typed-array/float32-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/float32-array'>;
+}
+declare module 'core-js/stable/typed-array/float64-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/float64-array'>;
+}
+declare module 'core-js/stable/typed-array/for-each.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/for-each'>;
+}
+declare module 'core-js/stable/typed-array/from.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/from'>;
+}
+declare module 'core-js/stable/typed-array/includes.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/includes'>;
+}
+declare module 'core-js/stable/typed-array/index-of.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/index-of'>;
+}
+declare module 'core-js/stable/typed-array/index' {
+ declare module.exports: $Exports<'core-js/stable/typed-array'>;
+}
+declare module 'core-js/stable/typed-array/index.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array'>;
+}
+declare module 'core-js/stable/typed-array/int16-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/int16-array'>;
+}
+declare module 'core-js/stable/typed-array/int32-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/int32-array'>;
+}
+declare module 'core-js/stable/typed-array/int8-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/int8-array'>;
+}
+declare module 'core-js/stable/typed-array/iterator.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/iterator'>;
+}
+declare module 'core-js/stable/typed-array/join.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/join'>;
+}
+declare module 'core-js/stable/typed-array/keys.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/keys'>;
+}
+declare module 'core-js/stable/typed-array/last-index-of.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/last-index-of'>;
+}
+declare module 'core-js/stable/typed-array/map.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/map'>;
+}
+declare module 'core-js/stable/typed-array/of.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/of'>;
+}
+declare module 'core-js/stable/typed-array/reduce-right.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/reduce-right'>;
+}
+declare module 'core-js/stable/typed-array/reduce.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/reduce'>;
+}
+declare module 'core-js/stable/typed-array/reverse.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/reverse'>;
+}
+declare module 'core-js/stable/typed-array/set.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/set'>;
+}
+declare module 'core-js/stable/typed-array/slice.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/slice'>;
+}
+declare module 'core-js/stable/typed-array/some.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/some'>;
+}
+declare module 'core-js/stable/typed-array/sort.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/sort'>;
+}
+declare module 'core-js/stable/typed-array/subarray.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/subarray'>;
+}
+declare module 'core-js/stable/typed-array/to-locale-string.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/to-locale-string'>;
+}
+declare module 'core-js/stable/typed-array/to-string.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/to-string'>;
+}
+declare module 'core-js/stable/typed-array/uint16-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/uint16-array'>;
+}
+declare module 'core-js/stable/typed-array/uint32-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/uint32-array'>;
+}
+declare module 'core-js/stable/typed-array/uint8-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/uint8-array'>;
+}
+declare module 'core-js/stable/typed-array/uint8-clamped-array.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/uint8-clamped-array'>;
+}
+declare module 'core-js/stable/typed-array/values.js' {
+ declare module.exports: $Exports<'core-js/stable/typed-array/values'>;
+}
+declare module 'core-js/stable/url-search-params/index' {
+ declare module.exports: $Exports<'core-js/stable/url-search-params'>;
+}
+declare module 'core-js/stable/url-search-params/index.js' {
+ declare module.exports: $Exports<'core-js/stable/url-search-params'>;
+}
+declare module 'core-js/stable/url/index' {
+ declare module.exports: $Exports<'core-js/stable/url'>;
+}
+declare module 'core-js/stable/url/index.js' {
+ declare module.exports: $Exports<'core-js/stable/url'>;
+}
+declare module 'core-js/stable/url/to-json.js' {
+ declare module.exports: $Exports<'core-js/stable/url/to-json'>;
+}
+declare module 'core-js/stable/weak-map/index' {
+ declare module.exports: $Exports<'core-js/stable/weak-map'>;
+}
+declare module 'core-js/stable/weak-map/index.js' {
+ declare module.exports: $Exports<'core-js/stable/weak-map'>;
+}
+declare module 'core-js/stable/weak-set/index' {
+ declare module.exports: $Exports<'core-js/stable/weak-set'>;
+}
+declare module 'core-js/stable/weak-set/index.js' {
+ declare module.exports: $Exports<'core-js/stable/weak-set'>;
+}
+declare module 'core-js/stage/0.js' {
+ declare module.exports: $Exports<'core-js/stage/0'>;
+}
+declare module 'core-js/stage/1.js' {
+ declare module.exports: $Exports<'core-js/stage/1'>;
+}
+declare module 'core-js/stage/2.js' {
+ declare module.exports: $Exports<'core-js/stage/2'>;
+}
+declare module 'core-js/stage/3.js' {
+ declare module.exports: $Exports<'core-js/stage/3'>;
+}
+declare module 'core-js/stage/4.js' {
+ declare module.exports: $Exports<'core-js/stage/4'>;
+}
+declare module 'core-js/stage/index' {
+ declare module.exports: $Exports<'core-js/stage'>;
+}
+declare module 'core-js/stage/index.js' {
+ declare module.exports: $Exports<'core-js/stage'>;
+}
+declare module 'core-js/stage/pre.js' {
+ declare module.exports: $Exports<'core-js/stage/pre'>;
+}
+declare module 'core-js/web/dom-collections.js' {
+ declare module.exports: $Exports<'core-js/web/dom-collections'>;
+}
+declare module 'core-js/web/immediate.js' {
+ declare module.exports: $Exports<'core-js/web/immediate'>;
+}
+declare module 'core-js/web/index' {
+ declare module.exports: $Exports<'core-js/web'>;
+}
+declare module 'core-js/web/index.js' {
+ declare module.exports: $Exports<'core-js/web'>;
+}
+declare module 'core-js/web/queue-microtask.js' {
+ declare module.exports: $Exports<'core-js/web/queue-microtask'>;
+}
+declare module 'core-js/web/timers.js' {
+ declare module.exports: $Exports<'core-js/web/timers'>;
+}
+declare module 'core-js/web/url-search-params.js' {
+ declare module.exports: $Exports<'core-js/web/url-search-params'>;
+}
+declare module 'core-js/web/url.js' {
+ declare module.exports: $Exports<'core-js/web/url'>;
+}
diff --git a/flow-typed/npm/eslint-config-react-app_vx.x.x.js b/flow-typed/npm/eslint-config-react-app_vx.x.x.js
deleted file mode 100644
index f6a897ce..00000000
--- a/flow-typed/npm/eslint-config-react-app_vx.x.x.js
+++ /dev/null
@@ -1,33 +0,0 @@
-// flow-typed signature: de01e07b81b1d8db93365adb9c4e3224
-// flow-typed version: <>/eslint-config-react-app_v^3.0.6/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'eslint-config-react-app'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'eslint-config-react-app' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-
-
-// Filename aliases
-declare module 'eslint-config-react-app/index' {
- declare module.exports: $Exports<'eslint-config-react-app'>;
-}
-declare module 'eslint-config-react-app/index.js' {
- declare module.exports: $Exports<'eslint-config-react-app'>;
-}
diff --git a/flow-typed/npm/eslint-import-resolver-webpack_vx.x.x.js b/flow-typed/npm/eslint-import-resolver-webpack_vx.x.x.js
deleted file mode 100644
index 530815cf..00000000
--- a/flow-typed/npm/eslint-import-resolver-webpack_vx.x.x.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// flow-typed signature: c6e5bcb159d1163de481cbb6a65e21df
-// flow-typed version: <>/eslint-import-resolver-webpack_v^0.3.1/flow_v0.49.1
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'eslint-import-resolver-webpack'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'eslint-import-resolver-webpack' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'eslint-import-resolver-webpack/config' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'eslint-import-resolver-webpack/config.js' {
- declare module.exports: $Exports<'eslint-import-resolver-webpack/config'>;
-}
-declare module 'eslint-import-resolver-webpack/index' {
- declare module.exports: $Exports<'eslint-import-resolver-webpack'>;
-}
-declare module 'eslint-import-resolver-webpack/index.js' {
- declare module.exports: $Exports<'eslint-import-resolver-webpack'>;
-}
diff --git a/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js b/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js
deleted file mode 100644
index 1137037e..00000000
--- a/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js
+++ /dev/null
@@ -1,436 +0,0 @@
-// flow-typed signature: b577a192ad1c96657abc047444f59956
-// flow-typed version: <>/eslint-plugin-flowtype_v^2.40.1/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'eslint-plugin-flowtype'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'eslint-plugin-flowtype' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'eslint-plugin-flowtype/bin/readmeAssertions' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/booleanStyle' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/defineFlowType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/delimiterDangle' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/genericSpacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/newlineAfterFlowAnnotation' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/noDupeKeys' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/noExistentialType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/noMutableArray' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/noUnusedExpressions' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/noWeakTypes' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/requireExactType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/requireParameterType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/requireReturnType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/requireTypesAtTop' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/requireVariableType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/semi' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/sortKeys' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeIdMatch' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/typeImportStyle' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/useFlowType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/rules/validSyntax' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/getParameterName' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFile' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/quoteName' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-flowtype/dist/utilities/spacingFixers' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'eslint-plugin-flowtype/bin/readmeAssertions.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/bin/readmeAssertions'>;
-}
-declare module 'eslint-plugin-flowtype/dist/index' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist'>;
-}
-declare module 'eslint-plugin-flowtype/dist/index.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/index' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/index.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/booleanStyle.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/booleanStyle'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/defineFlowType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/defineFlowType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/delimiterDangle.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/delimiterDangle'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/genericSpacing.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/genericSpacing'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/newlineAfterFlowAnnotation.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/newlineAfterFlowAnnotation'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/noDupeKeys.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noDupeKeys'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/noExistentialType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noExistentialType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/noMutableArray.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noMutableArray'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/noUnusedExpressions.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noUnusedExpressions'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/noWeakTypes.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noWeakTypes'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/requireExactType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireExactType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/requireParameterType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireParameterType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/requireReturnType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireReturnType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/requireTypesAtTop.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireTypesAtTop'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/requireVariableType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireVariableType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/semi.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/semi'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/sortKeys.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/sortKeys'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeIdMatch.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeIdMatch'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/typeImportStyle.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeImportStyle'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/useFlowType.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/useFlowType'>;
-}
-declare module 'eslint-plugin-flowtype/dist/rules/validSyntax.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/validSyntax'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/getParameterName.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getParameterName'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/index' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/index.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFile.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isFlowFile'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/quoteName.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/quoteName'>;
-}
-declare module 'eslint-plugin-flowtype/dist/utilities/spacingFixers.js' {
- declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/spacingFixers'>;
-}
diff --git a/flow-typed/npm/eslint-plugin-import_vx.x.x.js b/flow-typed/npm/eslint-plugin-import_vx.x.x.js
deleted file mode 100644
index 1a4ba209..00000000
--- a/flow-typed/npm/eslint-plugin-import_vx.x.x.js
+++ /dev/null
@@ -1,423 +0,0 @@
-// flow-typed signature: bac6830d2e83cb5938927897ab339650
-// flow-typed version: <>/eslint-plugin-import_v^2.14.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'eslint-plugin-import'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'eslint-plugin-import' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'eslint-plugin-import/config/electron' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/config/errors' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/config/react-native' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/config/react' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/config/recommended' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/config/stage-0' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/config/typescript' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/config/warnings' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/core/importType' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/core/staticRequire' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/docsUrl' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/ExportMap' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/importDeclaration' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/default' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/dynamic-import-chunkname' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/export' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/exports-last' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/extensions' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/first' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/group-exports' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/imports-first' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/max-dependencies' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/named' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/namespace' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/newline-after-import' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-absolute-path' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-amd' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-anonymous-default-export' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-commonjs' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-cycle' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-default-export' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-deprecated' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-duplicates' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-dynamic-require' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-extraneous-dependencies' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-internal-modules' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-mutable-exports' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-named-as-default-member' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-named-as-default' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-named-default' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-named-export' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-namespace' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-nodejs-modules' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-relative-parent-imports' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-restricted-paths' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-self-import' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-unassigned-import' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-unresolved' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-unused-modules' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-useless-path-segments' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/no-webpack-loader-syntax' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/order' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/prefer-default-export' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/lib/rules/unambiguous' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-import/memo-parser' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'eslint-plugin-import/config/electron.js' {
- declare module.exports: $Exports<'eslint-plugin-import/config/electron'>;
-}
-declare module 'eslint-plugin-import/config/errors.js' {
- declare module.exports: $Exports<'eslint-plugin-import/config/errors'>;
-}
-declare module 'eslint-plugin-import/config/react-native.js' {
- declare module.exports: $Exports<'eslint-plugin-import/config/react-native'>;
-}
-declare module 'eslint-plugin-import/config/react.js' {
- declare module.exports: $Exports<'eslint-plugin-import/config/react'>;
-}
-declare module 'eslint-plugin-import/config/recommended.js' {
- declare module.exports: $Exports<'eslint-plugin-import/config/recommended'>;
-}
-declare module 'eslint-plugin-import/config/stage-0.js' {
- declare module.exports: $Exports<'eslint-plugin-import/config/stage-0'>;
-}
-declare module 'eslint-plugin-import/config/typescript.js' {
- declare module.exports: $Exports<'eslint-plugin-import/config/typescript'>;
-}
-declare module 'eslint-plugin-import/config/warnings.js' {
- declare module.exports: $Exports<'eslint-plugin-import/config/warnings'>;
-}
-declare module 'eslint-plugin-import/lib/core/importType.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/core/importType'>;
-}
-declare module 'eslint-plugin-import/lib/core/staticRequire.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/core/staticRequire'>;
-}
-declare module 'eslint-plugin-import/lib/docsUrl.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/docsUrl'>;
-}
-declare module 'eslint-plugin-import/lib/ExportMap.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/ExportMap'>;
-}
-declare module 'eslint-plugin-import/lib/importDeclaration.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/importDeclaration'>;
-}
-declare module 'eslint-plugin-import/lib/index' {
- declare module.exports: $Exports<'eslint-plugin-import/lib'>;
-}
-declare module 'eslint-plugin-import/lib/index.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib'>;
-}
-declare module 'eslint-plugin-import/lib/rules/default.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/default'>;
-}
-declare module 'eslint-plugin-import/lib/rules/dynamic-import-chunkname.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/dynamic-import-chunkname'>;
-}
-declare module 'eslint-plugin-import/lib/rules/export.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/export'>;
-}
-declare module 'eslint-plugin-import/lib/rules/exports-last.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/exports-last'>;
-}
-declare module 'eslint-plugin-import/lib/rules/extensions.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/extensions'>;
-}
-declare module 'eslint-plugin-import/lib/rules/first.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/first'>;
-}
-declare module 'eslint-plugin-import/lib/rules/group-exports.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/group-exports'>;
-}
-declare module 'eslint-plugin-import/lib/rules/imports-first.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/imports-first'>;
-}
-declare module 'eslint-plugin-import/lib/rules/max-dependencies.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/max-dependencies'>;
-}
-declare module 'eslint-plugin-import/lib/rules/named.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/named'>;
-}
-declare module 'eslint-plugin-import/lib/rules/namespace.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/namespace'>;
-}
-declare module 'eslint-plugin-import/lib/rules/newline-after-import.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/newline-after-import'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-absolute-path.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-absolute-path'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-amd.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-amd'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-anonymous-default-export.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-anonymous-default-export'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-commonjs.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-commonjs'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-cycle.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-cycle'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-default-export.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-default-export'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-deprecated.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-deprecated'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-duplicates.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-duplicates'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-dynamic-require.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-dynamic-require'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-extraneous-dependencies.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-extraneous-dependencies'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-internal-modules.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-internal-modules'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-mutable-exports.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-mutable-exports'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-named-as-default-member.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-as-default-member'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-named-as-default.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-as-default'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-named-default.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-default'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-named-export.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-export'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-namespace.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-namespace'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-nodejs-modules.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-nodejs-modules'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-relative-parent-imports.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-relative-parent-imports'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-restricted-paths.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-restricted-paths'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-self-import.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-self-import'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-unassigned-import.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unassigned-import'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-unresolved.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unresolved'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-unused-modules.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unused-modules'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-useless-path-segments.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-useless-path-segments'>;
-}
-declare module 'eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-webpack-loader-syntax'>;
-}
-declare module 'eslint-plugin-import/lib/rules/order.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/order'>;
-}
-declare module 'eslint-plugin-import/lib/rules/prefer-default-export.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/prefer-default-export'>;
-}
-declare module 'eslint-plugin-import/lib/rules/unambiguous.js' {
- declare module.exports: $Exports<'eslint-plugin-import/lib/rules/unambiguous'>;
-}
-declare module 'eslint-plugin-import/memo-parser/index' {
- declare module.exports: $Exports<'eslint-plugin-import/memo-parser'>;
-}
-declare module 'eslint-plugin-import/memo-parser/index.js' {
- declare module.exports: $Exports<'eslint-plugin-import/memo-parser'>;
-}
diff --git a/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js b/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js
deleted file mode 100644
index ab0e21b1..00000000
--- a/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js
+++ /dev/null
@@ -1,1214 +0,0 @@
-// flow-typed signature: 9434f9b8c9a258565eb83eec8613ad3b
-// flow-typed version: <>/eslint-plugin-jsx-a11y_v^6.1.2/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'eslint-plugin-jsx-a11y'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'eslint-plugin-jsx-a11y' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'eslint-plugin-jsx-a11y/__mocks__/genInteractives' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__mocks__/IdentifierMock' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXAttributeMock' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXElementMock' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__mocks__/LiteralMock' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/ruleOptionsMapperFactory' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/index-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/accessible-emoji-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/alt-text-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-has-content-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-is-valid-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-activedescendant-has-tabindex-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-props-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-proptypes-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-role-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-unsupported-elements-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key-events-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/html-has-lang-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/iframe-has-title-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/img-redundant-alt-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports-focus-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/lang-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/media-has-caption-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/mouse-events-have-key-events-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-access-key-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-autofocus-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-distracting-elements-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-interactive-element-to-noninteractive-role-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-interactions-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-to-interactive-role-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-tabindex-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-onchange-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-redundant-roles-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-static-element-interactions-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/role-has-required-aria-props-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/role-supports-aria-props-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/scope-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/tabindex-no-positive-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getTabIndex-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/hasAccessibleChild-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/input-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menu-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menuitem-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveRole-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveElement-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/accessible-emoji' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/alt-text' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/anchor-has-content' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/anchor-is-valid' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-activedescendant-has-tabindex' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-proptypes' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-role' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-unsupported-elements' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/heading-has-content' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/html-has-lang' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/iframe-has-title' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/img-redundant-alt' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-for' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/lang' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/media-has-caption' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/mouse-events-have-key-events' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-access-key' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-autofocus' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-distracting-elements' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-interactive-element-to-noninteractive-role' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-interactions' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-to-interactive-role' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-tabindex' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-onchange' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-redundant-roles' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-static-element-interactions' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/role-has-required-aria-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/role-supports-aria-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/scope' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/rules/tabindex-no-positive' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/attributesComparator' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/getComputedRole' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/getExplicitRole' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/getImplicitRole' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/getSuggestion' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/getTabIndex' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/hasAccessibleChild' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/a' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/area' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/article' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/aside' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/body' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/button' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/datalist' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/details' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dialog' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dl' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/form' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h1' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h2' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h3' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h4' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h5' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h6' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/hr' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/input' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/li' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/link' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menu' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menuitem' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/meter' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/nav' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ol' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/option' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/output' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/progress' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/section' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/select' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tbody' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/textarea' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tfoot' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/thead' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ul' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isAbstractRole' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isDisabledElement' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isDOMElement' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isInteractiveElement' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isInteractiveRole' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveElement' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isPresentationRole' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/lib/util/schemas' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/scripts/addRuleToIndex' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/doc' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/rule' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/test' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-jsx-a11y/scripts/create-rule' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'eslint-plugin-jsx-a11y/__mocks__/genInteractives.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/genInteractives'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__mocks__/IdentifierMock.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/IdentifierMock'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXAttributeMock.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXAttributeMock'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXElementMock.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXElementMock'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__mocks__/LiteralMock.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/LiteralMock'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/ruleOptionsMapperFactory.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/__util__/ruleOptionsMapperFactory'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/index-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/index-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/accessible-emoji-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/accessible-emoji-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/alt-text-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/alt-text-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-has-content-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-has-content-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-is-valid-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-is-valid-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-activedescendant-has-tabindex-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-activedescendant-has-tabindex-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-props-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-props-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-proptypes-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-proptypes-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-role-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-role-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-unsupported-elements-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-unsupported-elements-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key-events-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key-events-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/html-has-lang-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/html-has-lang-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/iframe-has-title-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/iframe-has-title-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/img-redundant-alt-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/img-redundant-alt-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports-focus-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports-focus-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/lang-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/lang-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/media-has-caption-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/media-has-caption-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/mouse-events-have-key-events-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/mouse-events-have-key-events-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-access-key-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-access-key-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-autofocus-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-autofocus-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-distracting-elements-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-distracting-elements-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-interactive-element-to-noninteractive-role-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-interactive-element-to-noninteractive-role-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-interactions-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-interactions-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-to-interactive-role-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-to-interactive-role-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-tabindex-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-tabindex-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-onchange-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-onchange-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-redundant-roles-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-redundant-roles-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-static-element-interactions-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-static-element-interactions-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/role-has-required-aria-props-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/role-has-required-aria-props-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/role-supports-aria-props-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/role-supports-aria-props-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/scope-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/scope-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/tabindex-no-positive-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/tabindex-no-positive-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getTabIndex-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getTabIndex-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/hasAccessibleChild-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/hasAccessibleChild-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/input-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/input-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menu-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menu-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menuitem-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menuitem-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveRole-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveRole-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveElement-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveElement-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/index' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/index.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/accessible-emoji.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/accessible-emoji'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/alt-text.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/alt-text'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/anchor-has-content.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/anchor-has-content'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/anchor-is-valid.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/anchor-is-valid'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-activedescendant-has-tabindex.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-activedescendant-has-tabindex'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-props.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-props'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-proptypes.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-proptypes'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-role.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-role'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-unsupported-elements.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-unsupported-elements'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/heading-has-content.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/heading-has-content'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/html-has-lang.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/html-has-lang'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/iframe-has-title.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/iframe-has-title'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/img-redundant-alt.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/img-redundant-alt'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-for.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/label-has-for'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/lang.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/lang'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/media-has-caption.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/media-has-caption'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/mouse-events-have-key-events.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/mouse-events-have-key-events'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-access-key.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-access-key'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-autofocus.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-autofocus'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-distracting-elements.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-distracting-elements'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-interactive-element-to-noninteractive-role.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-interactive-element-to-noninteractive-role'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-interactions.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-interactions'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-to-interactive-role.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-to-interactive-role'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-tabindex.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-tabindex'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-onchange.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-onchange'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-redundant-roles.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-redundant-roles'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/no-static-element-interactions.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-static-element-interactions'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/role-has-required-aria-props.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/role-has-required-aria-props'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/role-supports-aria-props.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/role-supports-aria-props'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/scope.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/scope'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/rules/tabindex-no-positive.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/tabindex-no-positive'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/attributesComparator.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/attributesComparator'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/getComputedRole.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getComputedRole'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/getExplicitRole.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getExplicitRole'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/getImplicitRole.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getImplicitRole'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/getSuggestion.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getSuggestion'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/getTabIndex.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getTabIndex'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/hasAccessibleChild.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/hasAccessibleChild'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/a.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/a'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/area.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/area'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/article.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/article'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/aside.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/aside'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/body.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/body'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/button.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/button'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/datalist.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/datalist'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/details.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/details'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dialog.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dialog'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dl.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dl'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/form.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/form'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h1.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h1'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h2.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h2'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h3.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h3'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h4.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h4'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h5.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h5'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h6.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h6'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/hr.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/hr'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/index' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/index.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/input.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/input'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/li.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/li'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/link.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/link'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menu.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menu'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menuitem.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menuitem'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/meter.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/meter'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/nav.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/nav'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ol.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ol'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/option.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/option'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/output.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/output'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/progress.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/progress'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/section.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/section'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/select.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/select'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tbody.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tbody'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/textarea.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/textarea'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tfoot.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tfoot'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/thead.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/thead'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ul.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ul'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isAbstractRole.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isAbstractRole'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isDisabledElement.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isDisabledElement'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isDOMElement.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isDOMElement'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isInteractiveElement.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isInteractiveElement'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isInteractiveRole.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isInteractiveRole'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveElement.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveElement'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isPresentationRole.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isPresentationRole'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel'>;
-}
-declare module 'eslint-plugin-jsx-a11y/lib/util/schemas.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/schemas'>;
-}
-declare module 'eslint-plugin-jsx-a11y/scripts/addRuleToIndex.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/addRuleToIndex'>;
-}
-declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/doc.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/boilerplate/doc'>;
-}
-declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/rule.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/boilerplate/rule'>;
-}
-declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/test.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/boilerplate/test'>;
-}
-declare module 'eslint-plugin-jsx-a11y/scripts/create-rule.js' {
- declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/create-rule'>;
-}
diff --git a/flow-typed/npm/eslint-plugin-prettier_vx.x.x.js b/flow-typed/npm/eslint-plugin-prettier_vx.x.x.js
deleted file mode 100644
index 284a818e..00000000
--- a/flow-typed/npm/eslint-plugin-prettier_vx.x.x.js
+++ /dev/null
@@ -1,32 +0,0 @@
-// flow-typed signature: e09355eb28f65800df8658863411011b
-// flow-typed version: <>/eslint-plugin-prettier_v^2.4.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'eslint-plugin-prettier'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'eslint-plugin-prettier' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'eslint-plugin-prettier/eslint-plugin-prettier' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'eslint-plugin-prettier/eslint-plugin-prettier.js' {
- declare module.exports: $Exports<'eslint-plugin-prettier/eslint-plugin-prettier'>;
-}
diff --git a/flow-typed/npm/eslint-plugin-react_vx.x.x.js b/flow-typed/npm/eslint-plugin-react_vx.x.x.js
deleted file mode 100644
index ef3c8ce2..00000000
--- a/flow-typed/npm/eslint-plugin-react_vx.x.x.js
+++ /dev/null
@@ -1,773 +0,0 @@
-// flow-typed signature: 5df56c46c6cba4e00f9e874d4390c7ef
-// flow-typed version: <>/eslint-plugin-react_v^7.12.4/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'eslint-plugin-react'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'eslint-plugin-react' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'eslint-plugin-react/lib/rules/boolean-prop-naming' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/button-has-type' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/default-props-match-prop-types' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/destructuring-assignment' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/display-name' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/forbid-component-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/forbid-dom-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/forbid-elements' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/forbid-foreign-prop-types' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/forbid-prop-types' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/function-component-definition' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-boolean-value' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-child-element-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-closing-bracket-location' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-closing-tag-location' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-curly-brace-presence' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-curly-newline' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-curly-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-equals-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-filename-extension' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-first-prop-new-line' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-fragments' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-handler-names' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-indent-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-indent' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-key' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-max-depth' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-max-props-per-line' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-no-bind' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-no-duplicate-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-no-literals' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-no-script-url' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-no-undef' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-no-useless-fragment' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-one-expression-per-line' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-props-no-spreading' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-sort-default-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-sort-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-space-before-closing' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-tag-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-uses-react' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-uses-vars' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/jsx-wrap-multilines' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-access-state-in-setstate' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-adjacent-inline-elements' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-array-index-key' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-children-prop' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-danger-with-children' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-danger' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-deprecated' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-did-mount-set-state' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-did-update-set-state' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-direct-mutation-state' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-find-dom-node' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-is-mounted' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-multi-comp' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-redundant-should-component-update' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-render-return-value' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-set-state' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-string-refs' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-this-in-sfc' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-typos' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-unescaped-entities' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-unknown-property' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-unsafe' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-unused-prop-types' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-unused-state' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/no-will-update-set-state' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/prefer-es6-class' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/prefer-read-only-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/prefer-stateless-function' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/prop-types' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/react-in-jsx-scope' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/require-default-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/require-optimization' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/require-render-return' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/self-closing-comp' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/sort-comp' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/sort-prop-types' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/state-in-constructor' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/static-property-placement' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/style-prop-object' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/rules/void-dom-elements-no-children' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/annotations' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/ast' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/Components' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/defaultProps' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/docsUrl' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/error' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/jsx' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/linkComponents' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/log' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/makeNoMethodSetStateRule' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/pragma' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/props' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/propTypes' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/propTypesSort' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/propWrapper' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/usedPropTypes' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/variable' {
- declare module.exports: any;
-}
-
-declare module 'eslint-plugin-react/lib/util/version' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'eslint-plugin-react/index' {
- declare module.exports: $Exports<'eslint-plugin-react'>;
-}
-declare module 'eslint-plugin-react/index.js' {
- declare module.exports: $Exports<'eslint-plugin-react'>;
-}
-declare module 'eslint-plugin-react/lib/rules/boolean-prop-naming.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/boolean-prop-naming'>;
-}
-declare module 'eslint-plugin-react/lib/rules/button-has-type.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/button-has-type'>;
-}
-declare module 'eslint-plugin-react/lib/rules/default-props-match-prop-types.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/default-props-match-prop-types'>;
-}
-declare module 'eslint-plugin-react/lib/rules/destructuring-assignment.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/destructuring-assignment'>;
-}
-declare module 'eslint-plugin-react/lib/rules/display-name.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/display-name'>;
-}
-declare module 'eslint-plugin-react/lib/rules/forbid-component-props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-component-props'>;
-}
-declare module 'eslint-plugin-react/lib/rules/forbid-dom-props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-dom-props'>;
-}
-declare module 'eslint-plugin-react/lib/rules/forbid-elements.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-elements'>;
-}
-declare module 'eslint-plugin-react/lib/rules/forbid-foreign-prop-types.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-foreign-prop-types'>;
-}
-declare module 'eslint-plugin-react/lib/rules/forbid-prop-types.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-prop-types'>;
-}
-declare module 'eslint-plugin-react/lib/rules/function-component-definition.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/function-component-definition'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-boolean-value.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-boolean-value'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-child-element-spacing.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-child-element-spacing'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-closing-bracket-location.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-closing-bracket-location'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-closing-tag-location.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-closing-tag-location'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-curly-brace-presence.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-brace-presence'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-curly-newline.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-newline'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-curly-spacing.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-spacing'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-equals-spacing.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-equals-spacing'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-filename-extension.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-filename-extension'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-first-prop-new-line.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-first-prop-new-line'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-fragments.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-fragments'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-handler-names.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-handler-names'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-indent-props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-indent-props'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-indent.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-indent'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-key.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-key'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-max-depth.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-max-depth'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-max-props-per-line.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-max-props-per-line'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-no-bind.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-bind'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-no-duplicate-props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-duplicate-props'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-no-literals.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-literals'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-no-script-url.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-script-url'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-target-blank'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-no-undef.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-undef'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-no-useless-fragment.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-useless-fragment'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-one-expression-per-line.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-one-expression-per-line'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-pascal-case'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-props-no-spreading.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-props-no-spreading'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-sort-default-props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-sort-default-props'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-sort-props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-sort-props'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-space-before-closing.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-space-before-closing'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-tag-spacing.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-tag-spacing'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-uses-react.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-uses-react'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-uses-vars.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-uses-vars'>;
-}
-declare module 'eslint-plugin-react/lib/rules/jsx-wrap-multilines.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-wrap-multilines'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-access-state-in-setstate.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-access-state-in-setstate'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-adjacent-inline-elements.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-adjacent-inline-elements'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-array-index-key.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-array-index-key'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-children-prop.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-children-prop'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-danger-with-children.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-danger-with-children'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-danger.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-danger'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-deprecated.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-deprecated'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-did-mount-set-state.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-did-mount-set-state'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-did-update-set-state.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-did-update-set-state'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-direct-mutation-state.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-direct-mutation-state'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-find-dom-node.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-find-dom-node'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-is-mounted.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-is-mounted'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-multi-comp.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-multi-comp'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-redundant-should-component-update.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-redundant-should-component-update'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-render-return-value.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-render-return-value'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-set-state.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-set-state'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-string-refs.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-string-refs'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-this-in-sfc.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-this-in-sfc'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-typos.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-typos'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-unescaped-entities.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unescaped-entities'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-unknown-property.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unknown-property'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-unsafe.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unsafe'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-unused-prop-types.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unused-prop-types'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-unused-state.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unused-state'>;
-}
-declare module 'eslint-plugin-react/lib/rules/no-will-update-set-state.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-will-update-set-state'>;
-}
-declare module 'eslint-plugin-react/lib/rules/prefer-es6-class.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-es6-class'>;
-}
-declare module 'eslint-plugin-react/lib/rules/prefer-read-only-props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-read-only-props'>;
-}
-declare module 'eslint-plugin-react/lib/rules/prefer-stateless-function.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-stateless-function'>;
-}
-declare module 'eslint-plugin-react/lib/rules/prop-types.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prop-types'>;
-}
-declare module 'eslint-plugin-react/lib/rules/react-in-jsx-scope.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/react-in-jsx-scope'>;
-}
-declare module 'eslint-plugin-react/lib/rules/require-default-props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-default-props'>;
-}
-declare module 'eslint-plugin-react/lib/rules/require-optimization.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-optimization'>;
-}
-declare module 'eslint-plugin-react/lib/rules/require-render-return.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-render-return'>;
-}
-declare module 'eslint-plugin-react/lib/rules/self-closing-comp.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/self-closing-comp'>;
-}
-declare module 'eslint-plugin-react/lib/rules/sort-comp.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/sort-comp'>;
-}
-declare module 'eslint-plugin-react/lib/rules/sort-prop-types.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/sort-prop-types'>;
-}
-declare module 'eslint-plugin-react/lib/rules/state-in-constructor.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/state-in-constructor'>;
-}
-declare module 'eslint-plugin-react/lib/rules/static-property-placement.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/static-property-placement'>;
-}
-declare module 'eslint-plugin-react/lib/rules/style-prop-object.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/style-prop-object'>;
-}
-declare module 'eslint-plugin-react/lib/rules/void-dom-elements-no-children.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/rules/void-dom-elements-no-children'>;
-}
-declare module 'eslint-plugin-react/lib/util/annotations.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/annotations'>;
-}
-declare module 'eslint-plugin-react/lib/util/ast.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/ast'>;
-}
-declare module 'eslint-plugin-react/lib/util/Components.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/Components'>;
-}
-declare module 'eslint-plugin-react/lib/util/defaultProps.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/defaultProps'>;
-}
-declare module 'eslint-plugin-react/lib/util/docsUrl.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/docsUrl'>;
-}
-declare module 'eslint-plugin-react/lib/util/error.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/error'>;
-}
-declare module 'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket'>;
-}
-declare module 'eslint-plugin-react/lib/util/jsx.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/jsx'>;
-}
-declare module 'eslint-plugin-react/lib/util/linkComponents.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/linkComponents'>;
-}
-declare module 'eslint-plugin-react/lib/util/log.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/log'>;
-}
-declare module 'eslint-plugin-react/lib/util/makeNoMethodSetStateRule.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/makeNoMethodSetStateRule'>;
-}
-declare module 'eslint-plugin-react/lib/util/pragma.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/pragma'>;
-}
-declare module 'eslint-plugin-react/lib/util/props.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/props'>;
-}
-declare module 'eslint-plugin-react/lib/util/propTypes.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/propTypes'>;
-}
-declare module 'eslint-plugin-react/lib/util/propTypesSort.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/propTypesSort'>;
-}
-declare module 'eslint-plugin-react/lib/util/propWrapper.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/propWrapper'>;
-}
-declare module 'eslint-plugin-react/lib/util/usedPropTypes.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/usedPropTypes'>;
-}
-declare module 'eslint-plugin-react/lib/util/variable.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/variable'>;
-}
-declare module 'eslint-plugin-react/lib/util/version.js' {
- declare module.exports: $Exports<'eslint-plugin-react/lib/util/version'>;
-}
diff --git a/flow-typed/npm/eslint_vx.x.x.js b/flow-typed/npm/eslint_vx.x.x.js
deleted file mode 100644
index cbe95401..00000000
--- a/flow-typed/npm/eslint_vx.x.x.js
+++ /dev/null
@@ -1,2537 +0,0 @@
-// flow-typed signature: 5f649420bf0edfcaf560faa876a304b3
-// flow-typed version: <>/eslint_v^5.12.1/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'eslint'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'eslint' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'eslint/bin/eslint' {
- declare module.exports: any;
-}
-
-declare module 'eslint/conf/config-schema' {
- declare module.exports: any;
-}
-
-declare module 'eslint/conf/default-cli-options' {
- declare module.exports: any;
-}
-
-declare module 'eslint/conf/environments' {
- declare module.exports: any;
-}
-
-declare module 'eslint/conf/eslint-all' {
- declare module.exports: any;
-}
-
-declare module 'eslint/conf/eslint-recommended' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/api' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/built-in-rules-index' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/cli-engine' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/cli' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/code-path-analysis/code-path-analyzer' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/code-path-analysis/code-path-segment' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/code-path-analysis/code-path-state' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/code-path-analysis/code-path' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/code-path-analysis/debug-helpers' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/code-path-analysis/fork-context' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/code-path-analysis/id-generator' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/autoconfig' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/config-cache' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/config-file' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/config-initializer' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/config-ops' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/config-rule' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/config-validator' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/environments' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/config/plugins' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/checkstyle' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/codeframe' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/compact' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/html' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/jslint-xml' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/json-with-metadata' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/json' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/junit' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/stylish' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/table' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/tap' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/unix' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/formatters/visualstudio' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/linter' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/load-rules' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/options' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/accessor-pairs' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/array-bracket-newline' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/array-bracket-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/array-callback-return' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/array-element-newline' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/arrow-body-style' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/arrow-parens' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/arrow-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/block-scoped-var' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/block-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/brace-style' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/callback-return' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/camelcase' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/capitalized-comments' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/class-methods-use-this' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/comma-dangle' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/comma-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/comma-style' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/complexity' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/computed-property-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/consistent-return' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/consistent-this' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/constructor-super' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/curly' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/default-case' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/dot-location' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/dot-notation' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/eol-last' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/eqeqeq' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/for-direction' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/func-call-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/func-name-matching' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/func-names' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/func-style' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/function-paren-newline' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/generator-star-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/getter-return' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/global-require' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/guard-for-in' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/handle-callback-err' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/id-blacklist' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/id-length' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/id-match' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/implicit-arrow-linebreak' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/indent-legacy' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/indent' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/init-declarations' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/jsx-quotes' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/key-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/keyword-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/line-comment-position' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/linebreak-style' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/lines-around-comment' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/lines-around-directive' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/lines-between-class-members' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-classes-per-file' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-depth' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-len' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-lines-per-function' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-lines' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-nested-callbacks' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-params' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-statements-per-line' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/max-statements' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/multiline-comment-style' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/multiline-ternary' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/new-cap' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/new-parens' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/newline-after-var' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/newline-before-return' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/newline-per-chained-call' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-alert' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-array-constructor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-async-promise-executor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-await-in-loop' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-bitwise' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-buffer-constructor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-caller' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-case-declarations' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-catch-shadow' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-class-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-compare-neg-zero' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-cond-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-confusing-arrow' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-console' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-const-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-constant-condition' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-continue' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-control-regex' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-debugger' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-delete-var' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-div-regex' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-dupe-args' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-dupe-class-members' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-dupe-keys' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-duplicate-case' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-duplicate-imports' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-else-return' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-empty-character-class' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-empty-function' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-empty-pattern' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-empty' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-eq-null' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-eval' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-ex-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-extend-native' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-extra-bind' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-extra-boolean-cast' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-extra-label' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-extra-parens' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-extra-semi' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-fallthrough' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-floating-decimal' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-func-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-global-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-implicit-coercion' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-implicit-globals' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-implied-eval' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-inline-comments' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-inner-declarations' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-invalid-regexp' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-invalid-this' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-irregular-whitespace' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-iterator' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-label-var' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-labels' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-lone-blocks' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-lonely-if' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-loop-func' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-magic-numbers' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-misleading-character-class' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-mixed-operators' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-mixed-requires' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-mixed-spaces-and-tabs' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-multi-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-multi-spaces' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-multi-str' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-multiple-empty-lines' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-native-reassign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-negated-condition' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-negated-in-lhs' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-nested-ternary' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-new-func' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-new-object' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-new-require' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-new-symbol' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-new-wrappers' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-new' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-obj-calls' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-octal-escape' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-octal' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-param-reassign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-path-concat' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-plusplus' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-process-env' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-process-exit' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-proto' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-prototype-builtins' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-redeclare' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-regex-spaces' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-restricted-globals' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-restricted-imports' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-restricted-modules' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-restricted-properties' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-restricted-syntax' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-return-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-return-await' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-script-url' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-self-assign' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-self-compare' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-sequences' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-shadow-restricted-names' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-shadow' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-spaced-func' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-sparse-arrays' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-sync' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-tabs' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-template-curly-in-string' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-ternary' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-this-before-super' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-throw-literal' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-trailing-spaces' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-undef-init' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-undef' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-undefined' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-underscore-dangle' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unexpected-multiline' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unmodified-loop-condition' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unneeded-ternary' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unreachable' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unsafe-finally' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unsafe-negation' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unused-expressions' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unused-labels' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-unused-vars' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-use-before-define' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-useless-call' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-useless-catch' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-useless-computed-key' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-useless-concat' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-useless-constructor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-useless-escape' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-useless-rename' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-useless-return' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-var' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-void' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-warning-comments' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-whitespace-before-property' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/no-with' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/nonblock-statement-body-position' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/object-curly-newline' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/object-curly-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/object-property-newline' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/object-shorthand' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/one-var-declaration-per-line' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/one-var' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/operator-assignment' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/operator-linebreak' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/padded-blocks' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/padding-line-between-statements' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-arrow-callback' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-const' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-destructuring' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-named-capture-group' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-numeric-literals' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-object-spread' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-promise-reject-errors' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-reflect' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-rest-params' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-spread' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/prefer-template' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/quote-props' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/quotes' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/radix' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/require-atomic-updates' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/require-await' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/require-jsdoc' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/require-unicode-regexp' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/require-yield' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/rest-spread-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/semi-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/semi-style' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/semi' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/sort-imports' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/sort-keys' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/sort-vars' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/space-before-blocks' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/space-before-function-paren' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/space-in-parens' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/space-infix-ops' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/space-unary-ops' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/spaced-comment' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/strict' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/switch-colon-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/symbol-description' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/template-curly-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/template-tag-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/unicode-bom' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/use-isnan' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/valid-jsdoc' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/valid-typeof' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/vars-on-top' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/wrap-iife' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/wrap-regex' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/yield-star-spacing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/rules/yoda' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/testers/rule-tester' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/backward-token-comment-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/backward-token-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/cursors' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/decorative-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/filter-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/forward-token-comment-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/forward-token-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/limit-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/padded-token-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/skip-cursor' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/token-store/utils' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/ajv' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/apply-disable-directives' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/ast-utils' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/config-comment-parser' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/file-finder' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/fix-tracker' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/glob-utils' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/glob' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/hash' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/ignored-paths' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/interpolate' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/keywords' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/lint-result-cache' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/logging' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/module-resolver' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/naming' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/node-event-generator' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/npm-utils' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/path-utils' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/patterns/letters' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/report-translator' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/rule-fixer' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/safe-emitter' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/source-code-fixer' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/source-code-utils' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/source-code' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/timing' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/traverser' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/unicode' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/unicode/is-combining-character' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/unicode/is-emoji-modifier' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/unicode/is-regional-indicator-symbol' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/unicode/is-surrogate-pair' {
- declare module.exports: any;
-}
-
-declare module 'eslint/lib/util/xml-escape' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'eslint/bin/eslint.js' {
- declare module.exports: $Exports<'eslint/bin/eslint'>;
-}
-declare module 'eslint/conf/config-schema.js' {
- declare module.exports: $Exports<'eslint/conf/config-schema'>;
-}
-declare module 'eslint/conf/default-cli-options.js' {
- declare module.exports: $Exports<'eslint/conf/default-cli-options'>;
-}
-declare module 'eslint/conf/environments.js' {
- declare module.exports: $Exports<'eslint/conf/environments'>;
-}
-declare module 'eslint/conf/eslint-all.js' {
- declare module.exports: $Exports<'eslint/conf/eslint-all'>;
-}
-declare module 'eslint/conf/eslint-recommended.js' {
- declare module.exports: $Exports<'eslint/conf/eslint-recommended'>;
-}
-declare module 'eslint/lib/api.js' {
- declare module.exports: $Exports<'eslint/lib/api'>;
-}
-declare module 'eslint/lib/built-in-rules-index.js' {
- declare module.exports: $Exports<'eslint/lib/built-in-rules-index'>;
-}
-declare module 'eslint/lib/cli-engine.js' {
- declare module.exports: $Exports<'eslint/lib/cli-engine'>;
-}
-declare module 'eslint/lib/cli.js' {
- declare module.exports: $Exports<'eslint/lib/cli'>;
-}
-declare module 'eslint/lib/code-path-analysis/code-path-analyzer.js' {
- declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-analyzer'>;
-}
-declare module 'eslint/lib/code-path-analysis/code-path-segment.js' {
- declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-segment'>;
-}
-declare module 'eslint/lib/code-path-analysis/code-path-state.js' {
- declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-state'>;
-}
-declare module 'eslint/lib/code-path-analysis/code-path.js' {
- declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path'>;
-}
-declare module 'eslint/lib/code-path-analysis/debug-helpers.js' {
- declare module.exports: $Exports<'eslint/lib/code-path-analysis/debug-helpers'>;
-}
-declare module 'eslint/lib/code-path-analysis/fork-context.js' {
- declare module.exports: $Exports<'eslint/lib/code-path-analysis/fork-context'>;
-}
-declare module 'eslint/lib/code-path-analysis/id-generator.js' {
- declare module.exports: $Exports<'eslint/lib/code-path-analysis/id-generator'>;
-}
-declare module 'eslint/lib/config.js' {
- declare module.exports: $Exports<'eslint/lib/config'>;
-}
-declare module 'eslint/lib/config/autoconfig.js' {
- declare module.exports: $Exports<'eslint/lib/config/autoconfig'>;
-}
-declare module 'eslint/lib/config/config-cache.js' {
- declare module.exports: $Exports<'eslint/lib/config/config-cache'>;
-}
-declare module 'eslint/lib/config/config-file.js' {
- declare module.exports: $Exports<'eslint/lib/config/config-file'>;
-}
-declare module 'eslint/lib/config/config-initializer.js' {
- declare module.exports: $Exports<'eslint/lib/config/config-initializer'>;
-}
-declare module 'eslint/lib/config/config-ops.js' {
- declare module.exports: $Exports<'eslint/lib/config/config-ops'>;
-}
-declare module 'eslint/lib/config/config-rule.js' {
- declare module.exports: $Exports<'eslint/lib/config/config-rule'>;
-}
-declare module 'eslint/lib/config/config-validator.js' {
- declare module.exports: $Exports<'eslint/lib/config/config-validator'>;
-}
-declare module 'eslint/lib/config/environments.js' {
- declare module.exports: $Exports<'eslint/lib/config/environments'>;
-}
-declare module 'eslint/lib/config/plugins.js' {
- declare module.exports: $Exports<'eslint/lib/config/plugins'>;
-}
-declare module 'eslint/lib/formatters/checkstyle.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/checkstyle'>;
-}
-declare module 'eslint/lib/formatters/codeframe.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/codeframe'>;
-}
-declare module 'eslint/lib/formatters/compact.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/compact'>;
-}
-declare module 'eslint/lib/formatters/html.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/html'>;
-}
-declare module 'eslint/lib/formatters/jslint-xml.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/jslint-xml'>;
-}
-declare module 'eslint/lib/formatters/json-with-metadata.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/json-with-metadata'>;
-}
-declare module 'eslint/lib/formatters/json.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/json'>;
-}
-declare module 'eslint/lib/formatters/junit.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/junit'>;
-}
-declare module 'eslint/lib/formatters/stylish.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/stylish'>;
-}
-declare module 'eslint/lib/formatters/table.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/table'>;
-}
-declare module 'eslint/lib/formatters/tap.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/tap'>;
-}
-declare module 'eslint/lib/formatters/unix.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/unix'>;
-}
-declare module 'eslint/lib/formatters/visualstudio.js' {
- declare module.exports: $Exports<'eslint/lib/formatters/visualstudio'>;
-}
-declare module 'eslint/lib/linter.js' {
- declare module.exports: $Exports<'eslint/lib/linter'>;
-}
-declare module 'eslint/lib/load-rules.js' {
- declare module.exports: $Exports<'eslint/lib/load-rules'>;
-}
-declare module 'eslint/lib/options.js' {
- declare module.exports: $Exports<'eslint/lib/options'>;
-}
-declare module 'eslint/lib/rules.js' {
- declare module.exports: $Exports<'eslint/lib/rules'>;
-}
-declare module 'eslint/lib/rules/accessor-pairs.js' {
- declare module.exports: $Exports<'eslint/lib/rules/accessor-pairs'>;
-}
-declare module 'eslint/lib/rules/array-bracket-newline.js' {
- declare module.exports: $Exports<'eslint/lib/rules/array-bracket-newline'>;
-}
-declare module 'eslint/lib/rules/array-bracket-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/array-bracket-spacing'>;
-}
-declare module 'eslint/lib/rules/array-callback-return.js' {
- declare module.exports: $Exports<'eslint/lib/rules/array-callback-return'>;
-}
-declare module 'eslint/lib/rules/array-element-newline.js' {
- declare module.exports: $Exports<'eslint/lib/rules/array-element-newline'>;
-}
-declare module 'eslint/lib/rules/arrow-body-style.js' {
- declare module.exports: $Exports<'eslint/lib/rules/arrow-body-style'>;
-}
-declare module 'eslint/lib/rules/arrow-parens.js' {
- declare module.exports: $Exports<'eslint/lib/rules/arrow-parens'>;
-}
-declare module 'eslint/lib/rules/arrow-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/arrow-spacing'>;
-}
-declare module 'eslint/lib/rules/block-scoped-var.js' {
- declare module.exports: $Exports<'eslint/lib/rules/block-scoped-var'>;
-}
-declare module 'eslint/lib/rules/block-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/block-spacing'>;
-}
-declare module 'eslint/lib/rules/brace-style.js' {
- declare module.exports: $Exports<'eslint/lib/rules/brace-style'>;
-}
-declare module 'eslint/lib/rules/callback-return.js' {
- declare module.exports: $Exports<'eslint/lib/rules/callback-return'>;
-}
-declare module 'eslint/lib/rules/camelcase.js' {
- declare module.exports: $Exports<'eslint/lib/rules/camelcase'>;
-}
-declare module 'eslint/lib/rules/capitalized-comments.js' {
- declare module.exports: $Exports<'eslint/lib/rules/capitalized-comments'>;
-}
-declare module 'eslint/lib/rules/class-methods-use-this.js' {
- declare module.exports: $Exports<'eslint/lib/rules/class-methods-use-this'>;
-}
-declare module 'eslint/lib/rules/comma-dangle.js' {
- declare module.exports: $Exports<'eslint/lib/rules/comma-dangle'>;
-}
-declare module 'eslint/lib/rules/comma-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/comma-spacing'>;
-}
-declare module 'eslint/lib/rules/comma-style.js' {
- declare module.exports: $Exports<'eslint/lib/rules/comma-style'>;
-}
-declare module 'eslint/lib/rules/complexity.js' {
- declare module.exports: $Exports<'eslint/lib/rules/complexity'>;
-}
-declare module 'eslint/lib/rules/computed-property-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/computed-property-spacing'>;
-}
-declare module 'eslint/lib/rules/consistent-return.js' {
- declare module.exports: $Exports<'eslint/lib/rules/consistent-return'>;
-}
-declare module 'eslint/lib/rules/consistent-this.js' {
- declare module.exports: $Exports<'eslint/lib/rules/consistent-this'>;
-}
-declare module 'eslint/lib/rules/constructor-super.js' {
- declare module.exports: $Exports<'eslint/lib/rules/constructor-super'>;
-}
-declare module 'eslint/lib/rules/curly.js' {
- declare module.exports: $Exports<'eslint/lib/rules/curly'>;
-}
-declare module 'eslint/lib/rules/default-case.js' {
- declare module.exports: $Exports<'eslint/lib/rules/default-case'>;
-}
-declare module 'eslint/lib/rules/dot-location.js' {
- declare module.exports: $Exports<'eslint/lib/rules/dot-location'>;
-}
-declare module 'eslint/lib/rules/dot-notation.js' {
- declare module.exports: $Exports<'eslint/lib/rules/dot-notation'>;
-}
-declare module 'eslint/lib/rules/eol-last.js' {
- declare module.exports: $Exports<'eslint/lib/rules/eol-last'>;
-}
-declare module 'eslint/lib/rules/eqeqeq.js' {
- declare module.exports: $Exports<'eslint/lib/rules/eqeqeq'>;
-}
-declare module 'eslint/lib/rules/for-direction.js' {
- declare module.exports: $Exports<'eslint/lib/rules/for-direction'>;
-}
-declare module 'eslint/lib/rules/func-call-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/func-call-spacing'>;
-}
-declare module 'eslint/lib/rules/func-name-matching.js' {
- declare module.exports: $Exports<'eslint/lib/rules/func-name-matching'>;
-}
-declare module 'eslint/lib/rules/func-names.js' {
- declare module.exports: $Exports<'eslint/lib/rules/func-names'>;
-}
-declare module 'eslint/lib/rules/func-style.js' {
- declare module.exports: $Exports<'eslint/lib/rules/func-style'>;
-}
-declare module 'eslint/lib/rules/function-paren-newline.js' {
- declare module.exports: $Exports<'eslint/lib/rules/function-paren-newline'>;
-}
-declare module 'eslint/lib/rules/generator-star-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/generator-star-spacing'>;
-}
-declare module 'eslint/lib/rules/getter-return.js' {
- declare module.exports: $Exports<'eslint/lib/rules/getter-return'>;
-}
-declare module 'eslint/lib/rules/global-require.js' {
- declare module.exports: $Exports<'eslint/lib/rules/global-require'>;
-}
-declare module 'eslint/lib/rules/guard-for-in.js' {
- declare module.exports: $Exports<'eslint/lib/rules/guard-for-in'>;
-}
-declare module 'eslint/lib/rules/handle-callback-err.js' {
- declare module.exports: $Exports<'eslint/lib/rules/handle-callback-err'>;
-}
-declare module 'eslint/lib/rules/id-blacklist.js' {
- declare module.exports: $Exports<'eslint/lib/rules/id-blacklist'>;
-}
-declare module 'eslint/lib/rules/id-length.js' {
- declare module.exports: $Exports<'eslint/lib/rules/id-length'>;
-}
-declare module 'eslint/lib/rules/id-match.js' {
- declare module.exports: $Exports<'eslint/lib/rules/id-match'>;
-}
-declare module 'eslint/lib/rules/implicit-arrow-linebreak.js' {
- declare module.exports: $Exports<'eslint/lib/rules/implicit-arrow-linebreak'>;
-}
-declare module 'eslint/lib/rules/indent-legacy.js' {
- declare module.exports: $Exports<'eslint/lib/rules/indent-legacy'>;
-}
-declare module 'eslint/lib/rules/indent.js' {
- declare module.exports: $Exports<'eslint/lib/rules/indent'>;
-}
-declare module 'eslint/lib/rules/init-declarations.js' {
- declare module.exports: $Exports<'eslint/lib/rules/init-declarations'>;
-}
-declare module 'eslint/lib/rules/jsx-quotes.js' {
- declare module.exports: $Exports<'eslint/lib/rules/jsx-quotes'>;
-}
-declare module 'eslint/lib/rules/key-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/key-spacing'>;
-}
-declare module 'eslint/lib/rules/keyword-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/keyword-spacing'>;
-}
-declare module 'eslint/lib/rules/line-comment-position.js' {
- declare module.exports: $Exports<'eslint/lib/rules/line-comment-position'>;
-}
-declare module 'eslint/lib/rules/linebreak-style.js' {
- declare module.exports: $Exports<'eslint/lib/rules/linebreak-style'>;
-}
-declare module 'eslint/lib/rules/lines-around-comment.js' {
- declare module.exports: $Exports<'eslint/lib/rules/lines-around-comment'>;
-}
-declare module 'eslint/lib/rules/lines-around-directive.js' {
- declare module.exports: $Exports<'eslint/lib/rules/lines-around-directive'>;
-}
-declare module 'eslint/lib/rules/lines-between-class-members.js' {
- declare module.exports: $Exports<'eslint/lib/rules/lines-between-class-members'>;
-}
-declare module 'eslint/lib/rules/max-classes-per-file.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-classes-per-file'>;
-}
-declare module 'eslint/lib/rules/max-depth.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-depth'>;
-}
-declare module 'eslint/lib/rules/max-len.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-len'>;
-}
-declare module 'eslint/lib/rules/max-lines-per-function.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-lines-per-function'>;
-}
-declare module 'eslint/lib/rules/max-lines.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-lines'>;
-}
-declare module 'eslint/lib/rules/max-nested-callbacks.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-nested-callbacks'>;
-}
-declare module 'eslint/lib/rules/max-params.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-params'>;
-}
-declare module 'eslint/lib/rules/max-statements-per-line.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-statements-per-line'>;
-}
-declare module 'eslint/lib/rules/max-statements.js' {
- declare module.exports: $Exports<'eslint/lib/rules/max-statements'>;
-}
-declare module 'eslint/lib/rules/multiline-comment-style.js' {
- declare module.exports: $Exports<'eslint/lib/rules/multiline-comment-style'>;
-}
-declare module 'eslint/lib/rules/multiline-ternary.js' {
- declare module.exports: $Exports<'eslint/lib/rules/multiline-ternary'>;
-}
-declare module 'eslint/lib/rules/new-cap.js' {
- declare module.exports: $Exports<'eslint/lib/rules/new-cap'>;
-}
-declare module 'eslint/lib/rules/new-parens.js' {
- declare module.exports: $Exports<'eslint/lib/rules/new-parens'>;
-}
-declare module 'eslint/lib/rules/newline-after-var.js' {
- declare module.exports: $Exports<'eslint/lib/rules/newline-after-var'>;
-}
-declare module 'eslint/lib/rules/newline-before-return.js' {
- declare module.exports: $Exports<'eslint/lib/rules/newline-before-return'>;
-}
-declare module 'eslint/lib/rules/newline-per-chained-call.js' {
- declare module.exports: $Exports<'eslint/lib/rules/newline-per-chained-call'>;
-}
-declare module 'eslint/lib/rules/no-alert.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-alert'>;
-}
-declare module 'eslint/lib/rules/no-array-constructor.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-array-constructor'>;
-}
-declare module 'eslint/lib/rules/no-async-promise-executor.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-async-promise-executor'>;
-}
-declare module 'eslint/lib/rules/no-await-in-loop.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-await-in-loop'>;
-}
-declare module 'eslint/lib/rules/no-bitwise.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-bitwise'>;
-}
-declare module 'eslint/lib/rules/no-buffer-constructor.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-buffer-constructor'>;
-}
-declare module 'eslint/lib/rules/no-caller.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-caller'>;
-}
-declare module 'eslint/lib/rules/no-case-declarations.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-case-declarations'>;
-}
-declare module 'eslint/lib/rules/no-catch-shadow.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-catch-shadow'>;
-}
-declare module 'eslint/lib/rules/no-class-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-class-assign'>;
-}
-declare module 'eslint/lib/rules/no-compare-neg-zero.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-compare-neg-zero'>;
-}
-declare module 'eslint/lib/rules/no-cond-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-cond-assign'>;
-}
-declare module 'eslint/lib/rules/no-confusing-arrow.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-confusing-arrow'>;
-}
-declare module 'eslint/lib/rules/no-console.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-console'>;
-}
-declare module 'eslint/lib/rules/no-const-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-const-assign'>;
-}
-declare module 'eslint/lib/rules/no-constant-condition.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-constant-condition'>;
-}
-declare module 'eslint/lib/rules/no-continue.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-continue'>;
-}
-declare module 'eslint/lib/rules/no-control-regex.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-control-regex'>;
-}
-declare module 'eslint/lib/rules/no-debugger.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-debugger'>;
-}
-declare module 'eslint/lib/rules/no-delete-var.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-delete-var'>;
-}
-declare module 'eslint/lib/rules/no-div-regex.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-div-regex'>;
-}
-declare module 'eslint/lib/rules/no-dupe-args.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-dupe-args'>;
-}
-declare module 'eslint/lib/rules/no-dupe-class-members.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-dupe-class-members'>;
-}
-declare module 'eslint/lib/rules/no-dupe-keys.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-dupe-keys'>;
-}
-declare module 'eslint/lib/rules/no-duplicate-case.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-duplicate-case'>;
-}
-declare module 'eslint/lib/rules/no-duplicate-imports.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-duplicate-imports'>;
-}
-declare module 'eslint/lib/rules/no-else-return.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-else-return'>;
-}
-declare module 'eslint/lib/rules/no-empty-character-class.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-empty-character-class'>;
-}
-declare module 'eslint/lib/rules/no-empty-function.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-empty-function'>;
-}
-declare module 'eslint/lib/rules/no-empty-pattern.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-empty-pattern'>;
-}
-declare module 'eslint/lib/rules/no-empty.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-empty'>;
-}
-declare module 'eslint/lib/rules/no-eq-null.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-eq-null'>;
-}
-declare module 'eslint/lib/rules/no-eval.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-eval'>;
-}
-declare module 'eslint/lib/rules/no-ex-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-ex-assign'>;
-}
-declare module 'eslint/lib/rules/no-extend-native.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-extend-native'>;
-}
-declare module 'eslint/lib/rules/no-extra-bind.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-extra-bind'>;
-}
-declare module 'eslint/lib/rules/no-extra-boolean-cast.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-extra-boolean-cast'>;
-}
-declare module 'eslint/lib/rules/no-extra-label.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-extra-label'>;
-}
-declare module 'eslint/lib/rules/no-extra-parens.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-extra-parens'>;
-}
-declare module 'eslint/lib/rules/no-extra-semi.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-extra-semi'>;
-}
-declare module 'eslint/lib/rules/no-fallthrough.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-fallthrough'>;
-}
-declare module 'eslint/lib/rules/no-floating-decimal.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-floating-decimal'>;
-}
-declare module 'eslint/lib/rules/no-func-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-func-assign'>;
-}
-declare module 'eslint/lib/rules/no-global-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-global-assign'>;
-}
-declare module 'eslint/lib/rules/no-implicit-coercion.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-implicit-coercion'>;
-}
-declare module 'eslint/lib/rules/no-implicit-globals.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-implicit-globals'>;
-}
-declare module 'eslint/lib/rules/no-implied-eval.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-implied-eval'>;
-}
-declare module 'eslint/lib/rules/no-inline-comments.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-inline-comments'>;
-}
-declare module 'eslint/lib/rules/no-inner-declarations.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-inner-declarations'>;
-}
-declare module 'eslint/lib/rules/no-invalid-regexp.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-invalid-regexp'>;
-}
-declare module 'eslint/lib/rules/no-invalid-this.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-invalid-this'>;
-}
-declare module 'eslint/lib/rules/no-irregular-whitespace.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-irregular-whitespace'>;
-}
-declare module 'eslint/lib/rules/no-iterator.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-iterator'>;
-}
-declare module 'eslint/lib/rules/no-label-var.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-label-var'>;
-}
-declare module 'eslint/lib/rules/no-labels.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-labels'>;
-}
-declare module 'eslint/lib/rules/no-lone-blocks.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-lone-blocks'>;
-}
-declare module 'eslint/lib/rules/no-lonely-if.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-lonely-if'>;
-}
-declare module 'eslint/lib/rules/no-loop-func.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-loop-func'>;
-}
-declare module 'eslint/lib/rules/no-magic-numbers.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-magic-numbers'>;
-}
-declare module 'eslint/lib/rules/no-misleading-character-class.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-misleading-character-class'>;
-}
-declare module 'eslint/lib/rules/no-mixed-operators.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-mixed-operators'>;
-}
-declare module 'eslint/lib/rules/no-mixed-requires.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-mixed-requires'>;
-}
-declare module 'eslint/lib/rules/no-mixed-spaces-and-tabs.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-mixed-spaces-and-tabs'>;
-}
-declare module 'eslint/lib/rules/no-multi-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-multi-assign'>;
-}
-declare module 'eslint/lib/rules/no-multi-spaces.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-multi-spaces'>;
-}
-declare module 'eslint/lib/rules/no-multi-str.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-multi-str'>;
-}
-declare module 'eslint/lib/rules/no-multiple-empty-lines.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-multiple-empty-lines'>;
-}
-declare module 'eslint/lib/rules/no-native-reassign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-native-reassign'>;
-}
-declare module 'eslint/lib/rules/no-negated-condition.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-negated-condition'>;
-}
-declare module 'eslint/lib/rules/no-negated-in-lhs.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-negated-in-lhs'>;
-}
-declare module 'eslint/lib/rules/no-nested-ternary.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-nested-ternary'>;
-}
-declare module 'eslint/lib/rules/no-new-func.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-new-func'>;
-}
-declare module 'eslint/lib/rules/no-new-object.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-new-object'>;
-}
-declare module 'eslint/lib/rules/no-new-require.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-new-require'>;
-}
-declare module 'eslint/lib/rules/no-new-symbol.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-new-symbol'>;
-}
-declare module 'eslint/lib/rules/no-new-wrappers.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-new-wrappers'>;
-}
-declare module 'eslint/lib/rules/no-new.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-new'>;
-}
-declare module 'eslint/lib/rules/no-obj-calls.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-obj-calls'>;
-}
-declare module 'eslint/lib/rules/no-octal-escape.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-octal-escape'>;
-}
-declare module 'eslint/lib/rules/no-octal.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-octal'>;
-}
-declare module 'eslint/lib/rules/no-param-reassign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-param-reassign'>;
-}
-declare module 'eslint/lib/rules/no-path-concat.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-path-concat'>;
-}
-declare module 'eslint/lib/rules/no-plusplus.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-plusplus'>;
-}
-declare module 'eslint/lib/rules/no-process-env.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-process-env'>;
-}
-declare module 'eslint/lib/rules/no-process-exit.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-process-exit'>;
-}
-declare module 'eslint/lib/rules/no-proto.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-proto'>;
-}
-declare module 'eslint/lib/rules/no-prototype-builtins.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-prototype-builtins'>;
-}
-declare module 'eslint/lib/rules/no-redeclare.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-redeclare'>;
-}
-declare module 'eslint/lib/rules/no-regex-spaces.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-regex-spaces'>;
-}
-declare module 'eslint/lib/rules/no-restricted-globals.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-restricted-globals'>;
-}
-declare module 'eslint/lib/rules/no-restricted-imports.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-restricted-imports'>;
-}
-declare module 'eslint/lib/rules/no-restricted-modules.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-restricted-modules'>;
-}
-declare module 'eslint/lib/rules/no-restricted-properties.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-restricted-properties'>;
-}
-declare module 'eslint/lib/rules/no-restricted-syntax.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-restricted-syntax'>;
-}
-declare module 'eslint/lib/rules/no-return-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-return-assign'>;
-}
-declare module 'eslint/lib/rules/no-return-await.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-return-await'>;
-}
-declare module 'eslint/lib/rules/no-script-url.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-script-url'>;
-}
-declare module 'eslint/lib/rules/no-self-assign.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-self-assign'>;
-}
-declare module 'eslint/lib/rules/no-self-compare.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-self-compare'>;
-}
-declare module 'eslint/lib/rules/no-sequences.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-sequences'>;
-}
-declare module 'eslint/lib/rules/no-shadow-restricted-names.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-shadow-restricted-names'>;
-}
-declare module 'eslint/lib/rules/no-shadow.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-shadow'>;
-}
-declare module 'eslint/lib/rules/no-spaced-func.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-spaced-func'>;
-}
-declare module 'eslint/lib/rules/no-sparse-arrays.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-sparse-arrays'>;
-}
-declare module 'eslint/lib/rules/no-sync.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-sync'>;
-}
-declare module 'eslint/lib/rules/no-tabs.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-tabs'>;
-}
-declare module 'eslint/lib/rules/no-template-curly-in-string.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-template-curly-in-string'>;
-}
-declare module 'eslint/lib/rules/no-ternary.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-ternary'>;
-}
-declare module 'eslint/lib/rules/no-this-before-super.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-this-before-super'>;
-}
-declare module 'eslint/lib/rules/no-throw-literal.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-throw-literal'>;
-}
-declare module 'eslint/lib/rules/no-trailing-spaces.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-trailing-spaces'>;
-}
-declare module 'eslint/lib/rules/no-undef-init.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-undef-init'>;
-}
-declare module 'eslint/lib/rules/no-undef.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-undef'>;
-}
-declare module 'eslint/lib/rules/no-undefined.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-undefined'>;
-}
-declare module 'eslint/lib/rules/no-underscore-dangle.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-underscore-dangle'>;
-}
-declare module 'eslint/lib/rules/no-unexpected-multiline.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unexpected-multiline'>;
-}
-declare module 'eslint/lib/rules/no-unmodified-loop-condition.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unmodified-loop-condition'>;
-}
-declare module 'eslint/lib/rules/no-unneeded-ternary.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unneeded-ternary'>;
-}
-declare module 'eslint/lib/rules/no-unreachable.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unreachable'>;
-}
-declare module 'eslint/lib/rules/no-unsafe-finally.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unsafe-finally'>;
-}
-declare module 'eslint/lib/rules/no-unsafe-negation.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unsafe-negation'>;
-}
-declare module 'eslint/lib/rules/no-unused-expressions.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unused-expressions'>;
-}
-declare module 'eslint/lib/rules/no-unused-labels.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unused-labels'>;
-}
-declare module 'eslint/lib/rules/no-unused-vars.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-unused-vars'>;
-}
-declare module 'eslint/lib/rules/no-use-before-define.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-use-before-define'>;
-}
-declare module 'eslint/lib/rules/no-useless-call.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-useless-call'>;
-}
-declare module 'eslint/lib/rules/no-useless-catch.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-useless-catch'>;
-}
-declare module 'eslint/lib/rules/no-useless-computed-key.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-useless-computed-key'>;
-}
-declare module 'eslint/lib/rules/no-useless-concat.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-useless-concat'>;
-}
-declare module 'eslint/lib/rules/no-useless-constructor.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-useless-constructor'>;
-}
-declare module 'eslint/lib/rules/no-useless-escape.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-useless-escape'>;
-}
-declare module 'eslint/lib/rules/no-useless-rename.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-useless-rename'>;
-}
-declare module 'eslint/lib/rules/no-useless-return.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-useless-return'>;
-}
-declare module 'eslint/lib/rules/no-var.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-var'>;
-}
-declare module 'eslint/lib/rules/no-void.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-void'>;
-}
-declare module 'eslint/lib/rules/no-warning-comments.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-warning-comments'>;
-}
-declare module 'eslint/lib/rules/no-whitespace-before-property.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-whitespace-before-property'>;
-}
-declare module 'eslint/lib/rules/no-with.js' {
- declare module.exports: $Exports<'eslint/lib/rules/no-with'>;
-}
-declare module 'eslint/lib/rules/nonblock-statement-body-position.js' {
- declare module.exports: $Exports<'eslint/lib/rules/nonblock-statement-body-position'>;
-}
-declare module 'eslint/lib/rules/object-curly-newline.js' {
- declare module.exports: $Exports<'eslint/lib/rules/object-curly-newline'>;
-}
-declare module 'eslint/lib/rules/object-curly-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/object-curly-spacing'>;
-}
-declare module 'eslint/lib/rules/object-property-newline.js' {
- declare module.exports: $Exports<'eslint/lib/rules/object-property-newline'>;
-}
-declare module 'eslint/lib/rules/object-shorthand.js' {
- declare module.exports: $Exports<'eslint/lib/rules/object-shorthand'>;
-}
-declare module 'eslint/lib/rules/one-var-declaration-per-line.js' {
- declare module.exports: $Exports<'eslint/lib/rules/one-var-declaration-per-line'>;
-}
-declare module 'eslint/lib/rules/one-var.js' {
- declare module.exports: $Exports<'eslint/lib/rules/one-var'>;
-}
-declare module 'eslint/lib/rules/operator-assignment.js' {
- declare module.exports: $Exports<'eslint/lib/rules/operator-assignment'>;
-}
-declare module 'eslint/lib/rules/operator-linebreak.js' {
- declare module.exports: $Exports<'eslint/lib/rules/operator-linebreak'>;
-}
-declare module 'eslint/lib/rules/padded-blocks.js' {
- declare module.exports: $Exports<'eslint/lib/rules/padded-blocks'>;
-}
-declare module 'eslint/lib/rules/padding-line-between-statements.js' {
- declare module.exports: $Exports<'eslint/lib/rules/padding-line-between-statements'>;
-}
-declare module 'eslint/lib/rules/prefer-arrow-callback.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-arrow-callback'>;
-}
-declare module 'eslint/lib/rules/prefer-const.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-const'>;
-}
-declare module 'eslint/lib/rules/prefer-destructuring.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-destructuring'>;
-}
-declare module 'eslint/lib/rules/prefer-named-capture-group.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-named-capture-group'>;
-}
-declare module 'eslint/lib/rules/prefer-numeric-literals.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-numeric-literals'>;
-}
-declare module 'eslint/lib/rules/prefer-object-spread.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-object-spread'>;
-}
-declare module 'eslint/lib/rules/prefer-promise-reject-errors.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-promise-reject-errors'>;
-}
-declare module 'eslint/lib/rules/prefer-reflect.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-reflect'>;
-}
-declare module 'eslint/lib/rules/prefer-rest-params.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-rest-params'>;
-}
-declare module 'eslint/lib/rules/prefer-spread.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-spread'>;
-}
-declare module 'eslint/lib/rules/prefer-template.js' {
- declare module.exports: $Exports<'eslint/lib/rules/prefer-template'>;
-}
-declare module 'eslint/lib/rules/quote-props.js' {
- declare module.exports: $Exports<'eslint/lib/rules/quote-props'>;
-}
-declare module 'eslint/lib/rules/quotes.js' {
- declare module.exports: $Exports<'eslint/lib/rules/quotes'>;
-}
-declare module 'eslint/lib/rules/radix.js' {
- declare module.exports: $Exports<'eslint/lib/rules/radix'>;
-}
-declare module 'eslint/lib/rules/require-atomic-updates.js' {
- declare module.exports: $Exports<'eslint/lib/rules/require-atomic-updates'>;
-}
-declare module 'eslint/lib/rules/require-await.js' {
- declare module.exports: $Exports<'eslint/lib/rules/require-await'>;
-}
-declare module 'eslint/lib/rules/require-jsdoc.js' {
- declare module.exports: $Exports<'eslint/lib/rules/require-jsdoc'>;
-}
-declare module 'eslint/lib/rules/require-unicode-regexp.js' {
- declare module.exports: $Exports<'eslint/lib/rules/require-unicode-regexp'>;
-}
-declare module 'eslint/lib/rules/require-yield.js' {
- declare module.exports: $Exports<'eslint/lib/rules/require-yield'>;
-}
-declare module 'eslint/lib/rules/rest-spread-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/rest-spread-spacing'>;
-}
-declare module 'eslint/lib/rules/semi-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/semi-spacing'>;
-}
-declare module 'eslint/lib/rules/semi-style.js' {
- declare module.exports: $Exports<'eslint/lib/rules/semi-style'>;
-}
-declare module 'eslint/lib/rules/semi.js' {
- declare module.exports: $Exports<'eslint/lib/rules/semi'>;
-}
-declare module 'eslint/lib/rules/sort-imports.js' {
- declare module.exports: $Exports<'eslint/lib/rules/sort-imports'>;
-}
-declare module 'eslint/lib/rules/sort-keys.js' {
- declare module.exports: $Exports<'eslint/lib/rules/sort-keys'>;
-}
-declare module 'eslint/lib/rules/sort-vars.js' {
- declare module.exports: $Exports<'eslint/lib/rules/sort-vars'>;
-}
-declare module 'eslint/lib/rules/space-before-blocks.js' {
- declare module.exports: $Exports<'eslint/lib/rules/space-before-blocks'>;
-}
-declare module 'eslint/lib/rules/space-before-function-paren.js' {
- declare module.exports: $Exports<'eslint/lib/rules/space-before-function-paren'>;
-}
-declare module 'eslint/lib/rules/space-in-parens.js' {
- declare module.exports: $Exports<'eslint/lib/rules/space-in-parens'>;
-}
-declare module 'eslint/lib/rules/space-infix-ops.js' {
- declare module.exports: $Exports<'eslint/lib/rules/space-infix-ops'>;
-}
-declare module 'eslint/lib/rules/space-unary-ops.js' {
- declare module.exports: $Exports<'eslint/lib/rules/space-unary-ops'>;
-}
-declare module 'eslint/lib/rules/spaced-comment.js' {
- declare module.exports: $Exports<'eslint/lib/rules/spaced-comment'>;
-}
-declare module 'eslint/lib/rules/strict.js' {
- declare module.exports: $Exports<'eslint/lib/rules/strict'>;
-}
-declare module 'eslint/lib/rules/switch-colon-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/switch-colon-spacing'>;
-}
-declare module 'eslint/lib/rules/symbol-description.js' {
- declare module.exports: $Exports<'eslint/lib/rules/symbol-description'>;
-}
-declare module 'eslint/lib/rules/template-curly-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/template-curly-spacing'>;
-}
-declare module 'eslint/lib/rules/template-tag-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/template-tag-spacing'>;
-}
-declare module 'eslint/lib/rules/unicode-bom.js' {
- declare module.exports: $Exports<'eslint/lib/rules/unicode-bom'>;
-}
-declare module 'eslint/lib/rules/use-isnan.js' {
- declare module.exports: $Exports<'eslint/lib/rules/use-isnan'>;
-}
-declare module 'eslint/lib/rules/valid-jsdoc.js' {
- declare module.exports: $Exports<'eslint/lib/rules/valid-jsdoc'>;
-}
-declare module 'eslint/lib/rules/valid-typeof.js' {
- declare module.exports: $Exports<'eslint/lib/rules/valid-typeof'>;
-}
-declare module 'eslint/lib/rules/vars-on-top.js' {
- declare module.exports: $Exports<'eslint/lib/rules/vars-on-top'>;
-}
-declare module 'eslint/lib/rules/wrap-iife.js' {
- declare module.exports: $Exports<'eslint/lib/rules/wrap-iife'>;
-}
-declare module 'eslint/lib/rules/wrap-regex.js' {
- declare module.exports: $Exports<'eslint/lib/rules/wrap-regex'>;
-}
-declare module 'eslint/lib/rules/yield-star-spacing.js' {
- declare module.exports: $Exports<'eslint/lib/rules/yield-star-spacing'>;
-}
-declare module 'eslint/lib/rules/yoda.js' {
- declare module.exports: $Exports<'eslint/lib/rules/yoda'>;
-}
-declare module 'eslint/lib/testers/rule-tester.js' {
- declare module.exports: $Exports<'eslint/lib/testers/rule-tester'>;
-}
-declare module 'eslint/lib/token-store/backward-token-comment-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/backward-token-comment-cursor'>;
-}
-declare module 'eslint/lib/token-store/backward-token-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/backward-token-cursor'>;
-}
-declare module 'eslint/lib/token-store/cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/cursor'>;
-}
-declare module 'eslint/lib/token-store/cursors.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/cursors'>;
-}
-declare module 'eslint/lib/token-store/decorative-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/decorative-cursor'>;
-}
-declare module 'eslint/lib/token-store/filter-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/filter-cursor'>;
-}
-declare module 'eslint/lib/token-store/forward-token-comment-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/forward-token-comment-cursor'>;
-}
-declare module 'eslint/lib/token-store/forward-token-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/forward-token-cursor'>;
-}
-declare module 'eslint/lib/token-store/index' {
- declare module.exports: $Exports<'eslint/lib/token-store'>;
-}
-declare module 'eslint/lib/token-store/index.js' {
- declare module.exports: $Exports<'eslint/lib/token-store'>;
-}
-declare module 'eslint/lib/token-store/limit-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/limit-cursor'>;
-}
-declare module 'eslint/lib/token-store/padded-token-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/padded-token-cursor'>;
-}
-declare module 'eslint/lib/token-store/skip-cursor.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/skip-cursor'>;
-}
-declare module 'eslint/lib/token-store/utils.js' {
- declare module.exports: $Exports<'eslint/lib/token-store/utils'>;
-}
-declare module 'eslint/lib/util/ajv.js' {
- declare module.exports: $Exports<'eslint/lib/util/ajv'>;
-}
-declare module 'eslint/lib/util/apply-disable-directives.js' {
- declare module.exports: $Exports<'eslint/lib/util/apply-disable-directives'>;
-}
-declare module 'eslint/lib/util/ast-utils.js' {
- declare module.exports: $Exports<'eslint/lib/util/ast-utils'>;
-}
-declare module 'eslint/lib/util/config-comment-parser.js' {
- declare module.exports: $Exports<'eslint/lib/util/config-comment-parser'>;
-}
-declare module 'eslint/lib/util/file-finder.js' {
- declare module.exports: $Exports<'eslint/lib/util/file-finder'>;
-}
-declare module 'eslint/lib/util/fix-tracker.js' {
- declare module.exports: $Exports<'eslint/lib/util/fix-tracker'>;
-}
-declare module 'eslint/lib/util/glob-utils.js' {
- declare module.exports: $Exports<'eslint/lib/util/glob-utils'>;
-}
-declare module 'eslint/lib/util/glob.js' {
- declare module.exports: $Exports<'eslint/lib/util/glob'>;
-}
-declare module 'eslint/lib/util/hash.js' {
- declare module.exports: $Exports<'eslint/lib/util/hash'>;
-}
-declare module 'eslint/lib/util/ignored-paths.js' {
- declare module.exports: $Exports<'eslint/lib/util/ignored-paths'>;
-}
-declare module 'eslint/lib/util/interpolate.js' {
- declare module.exports: $Exports<'eslint/lib/util/interpolate'>;
-}
-declare module 'eslint/lib/util/keywords.js' {
- declare module.exports: $Exports<'eslint/lib/util/keywords'>;
-}
-declare module 'eslint/lib/util/lint-result-cache.js' {
- declare module.exports: $Exports<'eslint/lib/util/lint-result-cache'>;
-}
-declare module 'eslint/lib/util/logging.js' {
- declare module.exports: $Exports<'eslint/lib/util/logging'>;
-}
-declare module 'eslint/lib/util/module-resolver.js' {
- declare module.exports: $Exports<'eslint/lib/util/module-resolver'>;
-}
-declare module 'eslint/lib/util/naming.js' {
- declare module.exports: $Exports<'eslint/lib/util/naming'>;
-}
-declare module 'eslint/lib/util/node-event-generator.js' {
- declare module.exports: $Exports<'eslint/lib/util/node-event-generator'>;
-}
-declare module 'eslint/lib/util/npm-utils.js' {
- declare module.exports: $Exports<'eslint/lib/util/npm-utils'>;
-}
-declare module 'eslint/lib/util/path-utils.js' {
- declare module.exports: $Exports<'eslint/lib/util/path-utils'>;
-}
-declare module 'eslint/lib/util/patterns/letters.js' {
- declare module.exports: $Exports<'eslint/lib/util/patterns/letters'>;
-}
-declare module 'eslint/lib/util/report-translator.js' {
- declare module.exports: $Exports<'eslint/lib/util/report-translator'>;
-}
-declare module 'eslint/lib/util/rule-fixer.js' {
- declare module.exports: $Exports<'eslint/lib/util/rule-fixer'>;
-}
-declare module 'eslint/lib/util/safe-emitter.js' {
- declare module.exports: $Exports<'eslint/lib/util/safe-emitter'>;
-}
-declare module 'eslint/lib/util/source-code-fixer.js' {
- declare module.exports: $Exports<'eslint/lib/util/source-code-fixer'>;
-}
-declare module 'eslint/lib/util/source-code-utils.js' {
- declare module.exports: $Exports<'eslint/lib/util/source-code-utils'>;
-}
-declare module 'eslint/lib/util/source-code.js' {
- declare module.exports: $Exports<'eslint/lib/util/source-code'>;
-}
-declare module 'eslint/lib/util/timing.js' {
- declare module.exports: $Exports<'eslint/lib/util/timing'>;
-}
-declare module 'eslint/lib/util/traverser.js' {
- declare module.exports: $Exports<'eslint/lib/util/traverser'>;
-}
-declare module 'eslint/lib/util/unicode/index' {
- declare module.exports: $Exports<'eslint/lib/util/unicode'>;
-}
-declare module 'eslint/lib/util/unicode/index.js' {
- declare module.exports: $Exports<'eslint/lib/util/unicode'>;
-}
-declare module 'eslint/lib/util/unicode/is-combining-character.js' {
- declare module.exports: $Exports<'eslint/lib/util/unicode/is-combining-character'>;
-}
-declare module 'eslint/lib/util/unicode/is-emoji-modifier.js' {
- declare module.exports: $Exports<'eslint/lib/util/unicode/is-emoji-modifier'>;
-}
-declare module 'eslint/lib/util/unicode/is-regional-indicator-symbol.js' {
- declare module.exports: $Exports<'eslint/lib/util/unicode/is-regional-indicator-symbol'>;
-}
-declare module 'eslint/lib/util/unicode/is-surrogate-pair.js' {
- declare module.exports: $Exports<'eslint/lib/util/unicode/is-surrogate-pair'>;
-}
-declare module 'eslint/lib/util/xml-escape.js' {
- declare module.exports: $Exports<'eslint/lib/util/xml-escape'>;
-}
diff --git a/flow-typed/npm/jest-cli_vx.x.x.js b/flow-typed/npm/jest-cli_vx.x.x.js
index 8ede40ca..78bfc552 100644
--- a/flow-typed/npm/jest-cli_vx.x.x.js
+++ b/flow-typed/npm/jest-cli_vx.x.x.js
@@ -1,5 +1,5 @@
-// flow-typed signature: a3e1c5dd34afab1829512930507aa77d
-// flow-typed version: <>/jest-cli_v^22.0.0/flow_v0.104.0
+// flow-typed signature: 183e49aaca3629a8ab82ccddf677fafa
+// flow-typed version: <>/jest-cli_v^26.0.0/flow_v0.104.0
/**
* This is an autogenerated libdef stub for:
@@ -26,10 +26,6 @@ declare module 'jest-cli/bin/jest' {
declare module.exports: any;
}
-declare module 'jest-cli/build/base_watch_plugin' {
- declare module.exports: any;
-}
-
declare module 'jest-cli/build/cli/args' {
declare module.exports: any;
}
@@ -38,227 +34,31 @@ declare module 'jest-cli/build/cli' {
declare module.exports: any;
}
-declare module 'jest-cli/build/constants' {
+declare module 'jest-cli/build' {
declare module.exports: any;
}
-declare module 'jest-cli/build/failed_tests_cache' {
+declare module 'jest-cli/build/init/errors' {
declare module.exports: any;
}
-declare module 'jest-cli/build/generate_empty_coverage' {
+declare module 'jest-cli/build/init/generate_config_file' {
declare module.exports: any;
}
-declare module 'jest-cli/build/get_changed_files_promise' {
+declare module 'jest-cli/build/init' {
declare module.exports: any;
}
-declare module 'jest-cli/build/get_no_test_found_failed' {
+declare module 'jest-cli/build/init/modify_package_json' {
declare module.exports: any;
}
-declare module 'jest-cli/build/get_no_test_found_message' {
+declare module 'jest-cli/build/init/questions' {
declare module.exports: any;
}
-declare module 'jest-cli/build/get_no_test_found_related_to_changed_files' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/get_no_test_found_verbose' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/get_no_test_found' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/jest_hooks' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/jest' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/active_filters_message' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/colorize' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/create_context' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/format_test_name_by_pattern' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/handle_deprecation_warnings' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/is_valid_path' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/log_debug_messages' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/pattern_mode_helpers' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/Prompt' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/scroll_list' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/terminal_utils' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/lib/update_global_config' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/pattern_prompt' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/plugins/quit' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/plugins/test_name_pattern' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/plugins/test_path_pattern' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/plugins/update_snapshots_interactive' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/plugins/update_snapshots' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/pluralize' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/pre_run_message' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporter_dispatcher' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/base_reporter' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/coverage_reporter' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/coverage_worker' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/default_reporter' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/get_result_header' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/get_snapshot_status' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/get_snapshot_summary' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/notify_reporter' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/Status' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/summary_reporter' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/utils' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/reporters/verbose_reporter' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/run_jest' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/search_source' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/snapshot_interactive_mode' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/test_name_pattern_prompt' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/test_path_pattern_prompt' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/test_path_pattern_to_regexp' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/test_result_helpers' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/test_scheduler' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/test_sequencer' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/test_watcher' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/types' {
- declare module.exports: any;
-}
-
-declare module 'jest-cli/build/watch' {
+declare module 'jest-cli/build/init/types' {
declare module.exports: any;
}
@@ -266,9 +66,6 @@ declare module 'jest-cli/build/watch' {
declare module 'jest-cli/bin/jest.js' {
declare module.exports: $Exports<'jest-cli/bin/jest'>;
}
-declare module 'jest-cli/build/base_watch_plugin.js' {
- declare module.exports: $Exports<'jest-cli/build/base_watch_plugin'>;
-}
declare module 'jest-cli/build/cli/args.js' {
declare module.exports: $Exports<'jest-cli/build/cli/args'>;
}
@@ -278,171 +75,30 @@ declare module 'jest-cli/build/cli/index' {
declare module 'jest-cli/build/cli/index.js' {
declare module.exports: $Exports<'jest-cli/build/cli'>;
}
-declare module 'jest-cli/build/constants.js' {
- declare module.exports: $Exports<'jest-cli/build/constants'>;
+declare module 'jest-cli/build/index' {
+ declare module.exports: $Exports<'jest-cli/build'>;
}
-declare module 'jest-cli/build/failed_tests_cache.js' {
- declare module.exports: $Exports<'jest-cli/build/failed_tests_cache'>;
+declare module 'jest-cli/build/index.js' {
+ declare module.exports: $Exports<'jest-cli/build'>;
}
-declare module 'jest-cli/build/generate_empty_coverage.js' {
- declare module.exports: $Exports<'jest-cli/build/generate_empty_coverage'>;
+declare module 'jest-cli/build/init/errors.js' {
+ declare module.exports: $Exports<'jest-cli/build/init/errors'>;
}
-declare module 'jest-cli/build/get_changed_files_promise.js' {
- declare module.exports: $Exports<'jest-cli/build/get_changed_files_promise'>;
+declare module 'jest-cli/build/init/generate_config_file.js' {
+ declare module.exports: $Exports<'jest-cli/build/init/generate_config_file'>;
}
-declare module 'jest-cli/build/get_no_test_found_failed.js' {
- declare module.exports: $Exports<'jest-cli/build/get_no_test_found_failed'>;
+declare module 'jest-cli/build/init/index' {
+ declare module.exports: $Exports<'jest-cli/build/init'>;
}
-declare module 'jest-cli/build/get_no_test_found_message.js' {
- declare module.exports: $Exports<'jest-cli/build/get_no_test_found_message'>;
+declare module 'jest-cli/build/init/index.js' {
+ declare module.exports: $Exports<'jest-cli/build/init'>;
}
-declare module 'jest-cli/build/get_no_test_found_related_to_changed_files.js' {
- declare module.exports: $Exports<'jest-cli/build/get_no_test_found_related_to_changed_files'>;
+declare module 'jest-cli/build/init/modify_package_json.js' {
+ declare module.exports: $Exports<'jest-cli/build/init/modify_package_json'>;
}
-declare module 'jest-cli/build/get_no_test_found_verbose.js' {
- declare module.exports: $Exports<'jest-cli/build/get_no_test_found_verbose'>;
+declare module 'jest-cli/build/init/questions.js' {
+ declare module.exports: $Exports<'jest-cli/build/init/questions'>;
}
-declare module 'jest-cli/build/get_no_test_found.js' {
- declare module.exports: $Exports<'jest-cli/build/get_no_test_found'>;
-}
-declare module 'jest-cli/build/jest_hooks.js' {
- declare module.exports: $Exports<'jest-cli/build/jest_hooks'>;
-}
-declare module 'jest-cli/build/jest.js' {
- declare module.exports: $Exports<'jest-cli/build/jest'>;
-}
-declare module 'jest-cli/build/lib/active_filters_message.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/active_filters_message'>;
-}
-declare module 'jest-cli/build/lib/colorize.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/colorize'>;
-}
-declare module 'jest-cli/build/lib/create_context.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/create_context'>;
-}
-declare module 'jest-cli/build/lib/format_test_name_by_pattern.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/format_test_name_by_pattern'>;
-}
-declare module 'jest-cli/build/lib/handle_deprecation_warnings.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/handle_deprecation_warnings'>;
-}
-declare module 'jest-cli/build/lib/is_valid_path.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/is_valid_path'>;
-}
-declare module 'jest-cli/build/lib/log_debug_messages.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/log_debug_messages'>;
-}
-declare module 'jest-cli/build/lib/pattern_mode_helpers.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/pattern_mode_helpers'>;
-}
-declare module 'jest-cli/build/lib/Prompt.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/Prompt'>;
-}
-declare module 'jest-cli/build/lib/scroll_list.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/scroll_list'>;
-}
-declare module 'jest-cli/build/lib/terminal_utils.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/terminal_utils'>;
-}
-declare module 'jest-cli/build/lib/update_global_config.js' {
- declare module.exports: $Exports<'jest-cli/build/lib/update_global_config'>;
-}
-declare module 'jest-cli/build/pattern_prompt.js' {
- declare module.exports: $Exports<'jest-cli/build/pattern_prompt'>;
-}
-declare module 'jest-cli/build/plugins/quit.js' {
- declare module.exports: $Exports<'jest-cli/build/plugins/quit'>;
-}
-declare module 'jest-cli/build/plugins/test_name_pattern.js' {
- declare module.exports: $Exports<'jest-cli/build/plugins/test_name_pattern'>;
-}
-declare module 'jest-cli/build/plugins/test_path_pattern.js' {
- declare module.exports: $Exports<'jest-cli/build/plugins/test_path_pattern'>;
-}
-declare module 'jest-cli/build/plugins/update_snapshots_interactive.js' {
- declare module.exports: $Exports<'jest-cli/build/plugins/update_snapshots_interactive'>;
-}
-declare module 'jest-cli/build/plugins/update_snapshots.js' {
- declare module.exports: $Exports<'jest-cli/build/plugins/update_snapshots'>;
-}
-declare module 'jest-cli/build/pluralize.js' {
- declare module.exports: $Exports<'jest-cli/build/pluralize'>;
-}
-declare module 'jest-cli/build/pre_run_message.js' {
- declare module.exports: $Exports<'jest-cli/build/pre_run_message'>;
-}
-declare module 'jest-cli/build/reporter_dispatcher.js' {
- declare module.exports: $Exports<'jest-cli/build/reporter_dispatcher'>;
-}
-declare module 'jest-cli/build/reporters/base_reporter.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/base_reporter'>;
-}
-declare module 'jest-cli/build/reporters/coverage_reporter.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/coverage_reporter'>;
-}
-declare module 'jest-cli/build/reporters/coverage_worker.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/coverage_worker'>;
-}
-declare module 'jest-cli/build/reporters/default_reporter.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/default_reporter'>;
-}
-declare module 'jest-cli/build/reporters/get_result_header.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/get_result_header'>;
-}
-declare module 'jest-cli/build/reporters/get_snapshot_status.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/get_snapshot_status'>;
-}
-declare module 'jest-cli/build/reporters/get_snapshot_summary.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/get_snapshot_summary'>;
-}
-declare module 'jest-cli/build/reporters/notify_reporter.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/notify_reporter'>;
-}
-declare module 'jest-cli/build/reporters/Status.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/Status'>;
-}
-declare module 'jest-cli/build/reporters/summary_reporter.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/summary_reporter'>;
-}
-declare module 'jest-cli/build/reporters/utils.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/utils'>;
-}
-declare module 'jest-cli/build/reporters/verbose_reporter.js' {
- declare module.exports: $Exports<'jest-cli/build/reporters/verbose_reporter'>;
-}
-declare module 'jest-cli/build/run_jest.js' {
- declare module.exports: $Exports<'jest-cli/build/run_jest'>;
-}
-declare module 'jest-cli/build/search_source.js' {
- declare module.exports: $Exports<'jest-cli/build/search_source'>;
-}
-declare module 'jest-cli/build/snapshot_interactive_mode.js' {
- declare module.exports: $Exports<'jest-cli/build/snapshot_interactive_mode'>;
-}
-declare module 'jest-cli/build/test_name_pattern_prompt.js' {
- declare module.exports: $Exports<'jest-cli/build/test_name_pattern_prompt'>;
-}
-declare module 'jest-cli/build/test_path_pattern_prompt.js' {
- declare module.exports: $Exports<'jest-cli/build/test_path_pattern_prompt'>;
-}
-declare module 'jest-cli/build/test_path_pattern_to_regexp.js' {
- declare module.exports: $Exports<'jest-cli/build/test_path_pattern_to_regexp'>;
-}
-declare module 'jest-cli/build/test_result_helpers.js' {
- declare module.exports: $Exports<'jest-cli/build/test_result_helpers'>;
-}
-declare module 'jest-cli/build/test_scheduler.js' {
- declare module.exports: $Exports<'jest-cli/build/test_scheduler'>;
-}
-declare module 'jest-cli/build/test_sequencer.js' {
- declare module.exports: $Exports<'jest-cli/build/test_sequencer'>;
-}
-declare module 'jest-cli/build/test_watcher.js' {
- declare module.exports: $Exports<'jest-cli/build/test_watcher'>;
-}
-declare module 'jest-cli/build/types.js' {
- declare module.exports: $Exports<'jest-cli/build/types'>;
-}
-declare module 'jest-cli/build/watch.js' {
- declare module.exports: $Exports<'jest-cli/build/watch'>;
+declare module 'jest-cli/build/init/types.js' {
+ declare module.exports: $Exports<'jest-cli/build/init/types'>;
}
diff --git a/flow-typed/npm/rich-markdown-editor_vx.x.x.js b/flow-typed/npm/rich-markdown-editor_vx.x.x.js
index d873b041..ed48f274 100644
--- a/flow-typed/npm/rich-markdown-editor_vx.x.x.js
+++ b/flow-typed/npm/rich-markdown-editor_vx.x.x.js
@@ -1,5 +1,5 @@
-// flow-typed signature: 1ba062f9b609753470358be976e2701e
-// flow-typed version: <>/rich-markdown-editor_v^10.5.0-1/flow_v0.104.0
+// flow-typed signature: 9f6f0a5c149e0eac61df8762f869d628
+// flow-typed version: <>/rich-markdown-editor_v^10.5.0/flow_v0.104.0
/**
* This is an autogenerated libdef stub for:
diff --git a/flow-typed/npm/webpack-manifest-plugin_vx.x.x.js b/flow-typed/npm/webpack-manifest-plugin_vx.x.x.js
deleted file mode 100644
index 7ddb2fd5..00000000
--- a/flow-typed/npm/webpack-manifest-plugin_vx.x.x.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// flow-typed signature: 692f1e203bdcd12eab5b76b027f69742
-// flow-typed version: <>/webpack-manifest-plugin_v^1.3.2/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'webpack-manifest-plugin'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'webpack-manifest-plugin' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'webpack-manifest-plugin/lib/plugin' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'webpack-manifest-plugin/index' {
- declare module.exports: $Exports<'webpack-manifest-plugin'>;
-}
-declare module 'webpack-manifest-plugin/index.js' {
- declare module.exports: $Exports<'webpack-manifest-plugin'>;
-}
-declare module 'webpack-manifest-plugin/lib/plugin.js' {
- declare module.exports: $Exports<'webpack-manifest-plugin/lib/plugin'>;
-}
diff --git a/flow-typed/npm/webpack_vx.x.x.js b/flow-typed/npm/webpack_vx.x.x.js
deleted file mode 100644
index 8e21818d..00000000
--- a/flow-typed/npm/webpack_vx.x.x.js
+++ /dev/null
@@ -1,1957 +0,0 @@
-// flow-typed signature: de09b486a333f70b5d920a3a51128afb
-// flow-typed version: <>/webpack_v3.10.0/flow_v0.104.0
-
-/**
- * This is an autogenerated libdef stub for:
- *
- * 'webpack'
- *
- * Fill this stub out by replacing all the `any` types.
- *
- * Once filled out, we encourage you to share your work with the
- * community by sending a pull request to:
- * https://github.com/flowtype/flow-typed
- */
-
-declare module 'webpack' {
- declare module.exports: any;
-}
-
-/**
- * We include stubs for each file inside this npm package in case you need to
- * require those files directly. Feel free to delete any files that aren't
- * needed.
- */
-declare module 'webpack/bin/config-optimist' {
- declare module.exports: any;
-}
-
-declare module 'webpack/bin/config-yargs' {
- declare module.exports: any;
-}
-
-declare module 'webpack/bin/convert-argv' {
- declare module.exports: any;
-}
-
-declare module 'webpack/bin/webpack' {
- declare module.exports: any;
-}
-
-declare module 'webpack/buildin/amd-define' {
- declare module.exports: any;
-}
-
-declare module 'webpack/buildin/amd-options' {
- declare module.exports: any;
-}
-
-declare module 'webpack/buildin/global' {
- declare module.exports: any;
-}
-
-declare module 'webpack/buildin/harmony-module' {
- declare module.exports: any;
-}
-
-declare module 'webpack/buildin/module' {
- declare module.exports: any;
-}
-
-declare module 'webpack/buildin/system' {
- declare module.exports: any;
-}
-
-declare module 'webpack/hot/dev-server' {
- declare module.exports: any;
-}
-
-declare module 'webpack/hot/emitter' {
- declare module.exports: any;
-}
-
-declare module 'webpack/hot/log-apply-result' {
- declare module.exports: any;
-}
-
-declare module 'webpack/hot/log' {
- declare module.exports: any;
-}
-
-declare module 'webpack/hot/only-dev-server' {
- declare module.exports: any;
-}
-
-declare module 'webpack/hot/poll' {
- declare module.exports: any;
-}
-
-declare module 'webpack/hot/signal' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/AmdMainTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/APIPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/AsyncDependenciesBlock' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/AsyncDependencyToInitialChunkWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/AutomaticPrefetchPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/BannerPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/BasicEvaluatedExpression' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/CachePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/CaseSensitiveModulesWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Chunk' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ChunkRenderError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ChunkTemplate' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/compareLocations' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/CompatibilityPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Compilation' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Compiler' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ConstPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ContextExclusionPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ContextModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ContextModuleFactory' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ContextReplacementPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DefinePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DelegatedModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DelegatedModuleFactoryPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DelegatedPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDDefineDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDDefineDependencyParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDRequireArrayDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDRequireContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlock' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDRequireDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/AMDRequireItemDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/CommonJsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/CommonJsRequireContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/CommonJsRequireDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ConstDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ContextDependencyHelpers' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsId' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ContextElementDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/CriticalDependencyWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/DelegatedExportsDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/DelegatedSourceDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/DepBlockHelpers' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/DllEntryDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/getFunctionExpression' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyAcceptDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyAcceptImportDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyCompatibilityDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyDetectionParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyExportExpressionDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyExportHeaderDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyExportSpecifierDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyImportDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyImportSpecifierDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyModulesHelpers' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/HarmonyModulesPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportDependenciesBlock' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportEagerContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportEagerDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportLazyContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportLazyOnceContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportWeakContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ImportWeakDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/LoaderDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/LoaderPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/LocalModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/LocalModuleDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/LocalModulesHelpers' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ModuleDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsId' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ModuleHotAcceptDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/ModuleHotDeclineDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/MultiEntryDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/NullDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/PrefetchDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireContextDependencyParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireContextPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlock' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireEnsureDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireEnsureItemDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireEnsurePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireHeaderDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireIncludeDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireIncludePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireResolveContextDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireResolveDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireResolveDependencyParserPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/RequireResolveHeaderDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/SingleEntryDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/SystemPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/UnsupportedDependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/dependencies/WebpackMissingModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DependenciesBlock' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DependenciesBlockVariable' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Dependency' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DllEntryPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DllModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DllModuleFactory' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DllPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DllReferencePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/DynamicEntryPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/EntryModuleNotFoundError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/EntryOptionPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Entrypoint' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/EnvironmentPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ErrorHelpers' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/EvalDevToolModulePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/EvalDevToolModuleTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/EvalSourceMapDevToolPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ExportPropertyMainTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ExtendedAPIPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ExternalModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ExternalModuleFactoryPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ExternalsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/FlagDependencyExportsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/FlagDependencyUsagePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/FlagInitialModulesAsUsedPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/formatLocation' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/FunctionModulePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/FunctionModuleTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/HashedModuleIdsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/HotModuleReplacement.runtime' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/HotModuleReplacementPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/HotUpdateChunkTemplate' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/IgnorePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/JsonpChunkTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/JsonpExportMainTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/JsonpHotUpdateChunkTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/JsonpMainTemplate.runtime' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/JsonpMainTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/JsonpTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/LibManifestPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/LibraryTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/LoaderOptionsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/LoaderTargetPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MainTemplate' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MemoryOutputFileSystem' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Module' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleBuildError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleDependencyError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleDependencyWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleFilenameHelpers' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleNotFoundError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleParseError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleReason' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleTemplate' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ModuleWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MovedToPluginWarningPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MultiCompiler' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MultiEntryPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MultiModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MultiModuleFactory' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MultiStats' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/MultiWatching' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NamedChunksPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NamedModulesPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NewWatchingPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeChunkTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeEnvironmentPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeMainTemplate.runtime' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeMainTemplateAsync.runtime' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeMainTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeOutputFileSystem' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeSourcePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeTargetPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/node/NodeWatchFileSystem' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NodeStuffPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NoEmitOnErrorsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NoErrorsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NormalModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NormalModuleFactory' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NormalModuleReplacementPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/NullFactory' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/AggressiveMergingPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/AggressiveSplittingPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/ChunkModuleIdRangePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/CommonsChunkPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/ConcatenatedModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/DedupePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/EnsureChunkConditionsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/FlagIncludedChunksPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/LimitChunkCountPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/MergeDuplicateChunksPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/MinChunkSizePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/ModuleConcatenationPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/OccurrenceOrderPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/RemoveEmptyChunksPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/RemoveParentModulesPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/optimize/UglifyJsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/OptionsApply' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/OptionsDefaulter' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Parser' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ParserHelpers' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/performance/AssetsOverSizeLimitWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/performance/EntrypointsOverSizeLimitWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/performance/NoAsyncChunksWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/performance/SizeLimitsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/PrefetchPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/prepareOptions' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ProgressPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/ProvidePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/RawModule' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/RecordIdsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/removeAndDo' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/RequestShortener' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/RequireJsStuffPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/RuleSet' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/SetVarMainTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/SingleEntryPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/SizeFormatHelpers' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/SourceMapDevToolModuleOptionsPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/SourceMapDevToolPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Stats' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/Template' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/TemplatedPathPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/UmdMainTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/UnsupportedFeatureWarning' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/UseStrictPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/util/identifier' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/util/Queue' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/util/Semaphore' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/util/SortableSet' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/validateSchema' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/WarnCaseSensitiveModulesPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/WatchIgnorePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/web/WebEnvironmentPlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/webpack' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/webpack.web' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/WebpackError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/WebpackOptionsApply' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/WebpackOptionsDefaulter' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/WebpackOptionsValidationError' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/webworker/WebWorkerChunkTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/webworker/WebWorkerMainTemplate.runtime' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/webworker/WebWorkerMainTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/lib/webworker/WebWorkerTemplatePlugin' {
- declare module.exports: any;
-}
-
-declare module 'webpack/schemas/ajv.absolutePath' {
- declare module.exports: any;
-}
-
-declare module 'webpack/web_modules/node-libs-browser' {
- declare module.exports: any;
-}
-
-// Filename aliases
-declare module 'webpack/bin/config-optimist.js' {
- declare module.exports: $Exports<'webpack/bin/config-optimist'>;
-}
-declare module 'webpack/bin/config-yargs.js' {
- declare module.exports: $Exports<'webpack/bin/config-yargs'>;
-}
-declare module 'webpack/bin/convert-argv.js' {
- declare module.exports: $Exports<'webpack/bin/convert-argv'>;
-}
-declare module 'webpack/bin/webpack.js' {
- declare module.exports: $Exports<'webpack/bin/webpack'>;
-}
-declare module 'webpack/buildin/amd-define.js' {
- declare module.exports: $Exports<'webpack/buildin/amd-define'>;
-}
-declare module 'webpack/buildin/amd-options.js' {
- declare module.exports: $Exports<'webpack/buildin/amd-options'>;
-}
-declare module 'webpack/buildin/global.js' {
- declare module.exports: $Exports<'webpack/buildin/global'>;
-}
-declare module 'webpack/buildin/harmony-module.js' {
- declare module.exports: $Exports<'webpack/buildin/harmony-module'>;
-}
-declare module 'webpack/buildin/module.js' {
- declare module.exports: $Exports<'webpack/buildin/module'>;
-}
-declare module 'webpack/buildin/system.js' {
- declare module.exports: $Exports<'webpack/buildin/system'>;
-}
-declare module 'webpack/hot/dev-server.js' {
- declare module.exports: $Exports<'webpack/hot/dev-server'>;
-}
-declare module 'webpack/hot/emitter.js' {
- declare module.exports: $Exports<'webpack/hot/emitter'>;
-}
-declare module 'webpack/hot/log-apply-result.js' {
- declare module.exports: $Exports<'webpack/hot/log-apply-result'>;
-}
-declare module 'webpack/hot/log.js' {
- declare module.exports: $Exports<'webpack/hot/log'>;
-}
-declare module 'webpack/hot/only-dev-server.js' {
- declare module.exports: $Exports<'webpack/hot/only-dev-server'>;
-}
-declare module 'webpack/hot/poll.js' {
- declare module.exports: $Exports<'webpack/hot/poll'>;
-}
-declare module 'webpack/hot/signal.js' {
- declare module.exports: $Exports<'webpack/hot/signal'>;
-}
-declare module 'webpack/lib/AmdMainTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/AmdMainTemplatePlugin'>;
-}
-declare module 'webpack/lib/APIPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/APIPlugin'>;
-}
-declare module 'webpack/lib/AsyncDependenciesBlock.js' {
- declare module.exports: $Exports<'webpack/lib/AsyncDependenciesBlock'>;
-}
-declare module 'webpack/lib/AsyncDependencyToInitialChunkWarning.js' {
- declare module.exports: $Exports<'webpack/lib/AsyncDependencyToInitialChunkWarning'>;
-}
-declare module 'webpack/lib/AutomaticPrefetchPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/AutomaticPrefetchPlugin'>;
-}
-declare module 'webpack/lib/BannerPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/BannerPlugin'>;
-}
-declare module 'webpack/lib/BasicEvaluatedExpression.js' {
- declare module.exports: $Exports<'webpack/lib/BasicEvaluatedExpression'>;
-}
-declare module 'webpack/lib/CachePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/CachePlugin'>;
-}
-declare module 'webpack/lib/CaseSensitiveModulesWarning.js' {
- declare module.exports: $Exports<'webpack/lib/CaseSensitiveModulesWarning'>;
-}
-declare module 'webpack/lib/Chunk.js' {
- declare module.exports: $Exports<'webpack/lib/Chunk'>;
-}
-declare module 'webpack/lib/ChunkRenderError.js' {
- declare module.exports: $Exports<'webpack/lib/ChunkRenderError'>;
-}
-declare module 'webpack/lib/ChunkTemplate.js' {
- declare module.exports: $Exports<'webpack/lib/ChunkTemplate'>;
-}
-declare module 'webpack/lib/compareLocations.js' {
- declare module.exports: $Exports<'webpack/lib/compareLocations'>;
-}
-declare module 'webpack/lib/CompatibilityPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/CompatibilityPlugin'>;
-}
-declare module 'webpack/lib/Compilation.js' {
- declare module.exports: $Exports<'webpack/lib/Compilation'>;
-}
-declare module 'webpack/lib/Compiler.js' {
- declare module.exports: $Exports<'webpack/lib/Compiler'>;
-}
-declare module 'webpack/lib/ConstPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ConstPlugin'>;
-}
-declare module 'webpack/lib/ContextExclusionPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ContextExclusionPlugin'>;
-}
-declare module 'webpack/lib/ContextModule.js' {
- declare module.exports: $Exports<'webpack/lib/ContextModule'>;
-}
-declare module 'webpack/lib/ContextModuleFactory.js' {
- declare module.exports: $Exports<'webpack/lib/ContextModuleFactory'>;
-}
-declare module 'webpack/lib/ContextReplacementPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ContextReplacementPlugin'>;
-}
-declare module 'webpack/lib/DefinePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/DefinePlugin'>;
-}
-declare module 'webpack/lib/DelegatedModule.js' {
- declare module.exports: $Exports<'webpack/lib/DelegatedModule'>;
-}
-declare module 'webpack/lib/DelegatedModuleFactoryPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/DelegatedModuleFactoryPlugin'>;
-}
-declare module 'webpack/lib/DelegatedPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/DelegatedPlugin'>;
-}
-declare module 'webpack/lib/dependencies/AMDDefineDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDDefineDependency'>;
-}
-declare module 'webpack/lib/dependencies/AMDDefineDependencyParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDDefineDependencyParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/AMDPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDPlugin'>;
-}
-declare module 'webpack/lib/dependencies/AMDRequireArrayDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireArrayDependency'>;
-}
-declare module 'webpack/lib/dependencies/AMDRequireContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlock.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependenciesBlock'>;
-}
-declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/AMDRequireDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependency'>;
-}
-declare module 'webpack/lib/dependencies/AMDRequireItemDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireItemDependency'>;
-}
-declare module 'webpack/lib/dependencies/CommonJsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsPlugin'>;
-}
-declare module 'webpack/lib/dependencies/CommonJsRequireContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/CommonJsRequireDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireDependency'>;
-}
-declare module 'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/ConstDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ConstDependency'>;
-}
-declare module 'webpack/lib/dependencies/ContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/ContextDependencyHelpers.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyHelpers'>;
-}
-declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsId.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyTemplateAsId'>;
-}
-declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall'>;
-}
-declare module 'webpack/lib/dependencies/ContextElementDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ContextElementDependency'>;
-}
-declare module 'webpack/lib/dependencies/CriticalDependencyWarning.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/CriticalDependencyWarning'>;
-}
-declare module 'webpack/lib/dependencies/DelegatedExportsDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/DelegatedExportsDependency'>;
-}
-declare module 'webpack/lib/dependencies/DelegatedSourceDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/DelegatedSourceDependency'>;
-}
-declare module 'webpack/lib/dependencies/DepBlockHelpers.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/DepBlockHelpers'>;
-}
-declare module 'webpack/lib/dependencies/DllEntryDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/DllEntryDependency'>;
-}
-declare module 'webpack/lib/dependencies/getFunctionExpression.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/getFunctionExpression'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyAcceptDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyAcceptDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyAcceptImportDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyAcceptImportDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyCompatibilityDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyCompatibilityDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyDetectionParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyDetectionParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyExportExpressionDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportExpressionDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyExportHeaderDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportHeaderDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyExportSpecifierDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportSpecifierDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyImportDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyImportSpecifierDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportSpecifierDependency'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyModulesHelpers.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyModulesHelpers'>;
-}
-declare module 'webpack/lib/dependencies/HarmonyModulesPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyModulesPlugin'>;
-}
-declare module 'webpack/lib/dependencies/ImportContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/ImportDependenciesBlock.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportDependenciesBlock'>;
-}
-declare module 'webpack/lib/dependencies/ImportDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportDependency'>;
-}
-declare module 'webpack/lib/dependencies/ImportEagerContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportEagerContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/ImportEagerDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportEagerDependency'>;
-}
-declare module 'webpack/lib/dependencies/ImportLazyContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportLazyContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/ImportLazyOnceContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportLazyOnceContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/ImportParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/ImportPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportPlugin'>;
-}
-declare module 'webpack/lib/dependencies/ImportWeakContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportWeakContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/ImportWeakDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ImportWeakDependency'>;
-}
-declare module 'webpack/lib/dependencies/LoaderDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/LoaderDependency'>;
-}
-declare module 'webpack/lib/dependencies/LoaderPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/LoaderPlugin'>;
-}
-declare module 'webpack/lib/dependencies/LocalModule.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/LocalModule'>;
-}
-declare module 'webpack/lib/dependencies/LocalModuleDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/LocalModuleDependency'>;
-}
-declare module 'webpack/lib/dependencies/LocalModulesHelpers.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/LocalModulesHelpers'>;
-}
-declare module 'webpack/lib/dependencies/ModuleDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependency'>;
-}
-declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsId.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependencyTemplateAsId'>;
-}
-declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId'>;
-}
-declare module 'webpack/lib/dependencies/ModuleHotAcceptDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ModuleHotAcceptDependency'>;
-}
-declare module 'webpack/lib/dependencies/ModuleHotDeclineDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/ModuleHotDeclineDependency'>;
-}
-declare module 'webpack/lib/dependencies/MultiEntryDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/MultiEntryDependency'>;
-}
-declare module 'webpack/lib/dependencies/NullDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/NullDependency'>;
-}
-declare module 'webpack/lib/dependencies/PrefetchDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/PrefetchDependency'>;
-}
-declare module 'webpack/lib/dependencies/RequireContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/RequireContextDependencyParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextDependencyParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/RequireContextPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextPlugin'>;
-}
-declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlock.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependenciesBlock'>;
-}
-declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/RequireEnsureDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependency'>;
-}
-declare module 'webpack/lib/dependencies/RequireEnsureItemDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureItemDependency'>;
-}
-declare module 'webpack/lib/dependencies/RequireEnsurePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsurePlugin'>;
-}
-declare module 'webpack/lib/dependencies/RequireHeaderDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireHeaderDependency'>;
-}
-declare module 'webpack/lib/dependencies/RequireIncludeDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludeDependency'>;
-}
-declare module 'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/RequireIncludePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludePlugin'>;
-}
-declare module 'webpack/lib/dependencies/RequireResolveContextDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveContextDependency'>;
-}
-declare module 'webpack/lib/dependencies/RequireResolveDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveDependency'>;
-}
-declare module 'webpack/lib/dependencies/RequireResolveDependencyParserPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveDependencyParserPlugin'>;
-}
-declare module 'webpack/lib/dependencies/RequireResolveHeaderDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveHeaderDependency'>;
-}
-declare module 'webpack/lib/dependencies/SingleEntryDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/SingleEntryDependency'>;
-}
-declare module 'webpack/lib/dependencies/SystemPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/SystemPlugin'>;
-}
-declare module 'webpack/lib/dependencies/UnsupportedDependency.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/UnsupportedDependency'>;
-}
-declare module 'webpack/lib/dependencies/WebpackMissingModule.js' {
- declare module.exports: $Exports<'webpack/lib/dependencies/WebpackMissingModule'>;
-}
-declare module 'webpack/lib/DependenciesBlock.js' {
- declare module.exports: $Exports<'webpack/lib/DependenciesBlock'>;
-}
-declare module 'webpack/lib/DependenciesBlockVariable.js' {
- declare module.exports: $Exports<'webpack/lib/DependenciesBlockVariable'>;
-}
-declare module 'webpack/lib/Dependency.js' {
- declare module.exports: $Exports<'webpack/lib/Dependency'>;
-}
-declare module 'webpack/lib/DllEntryPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/DllEntryPlugin'>;
-}
-declare module 'webpack/lib/DllModule.js' {
- declare module.exports: $Exports<'webpack/lib/DllModule'>;
-}
-declare module 'webpack/lib/DllModuleFactory.js' {
- declare module.exports: $Exports<'webpack/lib/DllModuleFactory'>;
-}
-declare module 'webpack/lib/DllPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/DllPlugin'>;
-}
-declare module 'webpack/lib/DllReferencePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/DllReferencePlugin'>;
-}
-declare module 'webpack/lib/DynamicEntryPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/DynamicEntryPlugin'>;
-}
-declare module 'webpack/lib/EntryModuleNotFoundError.js' {
- declare module.exports: $Exports<'webpack/lib/EntryModuleNotFoundError'>;
-}
-declare module 'webpack/lib/EntryOptionPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/EntryOptionPlugin'>;
-}
-declare module 'webpack/lib/Entrypoint.js' {
- declare module.exports: $Exports<'webpack/lib/Entrypoint'>;
-}
-declare module 'webpack/lib/EnvironmentPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/EnvironmentPlugin'>;
-}
-declare module 'webpack/lib/ErrorHelpers.js' {
- declare module.exports: $Exports<'webpack/lib/ErrorHelpers'>;
-}
-declare module 'webpack/lib/EvalDevToolModulePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/EvalDevToolModulePlugin'>;
-}
-declare module 'webpack/lib/EvalDevToolModuleTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/EvalDevToolModuleTemplatePlugin'>;
-}
-declare module 'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin'>;
-}
-declare module 'webpack/lib/EvalSourceMapDevToolPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/EvalSourceMapDevToolPlugin'>;
-}
-declare module 'webpack/lib/ExportPropertyMainTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ExportPropertyMainTemplatePlugin'>;
-}
-declare module 'webpack/lib/ExtendedAPIPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ExtendedAPIPlugin'>;
-}
-declare module 'webpack/lib/ExternalModule.js' {
- declare module.exports: $Exports<'webpack/lib/ExternalModule'>;
-}
-declare module 'webpack/lib/ExternalModuleFactoryPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ExternalModuleFactoryPlugin'>;
-}
-declare module 'webpack/lib/ExternalsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ExternalsPlugin'>;
-}
-declare module 'webpack/lib/FlagDependencyExportsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/FlagDependencyExportsPlugin'>;
-}
-declare module 'webpack/lib/FlagDependencyUsagePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/FlagDependencyUsagePlugin'>;
-}
-declare module 'webpack/lib/FlagInitialModulesAsUsedPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/FlagInitialModulesAsUsedPlugin'>;
-}
-declare module 'webpack/lib/formatLocation.js' {
- declare module.exports: $Exports<'webpack/lib/formatLocation'>;
-}
-declare module 'webpack/lib/FunctionModulePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/FunctionModulePlugin'>;
-}
-declare module 'webpack/lib/FunctionModuleTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/FunctionModuleTemplatePlugin'>;
-}
-declare module 'webpack/lib/HashedModuleIdsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/HashedModuleIdsPlugin'>;
-}
-declare module 'webpack/lib/HotModuleReplacement.runtime.js' {
- declare module.exports: $Exports<'webpack/lib/HotModuleReplacement.runtime'>;
-}
-declare module 'webpack/lib/HotModuleReplacementPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/HotModuleReplacementPlugin'>;
-}
-declare module 'webpack/lib/HotUpdateChunkTemplate.js' {
- declare module.exports: $Exports<'webpack/lib/HotUpdateChunkTemplate'>;
-}
-declare module 'webpack/lib/IgnorePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/IgnorePlugin'>;
-}
-declare module 'webpack/lib/JsonpChunkTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/JsonpChunkTemplatePlugin'>;
-}
-declare module 'webpack/lib/JsonpExportMainTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/JsonpExportMainTemplatePlugin'>;
-}
-declare module 'webpack/lib/JsonpHotUpdateChunkTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/JsonpHotUpdateChunkTemplatePlugin'>;
-}
-declare module 'webpack/lib/JsonpMainTemplate.runtime.js' {
- declare module.exports: $Exports<'webpack/lib/JsonpMainTemplate.runtime'>;
-}
-declare module 'webpack/lib/JsonpMainTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/JsonpMainTemplatePlugin'>;
-}
-declare module 'webpack/lib/JsonpTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/JsonpTemplatePlugin'>;
-}
-declare module 'webpack/lib/LibManifestPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/LibManifestPlugin'>;
-}
-declare module 'webpack/lib/LibraryTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/LibraryTemplatePlugin'>;
-}
-declare module 'webpack/lib/LoaderOptionsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/LoaderOptionsPlugin'>;
-}
-declare module 'webpack/lib/LoaderTargetPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/LoaderTargetPlugin'>;
-}
-declare module 'webpack/lib/MainTemplate.js' {
- declare module.exports: $Exports<'webpack/lib/MainTemplate'>;
-}
-declare module 'webpack/lib/MemoryOutputFileSystem.js' {
- declare module.exports: $Exports<'webpack/lib/MemoryOutputFileSystem'>;
-}
-declare module 'webpack/lib/Module.js' {
- declare module.exports: $Exports<'webpack/lib/Module'>;
-}
-declare module 'webpack/lib/ModuleBuildError.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleBuildError'>;
-}
-declare module 'webpack/lib/ModuleDependencyError.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleDependencyError'>;
-}
-declare module 'webpack/lib/ModuleDependencyWarning.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleDependencyWarning'>;
-}
-declare module 'webpack/lib/ModuleError.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleError'>;
-}
-declare module 'webpack/lib/ModuleFilenameHelpers.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleFilenameHelpers'>;
-}
-declare module 'webpack/lib/ModuleNotFoundError.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleNotFoundError'>;
-}
-declare module 'webpack/lib/ModuleParseError.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleParseError'>;
-}
-declare module 'webpack/lib/ModuleReason.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleReason'>;
-}
-declare module 'webpack/lib/ModuleTemplate.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleTemplate'>;
-}
-declare module 'webpack/lib/ModuleWarning.js' {
- declare module.exports: $Exports<'webpack/lib/ModuleWarning'>;
-}
-declare module 'webpack/lib/MovedToPluginWarningPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/MovedToPluginWarningPlugin'>;
-}
-declare module 'webpack/lib/MultiCompiler.js' {
- declare module.exports: $Exports<'webpack/lib/MultiCompiler'>;
-}
-declare module 'webpack/lib/MultiEntryPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/MultiEntryPlugin'>;
-}
-declare module 'webpack/lib/MultiModule.js' {
- declare module.exports: $Exports<'webpack/lib/MultiModule'>;
-}
-declare module 'webpack/lib/MultiModuleFactory.js' {
- declare module.exports: $Exports<'webpack/lib/MultiModuleFactory'>;
-}
-declare module 'webpack/lib/MultiStats.js' {
- declare module.exports: $Exports<'webpack/lib/MultiStats'>;
-}
-declare module 'webpack/lib/MultiWatching.js' {
- declare module.exports: $Exports<'webpack/lib/MultiWatching'>;
-}
-declare module 'webpack/lib/NamedChunksPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/NamedChunksPlugin'>;
-}
-declare module 'webpack/lib/NamedModulesPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/NamedModulesPlugin'>;
-}
-declare module 'webpack/lib/NewWatchingPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/NewWatchingPlugin'>;
-}
-declare module 'webpack/lib/node/NodeChunkTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeChunkTemplatePlugin'>;
-}
-declare module 'webpack/lib/node/NodeEnvironmentPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeEnvironmentPlugin'>;
-}
-declare module 'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin'>;
-}
-declare module 'webpack/lib/node/NodeMainTemplate.runtime.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplate.runtime'>;
-}
-declare module 'webpack/lib/node/NodeMainTemplateAsync.runtime.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplateAsync.runtime'>;
-}
-declare module 'webpack/lib/node/NodeMainTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplatePlugin'>;
-}
-declare module 'webpack/lib/node/NodeOutputFileSystem.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeOutputFileSystem'>;
-}
-declare module 'webpack/lib/node/NodeSourcePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeSourcePlugin'>;
-}
-declare module 'webpack/lib/node/NodeTargetPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeTargetPlugin'>;
-}
-declare module 'webpack/lib/node/NodeTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeTemplatePlugin'>;
-}
-declare module 'webpack/lib/node/NodeWatchFileSystem.js' {
- declare module.exports: $Exports<'webpack/lib/node/NodeWatchFileSystem'>;
-}
-declare module 'webpack/lib/NodeStuffPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/NodeStuffPlugin'>;
-}
-declare module 'webpack/lib/NoEmitOnErrorsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/NoEmitOnErrorsPlugin'>;
-}
-declare module 'webpack/lib/NoErrorsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/NoErrorsPlugin'>;
-}
-declare module 'webpack/lib/NormalModule.js' {
- declare module.exports: $Exports<'webpack/lib/NormalModule'>;
-}
-declare module 'webpack/lib/NormalModuleFactory.js' {
- declare module.exports: $Exports<'webpack/lib/NormalModuleFactory'>;
-}
-declare module 'webpack/lib/NormalModuleReplacementPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/NormalModuleReplacementPlugin'>;
-}
-declare module 'webpack/lib/NullFactory.js' {
- declare module.exports: $Exports<'webpack/lib/NullFactory'>;
-}
-declare module 'webpack/lib/optimize/AggressiveMergingPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/AggressiveMergingPlugin'>;
-}
-declare module 'webpack/lib/optimize/AggressiveSplittingPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/AggressiveSplittingPlugin'>;
-}
-declare module 'webpack/lib/optimize/ChunkModuleIdRangePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/ChunkModuleIdRangePlugin'>;
-}
-declare module 'webpack/lib/optimize/CommonsChunkPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/CommonsChunkPlugin'>;
-}
-declare module 'webpack/lib/optimize/ConcatenatedModule.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/ConcatenatedModule'>;
-}
-declare module 'webpack/lib/optimize/DedupePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/DedupePlugin'>;
-}
-declare module 'webpack/lib/optimize/EnsureChunkConditionsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/EnsureChunkConditionsPlugin'>;
-}
-declare module 'webpack/lib/optimize/FlagIncludedChunksPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/FlagIncludedChunksPlugin'>;
-}
-declare module 'webpack/lib/optimize/LimitChunkCountPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/LimitChunkCountPlugin'>;
-}
-declare module 'webpack/lib/optimize/MergeDuplicateChunksPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/MergeDuplicateChunksPlugin'>;
-}
-declare module 'webpack/lib/optimize/MinChunkSizePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/MinChunkSizePlugin'>;
-}
-declare module 'webpack/lib/optimize/ModuleConcatenationPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/ModuleConcatenationPlugin'>;
-}
-declare module 'webpack/lib/optimize/OccurrenceOrderPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/OccurrenceOrderPlugin'>;
-}
-declare module 'webpack/lib/optimize/RemoveEmptyChunksPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/RemoveEmptyChunksPlugin'>;
-}
-declare module 'webpack/lib/optimize/RemoveParentModulesPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/RemoveParentModulesPlugin'>;
-}
-declare module 'webpack/lib/optimize/UglifyJsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/optimize/UglifyJsPlugin'>;
-}
-declare module 'webpack/lib/OptionsApply.js' {
- declare module.exports: $Exports<'webpack/lib/OptionsApply'>;
-}
-declare module 'webpack/lib/OptionsDefaulter.js' {
- declare module.exports: $Exports<'webpack/lib/OptionsDefaulter'>;
-}
-declare module 'webpack/lib/Parser.js' {
- declare module.exports: $Exports<'webpack/lib/Parser'>;
-}
-declare module 'webpack/lib/ParserHelpers.js' {
- declare module.exports: $Exports<'webpack/lib/ParserHelpers'>;
-}
-declare module 'webpack/lib/performance/AssetsOverSizeLimitWarning.js' {
- declare module.exports: $Exports<'webpack/lib/performance/AssetsOverSizeLimitWarning'>;
-}
-declare module 'webpack/lib/performance/EntrypointsOverSizeLimitWarning.js' {
- declare module.exports: $Exports<'webpack/lib/performance/EntrypointsOverSizeLimitWarning'>;
-}
-declare module 'webpack/lib/performance/NoAsyncChunksWarning.js' {
- declare module.exports: $Exports<'webpack/lib/performance/NoAsyncChunksWarning'>;
-}
-declare module 'webpack/lib/performance/SizeLimitsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/performance/SizeLimitsPlugin'>;
-}
-declare module 'webpack/lib/PrefetchPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/PrefetchPlugin'>;
-}
-declare module 'webpack/lib/prepareOptions.js' {
- declare module.exports: $Exports<'webpack/lib/prepareOptions'>;
-}
-declare module 'webpack/lib/ProgressPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ProgressPlugin'>;
-}
-declare module 'webpack/lib/ProvidePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/ProvidePlugin'>;
-}
-declare module 'webpack/lib/RawModule.js' {
- declare module.exports: $Exports<'webpack/lib/RawModule'>;
-}
-declare module 'webpack/lib/RecordIdsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/RecordIdsPlugin'>;
-}
-declare module 'webpack/lib/removeAndDo.js' {
- declare module.exports: $Exports<'webpack/lib/removeAndDo'>;
-}
-declare module 'webpack/lib/RequestShortener.js' {
- declare module.exports: $Exports<'webpack/lib/RequestShortener'>;
-}
-declare module 'webpack/lib/RequireJsStuffPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/RequireJsStuffPlugin'>;
-}
-declare module 'webpack/lib/RuleSet.js' {
- declare module.exports: $Exports<'webpack/lib/RuleSet'>;
-}
-declare module 'webpack/lib/SetVarMainTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/SetVarMainTemplatePlugin'>;
-}
-declare module 'webpack/lib/SingleEntryPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/SingleEntryPlugin'>;
-}
-declare module 'webpack/lib/SizeFormatHelpers.js' {
- declare module.exports: $Exports<'webpack/lib/SizeFormatHelpers'>;
-}
-declare module 'webpack/lib/SourceMapDevToolModuleOptionsPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/SourceMapDevToolModuleOptionsPlugin'>;
-}
-declare module 'webpack/lib/SourceMapDevToolPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/SourceMapDevToolPlugin'>;
-}
-declare module 'webpack/lib/Stats.js' {
- declare module.exports: $Exports<'webpack/lib/Stats'>;
-}
-declare module 'webpack/lib/Template.js' {
- declare module.exports: $Exports<'webpack/lib/Template'>;
-}
-declare module 'webpack/lib/TemplatedPathPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/TemplatedPathPlugin'>;
-}
-declare module 'webpack/lib/UmdMainTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/UmdMainTemplatePlugin'>;
-}
-declare module 'webpack/lib/UnsupportedFeatureWarning.js' {
- declare module.exports: $Exports<'webpack/lib/UnsupportedFeatureWarning'>;
-}
-declare module 'webpack/lib/UseStrictPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/UseStrictPlugin'>;
-}
-declare module 'webpack/lib/util/identifier.js' {
- declare module.exports: $Exports<'webpack/lib/util/identifier'>;
-}
-declare module 'webpack/lib/util/Queue.js' {
- declare module.exports: $Exports<'webpack/lib/util/Queue'>;
-}
-declare module 'webpack/lib/util/Semaphore.js' {
- declare module.exports: $Exports<'webpack/lib/util/Semaphore'>;
-}
-declare module 'webpack/lib/util/SortableSet.js' {
- declare module.exports: $Exports<'webpack/lib/util/SortableSet'>;
-}
-declare module 'webpack/lib/validateSchema.js' {
- declare module.exports: $Exports<'webpack/lib/validateSchema'>;
-}
-declare module 'webpack/lib/WarnCaseSensitiveModulesPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/WarnCaseSensitiveModulesPlugin'>;
-}
-declare module 'webpack/lib/WatchIgnorePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/WatchIgnorePlugin'>;
-}
-declare module 'webpack/lib/web/WebEnvironmentPlugin.js' {
- declare module.exports: $Exports<'webpack/lib/web/WebEnvironmentPlugin'>;
-}
-declare module 'webpack/lib/webpack.js' {
- declare module.exports: $Exports<'webpack/lib/webpack'>;
-}
-declare module 'webpack/lib/webpack.web.js' {
- declare module.exports: $Exports<'webpack/lib/webpack.web'>;
-}
-declare module 'webpack/lib/WebpackError.js' {
- declare module.exports: $Exports<'webpack/lib/WebpackError'>;
-}
-declare module 'webpack/lib/WebpackOptionsApply.js' {
- declare module.exports: $Exports<'webpack/lib/WebpackOptionsApply'>;
-}
-declare module 'webpack/lib/WebpackOptionsDefaulter.js' {
- declare module.exports: $Exports<'webpack/lib/WebpackOptionsDefaulter'>;
-}
-declare module 'webpack/lib/WebpackOptionsValidationError.js' {
- declare module.exports: $Exports<'webpack/lib/WebpackOptionsValidationError'>;
-}
-declare module 'webpack/lib/webworker/WebWorkerChunkTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerChunkTemplatePlugin'>;
-}
-declare module 'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin'>;
-}
-declare module 'webpack/lib/webworker/WebWorkerMainTemplate.runtime.js' {
- declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerMainTemplate.runtime'>;
-}
-declare module 'webpack/lib/webworker/WebWorkerMainTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerMainTemplatePlugin'>;
-}
-declare module 'webpack/lib/webworker/WebWorkerTemplatePlugin.js' {
- declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerTemplatePlugin'>;
-}
-declare module 'webpack/schemas/ajv.absolutePath.js' {
- declare module.exports: $Exports<'webpack/schemas/ajv.absolutePath'>;
-}
-declare module 'webpack/web_modules/node-libs-browser.js' {
- declare module.exports: $Exports<'webpack/web_modules/node-libs-browser'>;
-}
diff --git a/init.js b/init.js
index f828b21c..8692b829 100644
--- a/init.js
+++ b/init.js
@@ -1,4 +1,4 @@
// @flow
-require("babel-core/register");
-require("babel-polyfill");
+require("@babel/register");
+require("@babel/polyfill");
require("dotenv").config({ silent: true });
diff --git a/package.json b/package.json
index d3f05377..00a3b04c 100644
--- a/package.json
+++ b/package.json
@@ -54,34 +54,22 @@
"type": "git",
"url": "git+ssh://git@github.com/outline/outline.git"
},
+ "browserslist": "> 0.25%, not dead",
"dependencies": {
+ "@babel/polyfill": "^7.10.4",
+ "@babel/register": "^7.10.5",
"@rehooks/window-scroll-position": "^1.0.1",
"@sentry/node": "^5.12.2",
"@tippy.js/react": "^2.2.2",
"@tommoor/remove-markdown": "0.3.1",
"autotrack": "^2.4.1",
"aws-sdk": "^2.135.0",
- "babel-core": "^6.24.1",
- "babel-loader": "^7.1.2",
- "babel-plugin-lodash": "^3.2.11",
- "babel-plugin-styled-components": "^1.1.7",
- "babel-plugin-syntax-dynamic-import": "^6.18.0",
- "babel-plugin-transform-class-properties": "^6.24.1",
- "babel-plugin-transform-decorators-legacy": "1.3.4",
- "babel-plugin-transform-es2015-destructuring": "^6.23.0",
- "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
- "babel-plugin-transform-object-rest-spread": "^6.23.0",
- "babel-plugin-transform-regenerator": "^6.24.1",
- "babel-polyfill": "^6.13.0",
- "babel-preset-env": "^1.4.0",
- "babel-preset-react": "6.11.1",
- "babel-preset-react-hmre": "1.1.1",
- "babel-regenerator-runtime": "6.5.0",
"boundless-arrow-key-navigation": "^1.0.4",
"boundless-popover": "^1.0.4",
"bull": "^3.5.2",
"cancan": "3.1.0",
"copy-to-clipboard": "^3.0.6",
+ "core-js": "2",
"date-fns": "1.29.0",
"debug": "^4.1.1",
"dotenv": "^4.0.0",
@@ -102,7 +90,7 @@
"js-search": "^1.4.2",
"json-loader": "0.5.4",
"jsonwebtoken": "^8.5.0",
- "jszip": "3.1.5",
+ "jszip": "^3.5.0",
"koa": "^2.10.0",
"koa-bodyparser": "4.2.0",
"koa-compress": "2.0.0",
@@ -166,19 +154,30 @@
"webpack-manifest-plugin": "^1.3.2"
},
"devDependencies": {
- "babel-eslint": "^9.0.0",
- "babel-jest": "^22.0.0",
- "eslint": "^5.12.1",
- "eslint-config-react-app": "^3.0.6",
- "eslint-plugin-flowtype": "^2.40.1",
- "eslint-plugin-import": "^2.14.0",
- "eslint-plugin-jsx-a11y": "^6.1.2",
- "eslint-plugin-prettier": "^2.4.0",
- "eslint-plugin-react": "^7.12.4",
+ "@babel/core": "^7.11.1",
+ "@babel/plugin-proposal-decorators": "^7.10.5",
+ "@babel/plugin-transform-destructuring": "^7.10.4",
+ "@babel/plugin-transform-regenerator": "^7.10.4",
+ "@babel/preset-env": "^7.11.0",
+ "@babel/preset-flow": "^7.10.4",
+ "@babel/preset-react": "^7.10.4",
+ "babel-eslint": "^10.1.0",
+ "babel-jest": "^26.2.2",
+ "babel-loader": "^8.1.0",
+ "babel-plugin-lodash": "^3.3.4",
+ "babel-plugin-styled-components": "^1.11.1",
+ "babel-plugin-transform-class-properties": "^6.24.1",
+ "eslint": "^7.6.0",
+ "eslint-config-react-app": "3.0.6",
+ "eslint-plugin-flowtype": "^5.2.0",
+ "eslint-plugin-import": "^2.22.0",
+ "eslint-plugin-jsx-a11y": "^6.1.0",
+ "eslint-plugin-prettier": "^3.1.0",
+ "eslint-plugin-react": "^7.20.0",
"fetch-test-server": "^1.1.0",
"flow-bin": "^0.104.0",
"identity-obj-proxy": "^3.0.0",
- "jest-cli": "^22.0.0",
+ "jest-cli": "^26.0.0",
"koa-webpack-dev-middleware": "^1.4.5",
"koa-webpack-hot-middleware": "^1.0.3",
"mobx-react-devtools": "^6.0.3",
@@ -188,8 +187,7 @@
},
"resolutions": {
"dot-prop": "^5.2.0",
- "micromatch": "^3.1.10",
"js-yaml": "^3.13.1"
},
"version": "0.45.0"
-}
\ No newline at end of file
+}
diff --git a/server/api/apiKeys.js b/server/api/apiKeys.js
index efafe939..a138f236 100644
--- a/server/api/apiKeys.js
+++ b/server/api/apiKeys.js
@@ -2,10 +2,10 @@
import Router from "koa-router";
import auth from "../middlewares/authentication";
-import pagination from "./middlewares/pagination";
-import { presentApiKey } from "../presenters";
import { ApiKey, Event } from "../models";
import policy from "../policies";
+import { presentApiKey } from "../presenters";
+import pagination from "./middlewares/pagination";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/attachments.js b/server/api/attachments.js
index e33d0d9d..6a634887 100644
--- a/server/api/attachments.js
+++ b/server/api/attachments.js
@@ -1,8 +1,11 @@
// @flow
+import format from "date-fns/format";
import Router from "koa-router";
import uuid from "uuid";
-import format from "date-fns/format";
+import { NotFoundError } from "../errors";
+import auth from "../middlewares/authentication";
import { Attachment, Document, Event } from "../models";
+import policy from "../policies";
import {
makePolicy,
getSignature,
@@ -10,9 +13,6 @@ import {
makeCredential,
getSignedImageUrl,
} from "../utils/s3";
-import auth from "../middlewares/authentication";
-import { NotFoundError } from "../errors";
-import policy from "../policies";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/attachments.test.js b/server/api/attachments.test.js
index b885013e..ff622ec5 100644
--- a/server/api/attachments.test.js
+++ b/server/api/attachments.test.js
@@ -1,20 +1,20 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import TestServer from "fetch-test-server";
import app from "../app";
-import { flushdb } from "../test/support";
import {
buildUser,
buildCollection,
buildAttachment,
buildDocument,
} from "../test/factories";
+import { flushdb } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#attachments.redirect", async () => {
+describe("#attachments.redirect", () => {
it("should require authentication", async () => {
const res = await server.post("/api/attachments.redirect");
expect(res.status).toEqual(401);
diff --git a/server/api/auth.js b/server/api/auth.js
index de0abd1b..8834c85d 100644
--- a/server/api/auth.js
+++ b/server/api/auth.js
@@ -1,11 +1,11 @@
// @flow
import Router from "koa-router";
import { reject } from "lodash";
-import auth from "../middlewares/authentication";
-import { presentUser, presentTeam, presentPolicies } from "../presenters";
-import { Team } from "../models";
-import { signin } from "../../shared/utils/routeHelpers";
import { parseDomain, isCustomSubdomain } from "../../shared/utils/domains";
+import { signin } from "../../shared/utils/routeHelpers";
+import auth from "../middlewares/authentication";
+import { Team } from "../models";
+import { presentUser, presentTeam, presentPolicies } from "../presenters";
const router = new Router();
diff --git a/server/api/collections.js b/server/api/collections.js
index 20cd8645..c23c0a02 100644
--- a/server/api/collections.js
+++ b/server/api/collections.js
@@ -1,17 +1,9 @@
// @flow
import fs from "fs";
import Router from "koa-router";
-import { Op } from "../sequelize";
+import { ValidationError } from "../errors";
+import { exportCollections } from "../logistics";
import auth from "../middlewares/authentication";
-import pagination from "./middlewares/pagination";
-import {
- presentCollection,
- presentUser,
- presentPolicies,
- presentMembership,
- presentGroup,
- presentCollectionGroupMembership,
-} from "../presenters";
import {
Collection,
CollectionUser,
@@ -21,10 +13,18 @@ import {
User,
Group,
} from "../models";
-import { ValidationError } from "../errors";
-import { exportCollections } from "../logistics";
-import { archiveCollection, archiveCollections } from "../utils/zip";
import policy from "../policies";
+import {
+ presentCollection,
+ presentUser,
+ presentPolicies,
+ presentMembership,
+ presentGroup,
+ presentCollectionGroupMembership,
+} from "../presenters";
+import { Op } from "../sequelize";
+import { archiveCollection, archiveCollections } from "../utils/zip";
+import pagination from "./middlewares/pagination";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/collections.test.js b/server/api/collections.test.js
index a7b31763..581bbceb 100644
--- a/server/api/collections.test.js
+++ b/server/api/collections.test.js
@@ -1,15 +1,15 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import TestServer from "fetch-test-server";
import app from "../app";
-import { flushdb, seed } from "../test/support";
-import { buildUser, buildGroup, buildCollection } from "../test/factories";
import { Collection, CollectionUser, CollectionGroup } from "../models";
+import { buildUser, buildGroup, buildCollection } from "../test/factories";
+import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#collections.list", async () => {
+describe("#collections.list", () => {
it("should require authentication", async () => {
const res = await server.post("/api/collections.list");
const body = await res.json();
@@ -104,7 +104,7 @@ describe("#collections.list", async () => {
});
});
-describe("#collections.export", async () => {
+describe("#collections.export", () => {
it("should now allow export of private collection not a member", async () => {
const { user } = await seed();
const collection = await buildCollection({
@@ -176,7 +176,7 @@ describe("#collections.export", async () => {
});
});
-describe("#collections.export_all", async () => {
+describe("#collections.export_all", () => {
it("should require authentication", async () => {
const res = await server.post("/api/collections.export_all");
const body = await res.json();
@@ -215,7 +215,7 @@ describe("#collections.export_all", async () => {
});
});
-describe("#collections.add_user", async () => {
+describe("#collections.add_user", () => {
it("should add user to collection", async () => {
const user = await buildUser();
const collection = await buildCollection({
@@ -279,7 +279,7 @@ describe("#collections.add_user", async () => {
});
});
-describe("#collections.add_group", async () => {
+describe("#collections.add_group", () => {
it("should add group to collection", async () => {
const user = await buildUser({ isAdmin: true });
const collection = await buildCollection({
@@ -342,7 +342,7 @@ describe("#collections.add_group", async () => {
});
});
-describe("#collections.remove_group", async () => {
+describe("#collections.remove_group", () => {
it("should remove group from collection", async () => {
const user = await buildUser({ isAdmin: true });
const collection = await buildCollection({
@@ -418,7 +418,7 @@ describe("#collections.remove_group", async () => {
});
});
-describe("#collections.remove_user", async () => {
+describe("#collections.remove_user", () => {
it("should remove user from collection", async () => {
const user = await buildUser();
const collection = await buildCollection({
@@ -491,7 +491,7 @@ describe("#collections.remove_user", async () => {
});
});
-describe("#collections.users", async () => {
+describe("#collections.users", () => {
it("should return users in private collection", async () => {
const { collection, user } = await seed();
collection.private = true;
@@ -531,7 +531,7 @@ describe("#collections.users", async () => {
});
});
-describe("#collections.group_memberships", async () => {
+describe("#collections.group_memberships", () => {
it("should return groups in private collection", async () => {
const user = await buildUser();
const group = await buildGroup({ teamId: user.teamId });
@@ -680,7 +680,7 @@ describe("#collections.group_memberships", async () => {
});
});
-describe("#collections.memberships", async () => {
+describe("#collections.memberships", () => {
it("should return members in private collection", async () => {
const { collection, user } = await seed();
collection.private = true;
@@ -783,7 +783,7 @@ describe("#collections.memberships", async () => {
});
});
-describe("#collections.info", async () => {
+describe("#collections.info", () => {
it("should return collection", async () => {
const { user, collection } = await seed();
const res = await server.post("/api/collections.info", {
@@ -845,7 +845,7 @@ describe("#collections.info", async () => {
});
});
-describe("#collections.create", async () => {
+describe("#collections.create", () => {
it("should require authentication", async () => {
const res = await server.post("/api/collections.create");
const body = await res.json();
@@ -884,7 +884,7 @@ describe("#collections.create", async () => {
});
});
-describe("#collections.update", async () => {
+describe("#collections.update", () => {
it("should require authentication", async () => {
const collection = await buildCollection();
const res = await server.post("/api/collections.update", {
@@ -1029,7 +1029,7 @@ describe("#collections.update", async () => {
});
});
-describe("#collections.delete", async () => {
+describe("#collections.delete", () => {
it("should require authentication", async () => {
const res = await server.post("/api/collections.delete");
const body = await res.json();
diff --git a/server/api/documents.js b/server/api/documents.js
index 6767263d..932b66ec 100644
--- a/server/api/documents.js
+++ b/server/api/documents.js
@@ -1,14 +1,9 @@
// @flow
import Router from "koa-router";
import Sequelize from "sequelize";
-import auth from "../middlewares/authentication";
-import pagination from "./middlewares/pagination";
import documentMover from "../commands/documentMover";
-import {
- presentDocument,
- presentCollection,
- presentPolicies,
-} from "../presenters";
+import { InvalidRequestError } from "../errors";
+import auth from "../middlewares/authentication";
import {
Collection,
Document,
@@ -20,9 +15,14 @@ import {
Backlink,
User,
} from "../models";
-import { InvalidRequestError } from "../errors";
import policy from "../policies";
+import {
+ presentDocument,
+ presentCollection,
+ presentPolicies,
+} from "../presenters";
import { sequelize } from "../sequelize";
+import pagination from "./middlewares/pagination";
const Op = Sequelize.Op;
const { authorize, cannot } = policy;
diff --git a/server/api/documents.test.js b/server/api/documents.test.js
index 07dc61bc..83041f37 100644
--- a/server/api/documents.test.js
+++ b/server/api/documents.test.js
@@ -9,20 +9,20 @@ import {
Backlink,
CollectionUser,
} from "../models";
-import { flushdb, seed } from "../test/support";
import {
buildShare,
buildCollection,
buildUser,
buildDocument,
} from "../test/factories";
+import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#documents.info", async () => {
+describe("#documents.info", () => {
it("should return published document", async () => {
const { user, document } = await seed();
const res = await server.post("/api/documents.info", {
@@ -210,7 +210,7 @@ describe("#documents.info", async () => {
});
});
-describe("#documents.export", async () => {
+describe("#documents.export", () => {
it("should return published document", async () => {
const { user, document } = await seed();
const res = await server.post("/api/documents.export", {
@@ -392,7 +392,7 @@ describe("#documents.export", async () => {
});
});
-describe("#documents.list", async () => {
+describe("#documents.list", () => {
it("should return documents", async () => {
const { user, document } = await seed();
@@ -524,7 +524,7 @@ describe("#documents.list", async () => {
});
});
-describe("#documents.pinned", async () => {
+describe("#documents.pinned", () => {
it("should return pinned documents", async () => {
const { user, document } = await seed();
document.pinnedById = user.id;
@@ -585,7 +585,7 @@ describe("#documents.pinned", async () => {
});
});
-describe("#documents.drafts", async () => {
+describe("#documents.drafts", () => {
it("should return unpublished documents", async () => {
const { user, document } = await seed();
document.publishedAt = null;
@@ -618,7 +618,7 @@ describe("#documents.drafts", async () => {
});
});
-describe("#documents.search", async () => {
+describe("#documents.search", () => {
it("should return results", async () => {
const { user } = await seed();
const res = await server.post("/api/documents.search", {
@@ -947,7 +947,7 @@ describe("#documents.search", async () => {
});
});
-describe("#documents.archived", async () => {
+describe("#documents.archived", () => {
it("should return archived documents", async () => {
const { user } = await seed();
const document = await buildDocument({
@@ -1007,7 +1007,7 @@ describe("#documents.archived", async () => {
});
});
-describe("#documents.viewed", async () => {
+describe("#documents.viewed", () => {
it("should return empty result if no views", async () => {
const { user } = await seed();
const res = await server.post("/api/documents.viewed", {
@@ -1071,7 +1071,7 @@ describe("#documents.viewed", async () => {
});
});
-describe("#documents.starred", async () => {
+describe("#documents.starred", () => {
it("should return empty result if no stars", async () => {
const { user } = await seed();
const res = await server.post("/api/documents.starred", {
@@ -1107,7 +1107,7 @@ describe("#documents.starred", async () => {
});
});
-describe("#documents.pin", async () => {
+describe("#documents.pin", () => {
it("should pin the document", async () => {
const { user, document } = await seed();
@@ -1224,7 +1224,7 @@ describe("#documents.restore", () => {
});
});
-describe("#documents.unpin", async () => {
+describe("#documents.unpin", () => {
it("should unpin the document", async () => {
const { user, document } = await seed();
document.pinnedBy = user;
@@ -1256,7 +1256,7 @@ describe("#documents.unpin", async () => {
});
});
-describe("#documents.star", async () => {
+describe("#documents.star", () => {
it("should star the document", async () => {
const { user, document } = await seed();
@@ -1288,7 +1288,7 @@ describe("#documents.star", async () => {
});
});
-describe("#documents.unstar", async () => {
+describe("#documents.unstar", () => {
it("should unstar the document", async () => {
const { user, document } = await seed();
await Star.create({ documentId: document.id, userId: user.id });
@@ -1320,7 +1320,7 @@ describe("#documents.unstar", async () => {
});
});
-describe("#documents.create", async () => {
+describe("#documents.create", () => {
it("should create as a new document", async () => {
const { user, collection } = await seed();
const res = await server.post("/api/documents.create", {
@@ -1406,7 +1406,7 @@ describe("#documents.create", async () => {
});
});
-describe("#documents.update", async () => {
+describe("#documents.update", () => {
it("should update document details in the root", async () => {
const { user, document } = await seed();
@@ -1677,7 +1677,7 @@ describe("#documents.update", async () => {
});
});
-describe("#documents.archive", async () => {
+describe("#documents.archive", () => {
it("should allow archiving document", async () => {
const { user, document } = await seed();
const res = await server.post("/api/documents.archive", {
@@ -1699,7 +1699,7 @@ describe("#documents.archive", async () => {
});
});
-describe("#documents.delete", async () => {
+describe("#documents.delete", () => {
it("should allow deleting document", async () => {
const { user, document } = await seed();
const res = await server.post("/api/documents.delete", {
diff --git a/server/api/events.js b/server/api/events.js
index c098a356..cfc4b220 100644
--- a/server/api/events.js
+++ b/server/api/events.js
@@ -1,11 +1,11 @@
// @flow
-import Sequelize from "sequelize";
import Router from "koa-router";
+import Sequelize from "sequelize";
import auth from "../middlewares/authentication";
-import pagination from "./middlewares/pagination";
-import { presentEvent } from "../presenters";
import { Event, Team, User } from "../models";
import policy from "../policies";
+import { presentEvent } from "../presenters";
+import pagination from "./middlewares/pagination";
const Op = Sequelize.Op;
const { authorize } = policy;
diff --git a/server/api/events.test.js b/server/api/events.test.js
index 373871bb..a1b2d632 100644
--- a/server/api/events.test.js
+++ b/server/api/events.test.js
@@ -1,15 +1,15 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import TestServer from "fetch-test-server";
import app from "../app";
-import { flushdb, seed } from "../test/support";
import { buildEvent } from "../test/factories";
+import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#events.list", async () => {
+describe("#events.list", () => {
it("should only return activity events", async () => {
const { user, admin, document, collection } = await seed();
diff --git a/server/api/groups.js b/server/api/groups.js
index 50fb4443..f7d6c721 100644
--- a/server/api/groups.js
+++ b/server/api/groups.js
@@ -1,18 +1,18 @@
// @flow
import Router from "koa-router";
-import auth from "../middlewares/authentication";
-import pagination from "./middlewares/pagination";
-import { Op } from "../sequelize";
import { MAX_AVATAR_DISPLAY } from "../../shared/constants";
+import auth from "../middlewares/authentication";
+import { User, Event, Group, GroupUser } from "../models";
+import policy from "../policies";
import {
presentGroup,
presentPolicies,
presentUser,
presentGroupMembership,
} from "../presenters";
-import { User, Event, Group, GroupUser } from "../models";
-import policy from "../policies";
+import { Op } from "../sequelize";
+import pagination from "./middlewares/pagination";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/groups.test.js b/server/api/groups.test.js
index 732eec9c..52430efc 100644
--- a/server/api/groups.test.js
+++ b/server/api/groups.test.js
@@ -1,16 +1,16 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import TestServer from "fetch-test-server";
import app from "../app";
-import { flushdb } from "../test/support";
-import { buildUser, buildGroup } from "../test/factories";
import { Event } from "../models";
+import { buildUser, buildGroup } from "../test/factories";
+import { flushdb } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#groups.create", async () => {
+describe("#groups.create", () => {
it("should create a group", async () => {
const name = "hello I am a group";
const user = await buildUser({ isAdmin: true });
@@ -26,7 +26,7 @@ describe("#groups.create", async () => {
});
});
-describe("#groups.update", async () => {
+describe("#groups.update", () => {
it("should require authentication", async () => {
const group = await buildGroup();
const res = await server.post("/api/groups.update", {
@@ -57,7 +57,7 @@ describe("#groups.update", async () => {
expect(res.status).toEqual(403);
});
- describe("when user is admin", async () => {
+ describe("when user is admin", () => {
let user, group;
beforeEach(async () => {
@@ -112,7 +112,7 @@ describe("#groups.update", async () => {
});
});
-describe("#groups.list", async () => {
+describe("#groups.list", () => {
it("should require authentication", async () => {
const res = await server.post("/api/groups.list");
const body = await res.json();
@@ -173,7 +173,7 @@ describe("#groups.list", async () => {
});
});
-describe("#groups.info", async () => {
+describe("#groups.info", () => {
it("should return group if admin", async () => {
const user = await buildUser({ isAdmin: true });
const group = await buildGroup({ teamId: user.teamId });
@@ -232,7 +232,7 @@ describe("#groups.info", async () => {
});
});
-describe("#groups.delete", async () => {
+describe("#groups.delete", () => {
it("should require authentication", async () => {
const group = await buildGroup();
const res = await server.post("/api/groups.delete", {
@@ -277,7 +277,7 @@ describe("#groups.delete", async () => {
});
});
-describe("#groups.memberships", async () => {
+describe("#groups.memberships", () => {
it("should return members in a group", async () => {
const user = await buildUser();
const group = await buildGroup({ teamId: user.teamId });
@@ -342,7 +342,7 @@ describe("#groups.memberships", async () => {
});
});
-describe("#groups.add_user", async () => {
+describe("#groups.add_user", () => {
it("should add user to group", async () => {
const user = await buildUser({ isAdmin: true });
const group = await buildGroup({
@@ -410,7 +410,7 @@ describe("#groups.add_user", async () => {
});
});
-describe("#groups.remove_user", async () => {
+describe("#groups.remove_user", () => {
it("should remove user from group", async () => {
const user = await buildUser({ isAdmin: true });
const group = await buildGroup({
diff --git a/server/api/hooks.test.js b/server/api/hooks.test.js
index c3e902ad..7e643b1c 100644
--- a/server/api/hooks.test.js
+++ b/server/api/hooks.test.js
@@ -2,20 +2,20 @@
import TestServer from "fetch-test-server";
import app from "../app";
import { Authentication } from "../models";
-import { flushdb, seed } from "../test/support";
-import { buildDocument } from "../test/factories";
import * as Slack from "../slack";
+import { buildDocument } from "../test/factories";
+import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
jest.mock("../slack", () => ({
post: jest.fn(),
}));
-describe("#hooks.unfurl", async () => {
+describe("#hooks.unfurl", () => {
it("should return documents", async () => {
const { user, document } = await seed();
await Authentication.create({
@@ -49,7 +49,7 @@ describe("#hooks.unfurl", async () => {
});
});
-describe("#hooks.slack", async () => {
+describe("#hooks.slack", () => {
it("should return no matches", async () => {
const { user, team } = await seed();
@@ -210,7 +210,7 @@ describe("#hooks.slack", async () => {
});
});
-describe("#hooks.interactive", async () => {
+describe("#hooks.interactive", () => {
it("should respond with replacement message", async () => {
const { user, team } = await seed();
const document = await buildDocument({
diff --git a/server/api/index.js b/server/api/index.js
index 3d3436c9..c7023163 100644
--- a/server/api/index.js
+++ b/server/api/index.js
@@ -1,31 +1,31 @@
// @flow
-import bodyParser from "koa-bodyparser";
import Koa from "koa";
+import bodyParser from "koa-bodyparser";
import Router from "koa-router";
-import auth from "./auth";
-import events from "./events";
-import users from "./users";
-import collections from "./collections";
-import documents from "./documents";
-import revisions from "./revisions";
-import views from "./views";
-import hooks from "./hooks";
-import apiKeys from "./apiKeys";
-import shares from "./shares";
-import groups from "./groups";
-import team from "./team";
-import integrations from "./integrations";
-import notificationSettings from "./notificationSettings";
-import utils from "./utils";
-import attachments from "./attachments";
-
import { NotFoundError } from "../errors";
import errorHandling from "../middlewares/errorHandling";
-import validation from "../middlewares/validation";
import methodOverride from "../middlewares/methodOverride";
+import validation from "../middlewares/validation";
+import apiKeys from "./apiKeys";
+import attachments from "./attachments";
+import auth from "./auth";
+import collections from "./collections";
+import documents from "./documents";
+import events from "./events";
+import groups from "./groups";
+import hooks from "./hooks";
+import integrations from "./integrations";
+
import apiWrapper from "./middlewares/apiWrapper";
import editor from "./middlewares/editor";
+import notificationSettings from "./notificationSettings";
+import revisions from "./revisions";
+import shares from "./shares";
+import team from "./team";
+import users from "./users";
+import utils from "./utils";
+import views from "./views";
const api = new Koa();
const router = new Router();
diff --git a/server/api/index.test.js b/server/api/index.test.js
index 98200886..1fb43821 100644
--- a/server/api/index.test.js
+++ b/server/api/index.test.js
@@ -4,17 +4,17 @@ import app from "../app";
import { flushdb } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("POST unknown endpoint", async () => {
+describe("POST unknown endpoint", () => {
it("should be not found", async () => {
const res = await server.post("/api/blah");
expect(res.status).toEqual(404);
});
});
-describe("GET unknown endpoint", async () => {
+describe("GET unknown endpoint", () => {
it("should be not found", async () => {
const res = await server.get("/api/blah");
expect(res.status).toEqual(404);
diff --git a/server/api/integrations.js b/server/api/integrations.js
index c14553d5..5814cc15 100644
--- a/server/api/integrations.js
+++ b/server/api/integrations.js
@@ -1,11 +1,11 @@
// @flow
import Router from "koa-router";
-import Integration from "../models/Integration";
-import pagination from "./middlewares/pagination";
import auth from "../middlewares/authentication";
import { Event } from "../models";
-import { presentIntegration } from "../presenters";
+import Integration from "../models/Integration";
import policy from "../policies";
+import { presentIntegration } from "../presenters";
+import pagination from "./middlewares/pagination";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/middlewares/editor.js b/server/api/middlewares/editor.js
index a6f114e5..9b757d55 100644
--- a/server/api/middlewares/editor.js
+++ b/server/api/middlewares/editor.js
@@ -1,7 +1,7 @@
// @flow
-import semver from "semver";
import { type Context } from "koa";
import pkg from "rich-markdown-editor/package.json";
+import semver from "semver";
import { EditorUpdateError } from "../../errors";
export default function editor() {
diff --git a/server/api/middlewares/pagination.js b/server/api/middlewares/pagination.js
index c45cc98a..d44748e5 100644
--- a/server/api/middlewares/pagination.js
+++ b/server/api/middlewares/pagination.js
@@ -1,7 +1,7 @@
// @flow
import querystring from "querystring";
-import { InvalidRequestError } from "../../errors";
import { type Context } from "koa";
+import { InvalidRequestError } from "../../errors";
export default function pagination(options?: Object) {
return async function paginationMiddleware(
diff --git a/server/api/middlewares/pagination.test.js b/server/api/middlewares/pagination.test.js
index 40811313..ffd19991 100644
--- a/server/api/middlewares/pagination.test.js
+++ b/server/api/middlewares/pagination.test.js
@@ -5,10 +5,10 @@ import { flushdb, seed } from "../../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#pagination", async () => {
+describe("#pagination", () => {
it("should allow offset and limit", async () => {
const { user } = await seed();
const res = await server.post("/api/users.list", {
diff --git a/server/api/notificationSettings.js b/server/api/notificationSettings.js
index bdfc710d..58d1fe99 100644
--- a/server/api/notificationSettings.js
+++ b/server/api/notificationSettings.js
@@ -3,8 +3,8 @@ import Router from "koa-router";
import auth from "../middlewares/authentication";
import { NotificationSetting } from "../models";
-import { presentNotificationSetting } from "../presenters";
import policy from "../policies";
+import { presentNotificationSetting } from "../presenters";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/revisions.js b/server/api/revisions.js
index 383fffc8..4ec83708 100644
--- a/server/api/revisions.js
+++ b/server/api/revisions.js
@@ -1,11 +1,11 @@
// @flow
import Router from "koa-router";
-import auth from "../middlewares/authentication";
-import pagination from "./middlewares/pagination";
-import { presentRevision } from "../presenters";
-import { Document, Revision } from "../models";
import { NotFoundError } from "../errors";
+import auth from "../middlewares/authentication";
+import { Document, Revision } from "../models";
import policy from "../policies";
+import { presentRevision } from "../presenters";
+import pagination from "./middlewares/pagination";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/revisions.test.js b/server/api/revisions.test.js
index ceb75585..2af42b27 100644
--- a/server/api/revisions.test.js
+++ b/server/api/revisions.test.js
@@ -1,16 +1,16 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import TestServer from "fetch-test-server";
import app from "../app";
-import { flushdb, seed } from "../test/support";
-import { buildDocument, buildUser } from "../test/factories";
import Revision from "../models/Revision";
+import { buildDocument, buildUser } from "../test/factories";
+import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#revisions.info", async () => {
+describe("#revisions.info", () => {
it("should return a document revision", async () => {
const { user, document } = await seed();
const revision = await Revision.findOne({
@@ -49,7 +49,7 @@ describe("#revisions.info", async () => {
});
});
-describe("#revisions.list", async () => {
+describe("#revisions.list", () => {
it("should return a document's revisions", async () => {
const { user, document } = await seed();
const res = await server.post("/api/revisions.list", {
diff --git a/server/api/shares.js b/server/api/shares.js
index a8211cc7..fcb74c1c 100644
--- a/server/api/shares.js
+++ b/server/api/shares.js
@@ -1,12 +1,12 @@
// @flow
import Router from "koa-router";
import Sequelize from "sequelize";
-import auth from "../middlewares/authentication";
-import pagination from "./middlewares/pagination";
-import { presentShare, presentPolicies } from "../presenters";
-import { Document, User, Event, Share, Team } from "../models";
import { NotFoundError } from "../errors";
+import auth from "../middlewares/authentication";
+import { Document, User, Event, Share, Team } from "../models";
import policy from "../policies";
+import { presentShare, presentPolicies } from "../presenters";
+import pagination from "./middlewares/pagination";
const Op = Sequelize.Op;
const { authorize } = policy;
diff --git a/server/api/shares.test.js b/server/api/shares.test.js
index beec01c6..a48da59e 100644
--- a/server/api/shares.test.js
+++ b/server/api/shares.test.js
@@ -2,15 +2,15 @@
import TestServer from "fetch-test-server";
import app from "../app";
import { CollectionUser } from "../models";
-import { flushdb, seed } from "../test/support";
import { buildUser, buildShare } from "../test/factories";
+import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#shares.list", async () => {
+describe("#shares.list", () => {
it("should only return shares created by user", async () => {
const { user, admin, document } = await seed();
await buildShare({
@@ -117,7 +117,7 @@ describe("#shares.list", async () => {
});
});
-describe("#shares.create", async () => {
+describe("#shares.create", () => {
it("should allow creating a share record for document", async () => {
const { user, document } = await seed();
const res = await server.post("/api/shares.create", {
@@ -216,7 +216,7 @@ describe("#shares.create", async () => {
});
});
-describe("#shares.info", async () => {
+describe("#shares.info", () => {
it("should allow reading share by id", async () => {
const { user, document } = await seed();
const share = await buildShare({
@@ -299,7 +299,7 @@ describe("#shares.info", async () => {
});
});
-describe("#shares.update", async () => {
+describe("#shares.update", () => {
it("should allow author to update a share", async () => {
const { user, document } = await seed();
const share = await buildShare({
@@ -367,7 +367,7 @@ describe("#shares.update", async () => {
});
});
-describe("#shares.revoke", async () => {
+describe("#shares.revoke", () => {
it("should allow author to revoke a share", async () => {
const { user, document } = await seed();
const share = await buildShare({
diff --git a/server/api/team.js b/server/api/team.js
index b44043e5..ff589428 100644
--- a/server/api/team.js
+++ b/server/api/team.js
@@ -1,10 +1,10 @@
// @flow
import Router from "koa-router";
+import auth from "../middlewares/authentication";
import { Team } from "../models";
-import auth from "../middlewares/authentication";
-import { presentTeam, presentPolicies } from "../presenters";
import policy from "../policies";
+import { presentTeam, presentPolicies } from "../presenters";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/team.test.js b/server/api/team.test.js
index d34e7908..7fb3ba54 100644
--- a/server/api/team.test.js
+++ b/server/api/team.test.js
@@ -6,10 +6,10 @@ import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#team.update", async () => {
+describe("#team.update", () => {
it("should update team details", async () => {
const { admin } = await seed();
const res = await server.post("/api/team.update", {
diff --git a/server/api/users.js b/server/api/users.js
index 4ef74eec..7e3b06f7 100644
--- a/server/api/users.js
+++ b/server/api/users.js
@@ -1,12 +1,12 @@
// @flow
import Router from "koa-router";
-import { Op } from "../sequelize";
-import { Event, User, Team } from "../models";
-import auth from "../middlewares/authentication";
-import pagination from "./middlewares/pagination";
import userInviter from "../commands/userInviter";
-import { presentUser } from "../presenters";
+import auth from "../middlewares/authentication";
+import { Event, User, Team } from "../models";
import policy from "../policies";
+import { presentUser } from "../presenters";
+import { Op } from "../sequelize";
+import pagination from "./middlewares/pagination";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/users.test.js b/server/api/users.test.js
index db18190b..6c667de5 100644
--- a/server/api/users.test.js
+++ b/server/api/users.test.js
@@ -2,15 +2,15 @@
import TestServer from "fetch-test-server";
import app from "../app";
-import { flushdb, seed } from "../test/support";
import { buildUser } from "../test/factories";
+import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#users.list", async () => {
+describe("#users.list", () => {
it("should allow filtering by user name", async () => {
const user = await buildUser({ name: "Tester" });
@@ -85,7 +85,7 @@ describe("#users.list", async () => {
});
});
-describe("#users.info", async () => {
+describe("#users.info", () => {
it("should return known user", async () => {
const user = await buildUser();
const res = await server.post("/api/users.info", {
@@ -104,7 +104,7 @@ describe("#users.info", async () => {
});
});
-describe("#users.invite", async () => {
+describe("#users.invite", () => {
it("should return sent invites", async () => {
const user = await buildUser();
const res = await server.post("/api/users.invite", {
@@ -124,7 +124,7 @@ describe("#users.invite", async () => {
});
});
-describe("#users.delete", async () => {
+describe("#users.delete", () => {
it("should not allow deleting without confirmation", async () => {
const user = await buildUser();
const res = await server.post("/api/users.delete", {
@@ -189,7 +189,7 @@ describe("#users.delete", async () => {
});
});
-describe("#users.update", async () => {
+describe("#users.update", () => {
it("should update user profile information", async () => {
const { user } = await seed();
const res = await server.post("/api/users.update", {
@@ -210,7 +210,7 @@ describe("#users.update", async () => {
});
});
-describe("#users.promote", async () => {
+describe("#users.promote", () => {
it("should promote a new admin", async () => {
const { admin, user } = await seed();
@@ -235,7 +235,7 @@ describe("#users.promote", async () => {
});
});
-describe("#users.demote", async () => {
+describe("#users.demote", () => {
it("should demote an admin", async () => {
const { admin, user } = await seed();
await user.update({ isAdmin: true }); // Make another admin
@@ -279,7 +279,7 @@ describe("#users.demote", async () => {
});
});
-describe("#users.suspend", async () => {
+describe("#users.suspend", () => {
it("should suspend an user", async () => {
const { admin, user } = await seed();
@@ -321,7 +321,7 @@ describe("#users.suspend", async () => {
});
});
-describe("#users.activate", async () => {
+describe("#users.activate", () => {
it("should activate a suspended user", async () => {
const { admin, user } = await seed();
await user.update({
diff --git a/server/api/utils.js b/server/api/utils.js
index cac670dd..8947635b 100644
--- a/server/api/utils.js
+++ b/server/api/utils.js
@@ -1,7 +1,7 @@
// @flow
+import subDays from "date-fns/sub_days";
import debug from "debug";
import Router from "koa-router";
-import subDays from "date-fns/sub_days";
import { AuthenticationError } from "../errors";
import { Document, Attachment } from "../models";
import { Op } from "../sequelize";
diff --git a/server/api/utils.test.js b/server/api/utils.test.js
index a94fd540..940f5418 100644
--- a/server/api/utils.test.js
+++ b/server/api/utils.test.js
@@ -1,18 +1,18 @@
/* eslint-disable flowtype/require-valid-file-annotation */
-import TestServer from "fetch-test-server";
import subDays from "date-fns/sub_days";
+import TestServer from "fetch-test-server";
import app from "../app";
import { Document } from "../models";
import { sequelize } from "../sequelize";
-import { flushdb } from "../test/support";
import { buildDocument } from "../test/factories";
+import { flushdb } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#utils.gc", async () => {
+describe("#utils.gc", () => {
it("should destroy documents deleted more than 30 days ago", async () => {
const document = await buildDocument({
publishedAt: new Date(),
diff --git a/server/api/views.js b/server/api/views.js
index 489edd4f..e71a1e0d 100644
--- a/server/api/views.js
+++ b/server/api/views.js
@@ -1,9 +1,9 @@
// @flow
import Router from "koa-router";
import auth from "../middlewares/authentication";
-import { presentView } from "../presenters";
import { View, Document, Event } from "../models";
import policy from "../policies";
+import { presentView } from "../presenters";
const { authorize } = policy;
const router = new Router();
diff --git a/server/api/views.test.js b/server/api/views.test.js
index 4fca2753..5a62fdae 100644
--- a/server/api/views.test.js
+++ b/server/api/views.test.js
@@ -2,15 +2,15 @@
import TestServer from "fetch-test-server";
import app from "../app";
import { View, CollectionUser } from "../models";
-import { flushdb, seed } from "../test/support";
import { buildUser } from "../test/factories";
+import { flushdb, seed } from "../test/support";
const server = new TestServer(app.callback());
-beforeEach(flushdb);
-afterAll(server.close);
+beforeEach(() => flushdb());
+afterAll(() => server.close());
-describe("#views.list", async () => {
+describe("#views.list", () => {
it("should return views for a document", async () => {
const { user, document } = await seed();
await View.increment({ documentId: document.id, userId: user.id });
@@ -70,7 +70,7 @@ describe("#views.list", async () => {
});
});
-describe("#views.create", async () => {
+describe("#views.create", () => {
it("should allow creating a view record for document", async () => {
const { user, document } = await seed();
const res = await server.post("/api/views.create", {
diff --git a/server/app.js b/server/app.js
index 2cfd11eb..f207ec39 100644
--- a/server/app.js
+++ b/server/app.js
@@ -1,6 +1,7 @@
// @flow
+import * as Sentry from "@sentry/node";
+import Koa from "koa";
import compress from "koa-compress";
-import { compact } from "lodash";
import helmet, {
contentSecurityPolicy,
dnsPrefetchControl,
@@ -8,16 +9,15 @@ import helmet, {
} from "koa-helmet";
import logger from "koa-logger";
import mount from "koa-mount";
-import enforceHttps from "koa-sslify";
-import Koa from "koa";
import onerror from "koa-onerror";
-import * as Sentry from "@sentry/node";
-import updates from "./utils/updates";
+import enforceHttps from "koa-sslify";
+import { compact } from "lodash";
-import auth from "./auth";
import api from "./api";
+import auth from "./auth";
import emails from "./emails";
import routes from "./routes";
+import updates from "./utils/updates";
const app = new Koa();
diff --git a/server/auth/email.js b/server/auth/email.js
index 85d1db86..1f277d1d 100644
--- a/server/auth/email.js
+++ b/server/auth/email.js
@@ -1,13 +1,13 @@
// @flow
-import Router from "koa-router";
-import mailer from "../mailer";
import subMinutes from "date-fns/sub_minutes";
-import { getUserForEmailSigninToken } from "../utils/jwt";
-import { User, Team } from "../models";
+import Router from "koa-router";
+import { AuthorizationError } from "../errors";
+import mailer from "../mailer";
+import auth from "../middlewares/authentication";
import methodOverride from "../middlewares/methodOverride";
import validation from "../middlewares/validation";
-import auth from "../middlewares/authentication";
-import { AuthorizationError } from "../errors";
+import { User, Team } from "../models";
+import { getUserForEmailSigninToken } from "../utils/jwt";
const router = new Router();
diff --git a/server/auth/google.js b/server/auth/google.js
index faaaa163..d7f12639 100644
--- a/server/auth/google.js
+++ b/server/auth/google.js
@@ -1,11 +1,11 @@
// @flow
-import Sequelize from "sequelize";
import crypto from "crypto";
+import { OAuth2Client } from "google-auth-library";
import Router from "koa-router";
import { capitalize } from "lodash";
-import { OAuth2Client } from "google-auth-library";
-import { User, Team, Event } from "../models";
+import Sequelize from "sequelize";
import auth from "../middlewares/authentication";
+import { User, Team, Event } from "../models";
const Op = Sequelize.Op;
diff --git a/server/auth/index.js b/server/auth/index.js
index 050253ff..7aeb7fb0 100644
--- a/server/auth/index.js
+++ b/server/auth/index.js
@@ -1,16 +1,16 @@
// @flow
-import bodyParser from "koa-bodyparser";
-import Koa from "koa";
-import Router from "koa-router";
import addMonths from "date-fns/add_months";
-import validation from "../middlewares/validation";
+import Koa from "koa";
+import bodyParser from "koa-bodyparser";
+import Router from "koa-router";
import auth from "../middlewares/authentication";
-import { getCookieDomain } from "../utils/domains";
+import validation from "../middlewares/validation";
import { Team } from "../models";
+import { getCookieDomain } from "../utils/domains";
-import slack from "./slack";
-import google from "./google";
import email from "./email";
+import google from "./google";
+import slack from "./slack";
const app = new Koa();
const router = new Router();
diff --git a/server/auth/slack.js b/server/auth/slack.js
index 16859489..697bbb73 100644
--- a/server/auth/slack.js
+++ b/server/auth/slack.js
@@ -1,10 +1,9 @@
// @flow
-import Sequelize from "sequelize";
-import Router from "koa-router";
import addHours from "date-fns/add_hours";
-import auth from "../middlewares/authentication";
-import { getCookieDomain } from "../utils/domains";
+import Router from "koa-router";
+import Sequelize from "sequelize";
import { slackAuth } from "../../shared/utils/routeHelpers";
+import auth from "../middlewares/authentication";
import {
Authentication,
Collection,
@@ -14,6 +13,7 @@ import {
Team,
} from "../models";
import * as Slack from "../slack";
+import { getCookieDomain } from "../utils/domains";
const Op = Sequelize.Op;
const router = new Router();
diff --git a/server/commands/documentMover.js b/server/commands/documentMover.js
index eab4abe8..1004dc18 100644
--- a/server/commands/documentMover.js
+++ b/server/commands/documentMover.js
@@ -1,7 +1,7 @@
// @flow
+import { type Context } from "koa";
import { Document, Collection, Event } from "../models";
import { sequelize } from "../sequelize";
-import { type Context } from "koa";
export default async function documentMover({
user,
diff --git a/server/commands/documentMover.test.js b/server/commands/documentMover.test.js
index 9df52e18..04dd1020 100644
--- a/server/commands/documentMover.test.js
+++ b/server/commands/documentMover.test.js
@@ -1,11 +1,11 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import documentMover from "../commands/documentMover";
-import { flushdb, seed } from "../test/support";
import { buildDocument, buildCollection } from "../test/factories";
+import { flushdb, seed } from "../test/support";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
-describe("documentMover", async () => {
+describe("documentMover", () => {
const ip = "127.0.0.1";
it("should move within a collection", async () => {
diff --git a/server/commands/userInviter.js b/server/commands/userInviter.js
index 7040cdf0..0dcfd64c 100644
--- a/server/commands/userInviter.js
+++ b/server/commands/userInviter.js
@@ -1,7 +1,7 @@
// @flow
import { uniqBy } from "lodash";
-import { User, Event, Team } from "../models";
import mailer from "../mailer";
+import { User, Event, Team } from "../models";
import { sequelize } from "../sequelize";
type Invite = { name: string, email: string };
diff --git a/server/commands/userInviter.test.js b/server/commands/userInviter.test.js
index 3a22c820..8517a666 100644
--- a/server/commands/userInviter.test.js
+++ b/server/commands/userInviter.test.js
@@ -1,11 +1,11 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import userInviter from "../commands/userInviter";
-import { flushdb } from "../test/support";
import { buildUser } from "../test/factories";
+import { flushdb } from "../test/support";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
-describe("userInviter", async () => {
+describe("userInviter", () => {
const ip = "127.0.0.1";
it("should return sent invites", async () => {
diff --git a/server/emails/CollectionNotificationEmail.js b/server/emails/CollectionNotificationEmail.js
index 62f882a8..3989469f 100644
--- a/server/emails/CollectionNotificationEmail.js
+++ b/server/emails/CollectionNotificationEmail.js
@@ -1,13 +1,13 @@
// @flow
import * as React from "react";
import { User, Collection } from "../models";
-import EmailTemplate from "./components/EmailLayout";
import Body from "./components/Body";
import Button from "./components/Button";
-import Heading from "./components/Heading";
-import Header from "./components/Header";
-import Footer from "./components/Footer";
+import EmailTemplate from "./components/EmailLayout";
import EmptySpace from "./components/EmptySpace";
+import Footer from "./components/Footer";
+import Header from "./components/Header";
+import Heading from "./components/Heading";
export type Props = {
actor: User,
diff --git a/server/emails/DocumentNotificationEmail.js b/server/emails/DocumentNotificationEmail.js
index 50878dde..00fdfa23 100644
--- a/server/emails/DocumentNotificationEmail.js
+++ b/server/emails/DocumentNotificationEmail.js
@@ -1,13 +1,13 @@
// @flow
import * as React from "react";
import { User, Document, Team, Collection } from "../models";
-import EmailTemplate from "./components/EmailLayout";
import Body from "./components/Body";
import Button from "./components/Button";
-import Heading from "./components/Heading";
-import Header from "./components/Header";
-import Footer from "./components/Footer";
+import EmailTemplate from "./components/EmailLayout";
import EmptySpace from "./components/EmptySpace";
+import Footer from "./components/Footer";
+import Header from "./components/Header";
+import Heading from "./components/Heading";
export type Props = {
actor: User,
diff --git a/server/emails/ExportEmail.js b/server/emails/ExportEmail.js
index 7be8245a..df2bb2d4 100644
--- a/server/emails/ExportEmail.js
+++ b/server/emails/ExportEmail.js
@@ -1,12 +1,12 @@
// @flow
import * as React from "react";
-import EmailTemplate from "./components/EmailLayout";
import Body from "./components/Body";
import Button from "./components/Button";
-import Heading from "./components/Heading";
-import Header from "./components/Header";
-import Footer from "./components/Footer";
+import EmailTemplate from "./components/EmailLayout";
import EmptySpace from "./components/EmptySpace";
+import Footer from "./components/Footer";
+import Header from "./components/Header";
+import Heading from "./components/Heading";
export const exportEmailText = `
Your Data Export
diff --git a/server/emails/InviteEmail.js b/server/emails/InviteEmail.js
index ff5a84f4..a293aa14 100644
--- a/server/emails/InviteEmail.js
+++ b/server/emails/InviteEmail.js
@@ -1,12 +1,12 @@
// @flow
import * as React from "react";
-import EmailTemplate from "./components/EmailLayout";
import Body from "./components/Body";
import Button from "./components/Button";
-import Heading from "./components/Heading";
-import Header from "./components/Header";
-import Footer from "./components/Footer";
+import EmailTemplate from "./components/EmailLayout";
import EmptySpace from "./components/EmptySpace";
+import Footer from "./components/Footer";
+import Header from "./components/Header";
+import Heading from "./components/Heading";
export type Props = {
name: string,
diff --git a/server/emails/SigninEmail.js b/server/emails/SigninEmail.js
index 939c3447..f9f736ec 100644
--- a/server/emails/SigninEmail.js
+++ b/server/emails/SigninEmail.js
@@ -1,12 +1,12 @@
// @flow
import * as React from "react";
-import EmailTemplate from "./components/EmailLayout";
import Body from "./components/Body";
import Button from "./components/Button";
-import Heading from "./components/Heading";
-import Header from "./components/Header";
-import Footer from "./components/Footer";
+import EmailTemplate from "./components/EmailLayout";
import EmptySpace from "./components/EmptySpace";
+import Footer from "./components/Footer";
+import Header from "./components/Header";
+import Heading from "./components/Heading";
export type Props = {
token: string,
diff --git a/server/emails/WelcomeEmail.js b/server/emails/WelcomeEmail.js
index 4f4024e5..6745a8d8 100644
--- a/server/emails/WelcomeEmail.js
+++ b/server/emails/WelcomeEmail.js
@@ -1,12 +1,12 @@
// @flow
import * as React from "react";
-import EmailTemplate from "./components/EmailLayout";
import Body from "./components/Body";
import Button from "./components/Button";
-import Heading from "./components/Heading";
-import Header from "./components/Header";
-import Footer from "./components/Footer";
+import EmailTemplate from "./components/EmailLayout";
import EmptySpace from "./components/EmptySpace";
+import Footer from "./components/Footer";
+import Header from "./components/Header";
+import Heading from "./components/Heading";
export type Props = {
teamUrl: string,
diff --git a/server/emails/components/Body.js b/server/emails/components/Body.js
index d0f74c96..eef2ea4f 100644
--- a/server/emails/components/Body.js
+++ b/server/emails/components/Body.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { Table, TBody, TR, TD } from "oy-vey";
+import * as React from "react";
import EmptySpace from "./EmptySpace";
diff --git a/server/emails/components/EmailLayout.js b/server/emails/components/EmailLayout.js
index 80424781..05cd84c7 100644
--- a/server/emails/components/EmailLayout.js
+++ b/server/emails/components/EmailLayout.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { Table, TBody, TR, TD } from "oy-vey";
+import * as React from "react";
import theme from "../../../shared/styles/theme";
type Props = {
diff --git a/server/emails/components/EmptySpace.js b/server/emails/components/EmptySpace.js
index 051fbeb0..6e934911 100644
--- a/server/emails/components/EmptySpace.js
+++ b/server/emails/components/EmptySpace.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { Table, TBody, TR, TD } from "oy-vey";
+import * as React from "react";
const EmptySpace = ({ height }: { height?: number }) => {
height = height || 16;
diff --git a/server/emails/components/Footer.js b/server/emails/components/Footer.js
index 1e34b4f2..c54330ac 100644
--- a/server/emails/components/Footer.js
+++ b/server/emails/components/Footer.js
@@ -1,8 +1,8 @@
// @flow
-import * as React from "react";
import { Table, TBody, TR, TD } from "oy-vey";
-import { twitterUrl } from "../../../shared/utils/routeHelpers";
+import * as React from "react";
import theme from "../../../shared/styles/theme";
+import { twitterUrl } from "../../../shared/utils/routeHelpers";
type Props = {
unsubscribeUrl?: string,
diff --git a/server/emails/components/Header.js b/server/emails/components/Header.js
index 54d0fe9d..940fdf22 100644
--- a/server/emails/components/Header.js
+++ b/server/emails/components/Header.js
@@ -1,6 +1,6 @@
// @flow
-import * as React from "react";
import { Table, TBody, TR, TD } from "oy-vey";
+import * as React from "react";
import EmptySpace from "./EmptySpace";
export default () => {
diff --git a/server/events.js b/server/events.js
index 066cf0ac..a7216658 100644
--- a/server/events.js
+++ b/server/events.js
@@ -1,7 +1,7 @@
// @flow
import * as Sentry from "@sentry/node";
-import { createQueue } from "./utils/queue";
import services from "./services";
+import { createQueue } from "./utils/queue";
export type UserEvent =
| {
diff --git a/server/index.js b/server/index.js
index a05989d9..840625e8 100644
--- a/server/index.js
+++ b/server/index.js
@@ -1,13 +1,13 @@
// @flow
import http from "http";
import IO from "socket.io";
-import SocketAuth from "socketio-auth";
import socketRedisAdapter from "socket.io-redis";
-import { getUserForJWT } from "./utils/jwt";
-import { Document, Collection, View } from "./models";
-import { client, subscriber } from "./redis";
+import SocketAuth from "socketio-auth";
import app from "./app";
+import { Document, Collection, View } from "./models";
import policy from "./policies";
+import { client, subscriber } from "./redis";
+import { getUserForJWT } from "./utils/jwt";
const server = http.createServer(app.callback());
let io;
diff --git a/server/logistics.js b/server/logistics.js
index 371741bf..a62ade09 100644
--- a/server/logistics.js
+++ b/server/logistics.js
@@ -2,7 +2,6 @@
import debug from "debug";
import mailer from "./mailer";
import { Collection, Team } from "./models";
-import { archiveCollections } from "./utils/zip";
import { createQueue } from "./utils/queue";
const log = debug("logistics");
@@ -18,6 +17,7 @@ const queueOptions = {
async function exportAndEmailCollections(teamId: string, email: string) {
log("Archiving team", teamId);
+ const { archiveCollections } = require("./utils/zip");
const team = await Team.findByPk(teamId);
const collections = await Collection.findAll({
where: { teamId },
diff --git a/server/mailer.js b/server/mailer.js
index 9acbb60e..2d89b436 100644
--- a/server/mailer.js
+++ b/server/mailer.js
@@ -1,29 +1,29 @@
// @flow
-import * as React from "react";
-import debug from "debug";
import * as Sentry from "@sentry/node";
+import debug from "debug";
import nodemailer from "nodemailer";
import Oy from "oy-vey";
-import { createQueue } from "./utils/queue";
-import { baseStyles } from "./emails/components/EmailLayout";
-import { WelcomeEmail, welcomeEmailText } from "./emails/WelcomeEmail";
-import { ExportEmail, exportEmailText } from "./emails/ExportEmail";
-import { SigninEmail, signinEmailText } from "./emails/SigninEmail";
-import {
- type Props as InviteEmailT,
- InviteEmail,
- inviteEmailText,
-} from "./emails/InviteEmail";
-import {
- type Props as DocumentNotificationEmailT,
- DocumentNotificationEmail,
- documentNotificationEmailText,
-} from "./emails/DocumentNotificationEmail";
+import * as React from "react";
import {
type Props as CollectionNotificationEmailT,
CollectionNotificationEmail,
collectionNotificationEmailText,
} from "./emails/CollectionNotificationEmail";
+import {
+ type Props as DocumentNotificationEmailT,
+ DocumentNotificationEmail,
+ documentNotificationEmailText,
+} from "./emails/DocumentNotificationEmail";
+import { ExportEmail, exportEmailText } from "./emails/ExportEmail";
+import {
+ type Props as InviteEmailT,
+ InviteEmail,
+ inviteEmailText,
+} from "./emails/InviteEmail";
+import { SigninEmail, signinEmailText } from "./emails/SigninEmail";
+import { WelcomeEmail, welcomeEmailText } from "./emails/WelcomeEmail";
+import { baseStyles } from "./emails/components/EmailLayout";
+import { createQueue } from "./utils/queue";
const log = debug("emails");
diff --git a/server/middlewares/authentication.js b/server/middlewares/authentication.js
index 0a235d40..8f923fae 100644
--- a/server/middlewares/authentication.js
+++ b/server/middlewares/authentication.js
@@ -1,12 +1,12 @@
// @flow
+import addMinutes from "date-fns/add_minutes";
+import addMonths from "date-fns/add_months";
import JWT from "jsonwebtoken";
import { type Context } from "koa";
-import { User, ApiKey } from "../models";
-import { getUserForJWT } from "../utils/jwt";
-import { getCookieDomain } from "../utils/domains";
import { AuthenticationError, UserSuspendedError } from "../errors";
-import addMonths from "date-fns/add_months";
-import addMinutes from "date-fns/add_minutes";
+import { User, ApiKey } from "../models";
+import { getCookieDomain } from "../utils/domains";
+import { getUserForJWT } from "../utils/jwt";
export default function auth(options?: { required?: boolean } = {}) {
return async function authMiddleware(ctx: Context, next: () => Promise<*>) {
diff --git a/server/middlewares/authentication.test.js b/server/middlewares/authentication.test.js
index c01e8bf2..96279c75 100644
--- a/server/middlewares/authentication.test.js
+++ b/server/middlewares/authentication.test.js
@@ -1,13 +1,13 @@
/* eslint-disable flowtype/require-valid-file-annotation */
-import { flushdb, seed } from "../test/support";
-import { buildUser } from "../test/factories";
-import { ApiKey } from "../models";
import randomstring from "randomstring";
+import { ApiKey } from "../models";
+import { buildUser } from "../test/factories";
+import { flushdb, seed } from "../test/support";
import auth from "./authentication";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
-describe("Authentication middleware", async () => {
+describe("Authentication middleware", () => {
describe("with JWT", () => {
it("should authenticate with correct token", async () => {
const state = {};
diff --git a/server/middlewares/errorHandling.js b/server/middlewares/errorHandling.js
index fb5b1207..d5a8985d 100644
--- a/server/middlewares/errorHandling.js
+++ b/server/middlewares/errorHandling.js
@@ -1,7 +1,7 @@
// @flow
-import Sequelize from "sequelize";
-import { snakeCase } from "lodash";
import { type Context } from "koa";
+import { snakeCase } from "lodash";
+import Sequelize from "sequelize";
export default function errorHandling() {
return async function errorHandlingMiddleware(
diff --git a/server/middlewares/methodOverride.js b/server/middlewares/methodOverride.js
index fed29e57..2ff5b48c 100644
--- a/server/middlewares/methodOverride.js
+++ b/server/middlewares/methodOverride.js
@@ -1,6 +1,6 @@
// @flow
-import queryString from "query-string";
import { type Context } from "koa";
+import queryString from "query-string";
export default function methodOverride() {
return async function methodOverrideMiddleware(
diff --git a/server/middlewares/validation.js b/server/middlewares/validation.js
index d68f8025..a46c376d 100644
--- a/server/middlewares/validation.js
+++ b/server/middlewares/validation.js
@@ -1,8 +1,8 @@
// @flow
-import validator from "validator";
import { type Context } from "koa";
-import { ParamRequiredError, ValidationError } from "../errors";
+import validator from "validator";
import { validateColorHex } from "../../shared/utils/color";
+import { ParamRequiredError, ValidationError } from "../errors";
export default function validation() {
return function validationMiddleware(ctx: Context, next: () => Promise<*>) {
diff --git a/server/models/ApiKey.js b/server/models/ApiKey.js
index 9954eec8..bde19492 100644
--- a/server/models/ApiKey.js
+++ b/server/models/ApiKey.js
@@ -1,6 +1,6 @@
// @flow
-import { DataTypes, sequelize } from "../sequelize";
import randomstring from "randomstring";
+import { DataTypes, sequelize } from "../sequelize";
const ApiKey = sequelize.define(
"apiKeys",
diff --git a/server/models/Collection.js b/server/models/Collection.js
index f183ced7..1d869b5c 100644
--- a/server/models/Collection.js
+++ b/server/models/Collection.js
@@ -1,10 +1,10 @@
// @flow
import { find, concat, remove, uniq } from "lodash";
-import slug from "slug";
import randomstring from "randomstring";
+import slug from "slug";
import { DataTypes, sequelize } from "../sequelize";
-import Document from "./Document";
import CollectionUser from "./CollectionUser";
+import Document from "./Document";
slug.defaults.mode = "rfc3986";
diff --git a/server/models/Collection.test.js b/server/models/Collection.test.js
index f1c30fcb..cad48319 100644
--- a/server/models/Collection.test.js
+++ b/server/models/Collection.test.js
@@ -1,5 +1,5 @@
/* eslint-disable flowtype/require-valid-file-annotation */
-import { flushdb, seed } from "../test/support";
+import uuid from "uuid";
import { Collection, Document } from "../models";
import {
buildUser,
@@ -7,9 +7,9 @@ import {
buildCollection,
buildTeam,
} from "../test/factories";
-import uuid from "uuid";
+import { flushdb, seed } from "../test/support";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
beforeEach(jest.resetAllMocks);
describe("#url", () => {
@@ -19,7 +19,7 @@ describe("#url", () => {
});
});
-describe("#addDocumentToStructure", async () => {
+describe("#addDocumentToStructure", () => {
test("should add as last element without index", async () => {
const { collection } = await seed();
const id = uuid.v4();
@@ -86,7 +86,7 @@ describe("#addDocumentToStructure", async () => {
expect(collection.documentStructure[0].children[0].id).toBe(id);
});
- describe("options: documentJson", async () => {
+ describe("options: documentJson", () => {
test("should append supplied json over document's own", async () => {
const { collection } = await seed();
const id = uuid.v4();
diff --git a/server/models/Document.js b/server/models/Document.js
index 4512e320..224409ed 100644
--- a/server/models/Document.js
+++ b/server/models/Document.js
@@ -1,15 +1,15 @@
// @flow
+import removeMarkdown from "@tommoor/remove-markdown";
import { map, find, compact, uniq } from "lodash";
-import MarkdownSerializer from "slate-md-serializer";
import randomstring from "randomstring";
import Sequelize, { type Transaction } from "sequelize";
-import removeMarkdown from "@tommoor/remove-markdown";
+import MarkdownSerializer from "slate-md-serializer";
import isUUID from "validator/lib/isUUID";
-import { Collection, User } from "../models";
-import { DataTypes, sequelize } from "../sequelize";
import parseTitle from "../../shared/utils/parseTitle";
import unescape from "../../shared/utils/unescape";
+import { Collection, User } from "../models";
+import { DataTypes, sequelize } from "../sequelize";
import slugify from "../utils/slugify";
import Revision from "./Revision";
diff --git a/server/models/Document.test.js b/server/models/Document.test.js
index f70b28ad..1bdae5e1 100644
--- a/server/models/Document.test.js
+++ b/server/models/Document.test.js
@@ -1,9 +1,9 @@
/* eslint-disable flowtype/require-valid-file-annotation */
-import { flushdb } from "../test/support";
import { Document } from "../models";
import { buildDocument, buildCollection, buildTeam } from "../test/factories";
+import { flushdb } from "../test/support";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
beforeEach(jest.resetAllMocks);
describe("#getSummary", () => {
diff --git a/server/models/Event.js b/server/models/Event.js
index 846c2a05..361238a4 100644
--- a/server/models/Event.js
+++ b/server/models/Event.js
@@ -1,6 +1,6 @@
// @flow
-import { DataTypes, sequelize } from "../sequelize";
import events from "../events";
+import { DataTypes, sequelize } from "../sequelize";
const Event = sequelize.define("event", {
id: {
diff --git a/server/models/Group.js b/server/models/Group.js
index b333547a..9dae4b89 100644
--- a/server/models/Group.js
+++ b/server/models/Group.js
@@ -1,6 +1,6 @@
// @flow
-import { Op, DataTypes, sequelize } from "../sequelize";
import { CollectionGroup, GroupUser } from "../models";
+import { Op, DataTypes, sequelize } from "../sequelize";
const Group = sequelize.define(
"group",
diff --git a/server/models/Group.test.js b/server/models/Group.test.js
index 9909b898..9fa0baf4 100644
--- a/server/models/Group.test.js
+++ b/server/models/Group.test.js
@@ -1,9 +1,9 @@
/* eslint-disable flowtype/require-valid-file-annotation */
-import { flushdb } from "../test/support";
import { CollectionGroup, GroupUser } from "../models";
import { buildUser, buildGroup, buildCollection } from "../test/factories";
+import { flushdb } from "../test/support";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
beforeEach(jest.resetAllMocks);
describe("afterDestroy hook", () => {
diff --git a/server/models/Revision.js b/server/models/Revision.js
index ee3b02b9..711ae0ad 100644
--- a/server/models/Revision.js
+++ b/server/models/Revision.js
@@ -1,6 +1,6 @@
// @flow
-import { DataTypes, sequelize } from "../sequelize";
import MarkdownSerializer from "slate-md-serializer";
+import { DataTypes, sequelize } from "../sequelize";
const serializer = new MarkdownSerializer();
diff --git a/server/models/Team.js b/server/models/Team.js
index 9567fc83..4563c5e3 100644
--- a/server/models/Team.js
+++ b/server/models/Team.js
@@ -1,16 +1,16 @@
// @flow
-import uuid from "uuid";
-import { URL } from "url";
import fs from "fs";
-import util from "util";
import path from "path";
-import { DataTypes, sequelize, Op } from "../sequelize";
-import { publicS3Endpoint, uploadToS3FromUrl } from "../utils/s3";
+import { URL } from "url";
+import util from "util";
+import uuid from "uuid";
import {
stripSubdomain,
RESERVED_SUBDOMAINS,
} from "../../shared/utils/domains";
import { ValidationError } from "../errors";
+import { DataTypes, sequelize, Op } from "../sequelize";
+import { publicS3Endpoint, uploadToS3FromUrl } from "../utils/s3";
import Collection from "./Collection";
import Document from "./Document";
diff --git a/server/models/Team.test.js b/server/models/Team.test.js
index 2373309d..2d33841d 100644
--- a/server/models/Team.test.js
+++ b/server/models/Team.test.js
@@ -1,8 +1,8 @@
/* eslint-disable flowtype/require-valid-file-annotation */
-import { flushdb } from "../test/support";
import { buildTeam } from "../test/factories";
+import { flushdb } from "../test/support";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
it("should set subdomain if available", async () => {
const team = await buildTeam();
diff --git a/server/models/User.js b/server/models/User.js
index 9e835a14..1b87d0c3 100644
--- a/server/models/User.js
+++ b/server/models/User.js
@@ -1,12 +1,12 @@
// @flow
import crypto from "crypto";
-import uuid from "uuid";
-import JWT from "jsonwebtoken";
import subMinutes from "date-fns/sub_minutes";
+import JWT from "jsonwebtoken";
+import uuid from "uuid";
import { ValidationError } from "../errors";
+import { sendEmail } from "../mailer";
import { DataTypes, sequelize, encryptedFields } from "../sequelize";
import { publicS3Endpoint, uploadToS3FromUrl } from "../utils/s3";
-import { sendEmail } from "../mailer";
import { Star, Team, Collection, NotificationSetting, ApiKey } from ".";
const DEFAULT_AVATAR_HOST = "https://tiley.herokuapp.com";
diff --git a/server/models/User.test.js b/server/models/User.test.js
index cb49fbe9..b25c9bf6 100644
--- a/server/models/User.test.js
+++ b/server/models/User.test.js
@@ -1,8 +1,8 @@
/* eslint-disable flowtype/require-valid-file-annotation */
-import { flushdb } from "../test/support";
import { buildUser } from "../test/factories";
+import { flushdb } from "../test/support";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
it("should set JWT secret", async () => {
const user = await buildUser();
diff --git a/server/models/View.js b/server/models/View.js
index ce87709d..b0d88e48 100644
--- a/server/models/View.js
+++ b/server/models/View.js
@@ -1,8 +1,8 @@
// @flow
import subMilliseconds from "date-fns/sub_milliseconds";
-import { Op, DataTypes, sequelize } from "../sequelize";
-import { User } from "../models";
import { USER_PRESENCE_INTERVAL } from "../../shared/constants";
+import { User } from "../models";
+import { Op, DataTypes, sequelize } from "../sequelize";
const View = sequelize.define(
"view",
diff --git a/server/models/index.js b/server/models/index.js
index 43b1cd53..16e8fe85 100644
--- a/server/models/index.js
+++ b/server/models/index.js
@@ -4,13 +4,13 @@ import Attachment from "./Attachment";
import Authentication from "./Authentication";
import Backlink from "./Backlink";
import Collection from "./Collection";
-import CollectionUser from "./CollectionUser";
import CollectionGroup from "./CollectionGroup";
+import CollectionUser from "./CollectionUser";
import Document from "./Document";
import Event from "./Event";
-import Integration from "./Integration";
import Group from "./Group";
import GroupUser from "./GroupUser";
+import Integration from "./Integration";
import Notification from "./Notification";
import NotificationSetting from "./NotificationSetting";
import Revision from "./Revision";
diff --git a/server/policies/apiKey.js b/server/policies/apiKey.js
index 45db56b6..29f63462 100644
--- a/server/policies/apiKey.js
+++ b/server/policies/apiKey.js
@@ -1,6 +1,6 @@
// @flow
-import policy from "./policy";
import { ApiKey, User } from "../models";
+import policy from "./policy";
const { allow } = policy;
diff --git a/server/policies/collection.js b/server/policies/collection.js
index 8b7449ed..e0fc7c1d 100644
--- a/server/policies/collection.js
+++ b/server/policies/collection.js
@@ -1,9 +1,9 @@
// @flow
import invariant from "invariant";
-import policy from "./policy";
import { concat, some } from "lodash";
-import { Collection, User } from "../models";
import { AdminRequiredError } from "../errors";
+import { Collection, User } from "../models";
+import policy from "./policy";
const { allow } = policy;
diff --git a/server/policies/document.js b/server/policies/document.js
index dc68f21e..cd56b73c 100644
--- a/server/policies/document.js
+++ b/server/policies/document.js
@@ -1,7 +1,7 @@
// @flow
import invariant from "invariant";
-import policy from "./policy";
import { Document, Revision, User } from "../models";
+import policy from "./policy";
const { allow, cannot } = policy;
diff --git a/server/policies/group.js b/server/policies/group.js
index 8d484397..262d02b6 100644
--- a/server/policies/group.js
+++ b/server/policies/group.js
@@ -1,7 +1,7 @@
// @flow
-import policy from "./policy";
-import { Group, User } from "../models";
import { AdminRequiredError } from "../errors";
+import { Group, User } from "../models";
+import policy from "./policy";
const { allow } = policy;
diff --git a/server/policies/index.test.js b/server/policies/index.test.js
index cb88194d..9c1de0d4 100644
--- a/server/policies/index.test.js
+++ b/server/policies/index.test.js
@@ -1,9 +1,9 @@
/* eslint-disable flowtype/require-valid-file-annotation */
-import { flushdb } from "../test/support";
import { buildUser } from "../test/factories";
+import { flushdb } from "../test/support";
import { serialize } from "./index";
-beforeEach(flushdb);
+beforeEach(() => flushdb());
it("should serialize policy", async () => {
const user = await buildUser();
diff --git a/server/policies/integration.js b/server/policies/integration.js
index 4917e848..38376e0a 100644
--- a/server/policies/integration.js
+++ b/server/policies/integration.js
@@ -1,7 +1,7 @@
// @flow
-import policy from "./policy";
-import { Integration, User } from "../models";
import { AdminRequiredError } from "../errors";
+import { Integration, User } from "../models";
+import policy from "./policy";
const { allow } = policy;
diff --git a/server/policies/notificationSetting.js b/server/policies/notificationSetting.js
index 8a03c2b6..667bd415 100644
--- a/server/policies/notificationSetting.js
+++ b/server/policies/notificationSetting.js
@@ -1,6 +1,6 @@
// @flow
-import policy from "./policy";
import { NotificationSetting, User } from "../models";
+import policy from "./policy";
const { allow } = policy;
diff --git a/server/policies/share.js b/server/policies/share.js
index 6455dd4e..b09e3600 100644
--- a/server/policies/share.js
+++ b/server/policies/share.js
@@ -1,7 +1,7 @@
// @flow
-import policy from "./policy";
-import { Share, User } from "../models";
import { AdminRequiredError } from "../errors";
+import { Share, User } from "../models";
+import policy from "./policy";
const { allow } = policy;
diff --git a/server/policies/team.js b/server/policies/team.js
index 0f474b06..1228c899 100644
--- a/server/policies/team.js
+++ b/server/policies/team.js
@@ -1,7 +1,7 @@
// @flow
-import policy from "./policy";
-import { Team, User } from "../models";
import { AdminRequiredError } from "../errors";
+import { Team, User } from "../models";
+import policy from "./policy";
const { allow } = policy;
diff --git a/server/policies/user.js b/server/policies/user.js
index 6098da15..f1b48383 100644
--- a/server/policies/user.js
+++ b/server/policies/user.js
@@ -1,7 +1,7 @@
// @flow
-import policy from "./policy";
-import { User } from "../models";
import { AdminRequiredError } from "../errors";
+import { User } from "../models";
+import policy from "./policy";
const { allow } = policy;
diff --git a/server/presenters/collection.js b/server/presenters/collection.js
index c8bea575..22893f9f 100644
--- a/server/presenters/collection.js
+++ b/server/presenters/collection.js
@@ -1,6 +1,6 @@
// @flow
-import { Collection } from "../models";
import naturalSort from "../../shared/utils/naturalSort";
+import { Collection } from "../models";
type Document = {
children: Document[],
diff --git a/server/presenters/index.js b/server/presenters/index.js
index 270be632..a6af44a1 100644
--- a/server/presenters/index.js
+++ b/server/presenters/index.js
@@ -1,21 +1,21 @@
// @flow
-import presentUser from "./user";
-import presentView from "./view";
+import presentApiKey from "./apiKey";
+import presentCollection from "./collection";
+import presentCollectionGroupMembership from "./collectionGroupMembership";
import presentDocument from "./document";
import presentEvent from "./event";
-import presentRevision from "./revision";
-import presentCollection from "./collection";
-import presentApiKey from "./apiKey";
-import presentShare from "./share";
-import presentTeam from "./team";
+import presentGroup from "./group";
+import presentGroupMembership from "./groupMembership";
import presentIntegration from "./integration";
import presentMembership from "./membership";
import presentNotificationSetting from "./notificationSetting";
-import presentSlackAttachment from "./slackAttachment";
import presentPolicies from "./policy";
-import presentGroup from "./group";
-import presentGroupMembership from "./groupMembership";
-import presentCollectionGroupMembership from "./collectionGroupMembership";
+import presentRevision from "./revision";
+import presentShare from "./share";
+import presentSlackAttachment from "./slackAttachment";
+import presentTeam from "./team";
+import presentUser from "./user";
+import presentView from "./view";
export {
presentUser,
diff --git a/server/routes.js b/server/routes.js
index 461384e8..fe281a33 100644
--- a/server/routes.js
+++ b/server/routes.js
@@ -1,15 +1,15 @@
// @flow
+import fs from "fs";
import path from "path";
+import util from "util";
import Koa from "koa";
import Router from "koa-router";
-import fs from "fs";
-import util from "util";
import sendfile from "koa-sendfile";
import serve from "koa-static";
-import apexRedirect from "./middlewares/apexRedirect";
-import { robotsResponse } from "./utils/robots";
-import { opensearchResponse } from "./utils/opensearch";
import environment from "./env";
+import apexRedirect from "./middlewares/apexRedirect";
+import { opensearchResponse } from "./utils/opensearch";
+import { robotsResponse } from "./utils/robots";
const isProduction = process.env.NODE_ENV === "production";
const koa = new Koa();
diff --git a/server/sequelize.js b/server/sequelize.js
index c064f901..40dcff1a 100644
--- a/server/sequelize.js
+++ b/server/sequelize.js
@@ -1,7 +1,7 @@
// @flow
+import debug from "debug";
import Sequelize from "sequelize";
import EncryptedField from "sequelize-encrypted";
-import debug from "debug";
export const encryptedFields = EncryptedField(
Sequelize,
diff --git a/server/services/backlinks.js b/server/services/backlinks.js
index e704ac9c..1d199565 100644
--- a/server/services/backlinks.js
+++ b/server/services/backlinks.js
@@ -1,8 +1,8 @@
// @flow
import { difference } from "lodash";
+import parseDocumentIds from "../../shared/utils/parseDocumentIds";
import type { DocumentEvent } from "../events";
import { Document, Revision, Backlink } from "../models";
-import parseDocumentIds from "../../shared/utils/parseDocumentIds";
import slugify from "../utils/slugify";
export default class Backlinks {
diff --git a/server/services/backlinks.test.js b/server/services/backlinks.test.js
index e5a193bf..b2c849da 100644
--- a/server/services/backlinks.test.js
+++ b/server/services/backlinks.test.js
@@ -1,12 +1,12 @@
/* eslint-disable flowtype/require-valid-file-annotation */
+import Backlink from "../models/Backlink";
+import { buildDocument } from "../test/factories";
import { flushdb } from "../test/support";
import BacklinksService from "./backlinks";
-import { buildDocument } from "../test/factories";
-import Backlink from "../models/Backlink";
const Backlinks = new BacklinksService();
-beforeEach(flushdb);
+beforeEach(() => flushdb());
beforeEach(jest.resetAllMocks);
describe("documents.update", () => {
diff --git a/server/services/index.js b/server/services/index.js
index f6ef7e97..ecb0270e 100644
--- a/server/services/index.js
+++ b/server/services/index.js
@@ -1,7 +1,7 @@
// @flow
+import path from "path";
import debug from "debug";
import fs from "fs-extra";
-import path from "path";
const log = debug("services");
const services = {};
diff --git a/server/services/notifications.js b/server/services/notifications.js
index fdd62c5f..337a6c5d 100644
--- a/server/services/notifications.js
+++ b/server/services/notifications.js
@@ -1,6 +1,6 @@
// @flow
-import { Op } from "../sequelize";
import type { DocumentEvent, CollectionEvent, Event } from "../events";
+import mailer from "../mailer";
import {
Document,
Team,
@@ -8,7 +8,7 @@ import {
User,
NotificationSetting,
} from "../models";
-import mailer from "../mailer";
+import { Op } from "../sequelize";
export default class Notifications {
async on(event: Event) {
diff --git a/server/services/websockets.js b/server/services/websockets.js
index 5b8e97b5..df460290 100644
--- a/server/services/websockets.js
+++ b/server/services/websockets.js
@@ -1,4 +1,6 @@
// @flow
+import subHours from "date-fns/sub_hours";
+import { socketio } from "../";
import type { Event } from "../events";
import {
Document,
@@ -7,9 +9,7 @@ import {
CollectionGroup,
GroupUser,
} from "../models";
-import { socketio } from "../";
import { Op } from "../sequelize";
-import subHours from "date-fns/sub_hours";
export default class Websockets {
async on(event: Event) {
diff --git a/server/slack.js b/server/slack.js
index 91f9a7f6..dcd599a4 100644
--- a/server/slack.js
+++ b/server/slack.js
@@ -1,6 +1,6 @@
// @flow
-import fetch from "isomorphic-fetch";
import querystring from "querystring";
+import fetch from "isomorphic-fetch";
import { InvalidRequestError } from "./errors";
const SLACK_API_URL = "https://slack.com/api";
diff --git a/server/test/factories.js b/server/test/factories.js
index 0f860d4f..ed8afb37 100644
--- a/server/test/factories.js
+++ b/server/test/factories.js
@@ -1,4 +1,5 @@
// @flow
+import uuid from "uuid";
import {
Share,
Team,
@@ -10,7 +11,6 @@ import {
GroupUser,
Attachment,
} from "../models";
-import uuid from "uuid";
let count = 0;
diff --git a/server/test/helper.js b/server/test/helper.js
index eb6bc197..496b46d2 100644
--- a/server/test/helper.js
+++ b/server/test/helper.js
@@ -1,5 +1,4 @@
// @flow
-/* global jest */
require("dotenv").config({ silent: true });
// test environment variables
@@ -7,8 +6,8 @@ process.env.DATABASE_URL = process.env.DATABASE_URL_TEST;
process.env.NODE_ENV = "test";
const Sequelize = require("sequelize");
-const sequelize = require("../sequelize").sequelize;
const Umzug = require("umzug");
+const sequelize = require("../sequelize").sequelize;
const queryInterface = sequelize.getQueryInterface();
diff --git a/server/utils/jwt.js b/server/utils/jwt.js
index 08a30c9f..925fdaff 100644
--- a/server/utils/jwt.js
+++ b/server/utils/jwt.js
@@ -1,6 +1,6 @@
// @flow
-import JWT from "jsonwebtoken";
import subMinutes from "date-fns/sub_minutes";
+import JWT from "jsonwebtoken";
import { AuthenticationError } from "../errors";
import { User } from "../models";
diff --git a/server/utils/prefetchTags.js b/server/utils/prefetchTags.js
index e3b3709f..d002ea04 100644
--- a/server/utils/prefetchTags.js
+++ b/server/utils/prefetchTags.js
@@ -1,7 +1,7 @@
// @flow
-import * as React from "react";
import fs from "fs";
import path from "path";
+import * as React from "react";
import webpackConfig from "../../webpack.config";
const PUBLIC_PATH = webpackConfig.output.publicPath;
diff --git a/server/utils/queue.js b/server/utils/queue.js
index 12fdd89c..ffc4a741 100644
--- a/server/utils/queue.js
+++ b/server/utils/queue.js
@@ -1,6 +1,6 @@
// @flow
-import Redis from "ioredis";
import Queue from "bull";
+import Redis from "ioredis";
import { client, subscriber } from "../redis";
export function createQueue(name: string) {
diff --git a/server/utils/s3.js b/server/utils/s3.js
index ee4245f4..4e72a12b 100644
--- a/server/utils/s3.js
+++ b/server/utils/s3.js
@@ -1,11 +1,11 @@
// @flow
import crypto from "crypto";
+import * as Sentry from "@sentry/node";
+import AWS from "aws-sdk";
import addHours from "date-fns/add_hours";
import format from "date-fns/format";
-import AWS from "aws-sdk";
import invariant from "invariant";
import fetch from "isomorphic-fetch";
-import * as Sentry from "@sentry/node";
const AWS_SECRET_ACCESS_KEY = process.env.AWS_SECRET_ACCESS_KEY;
const AWS_ACCESS_KEY_ID = process.env.AWS_ACCESS_KEY_ID;
diff --git a/server/utils/updates.js b/server/utils/updates.js
index 8bff9cc2..1d52e9c1 100644
--- a/server/utils/updates.js
+++ b/server/utils/updates.js
@@ -2,10 +2,10 @@
import crypto from "crypto";
import invariant from "invariant";
import fetch from "isomorphic-fetch";
-import { client } from "../redis";
import packageInfo from "../../package.json";
import { User, Team, Collection, Document } from "../models";
+import { client } from "../redis";
const UPDATES_URL = "https://updates.getoutline.com";
const UPDATES_KEY = "UPDATES_KEY";
diff --git a/server/utils/zip.js b/server/utils/zip.js
index 3956a0e4..0c665095 100644
--- a/server/utils/zip.js
+++ b/server/utils/zip.js
@@ -1,8 +1,8 @@
// @flow
import fs from "fs";
+import * as Sentry from "@sentry/node";
import JSZip from "jszip";
import tmp from "tmp";
-import * as Sentry from "@sentry/node";
import { Attachment, Collection, Document } from "../models";
import { getImageByKey } from "./s3";
diff --git a/shared/styles/globals.js b/shared/styles/globals.js
index f8b4d0e4..692694a4 100644
--- a/shared/styles/globals.js
+++ b/shared/styles/globals.js
@@ -1,6 +1,6 @@
// @flow
-import styledNormalize from "styled-normalize";
import { createGlobalStyle } from "styled-components";
+import styledNormalize from "styled-normalize";
export default createGlobalStyle`
${styledNormalize}
diff --git a/webpack.config.dev.js b/webpack.config.dev.js
index 3a5a90ac..d3c217f7 100644
--- a/webpack.config.dev.js
+++ b/webpack.config.dev.js
@@ -6,8 +6,6 @@ const developmentWebpackConfig = Object.assign(commonWebpackConfig, {
cache: true,
devtool: "eval-source-map",
entry: [
- "babel-polyfill",
- "babel-regenerator-runtime",
"webpack-hot-middleware/client",
"./app/index",
],
diff --git a/webpack.config.prod.js b/webpack.config.prod.js
index 50d903aa..385c81d8 100644
--- a/webpack.config.prod.js
+++ b/webpack.config.prod.js
@@ -9,7 +9,7 @@ commonWebpackConfig = require('./webpack.config');
productionWebpackConfig = Object.assign(commonWebpackConfig, {
cache: true,
devtool: 'source-map',
- entry: ['babel-polyfill', 'babel-regenerator-runtime', './app/index'],
+ entry: ['./app/index'],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.[hash].js',
diff --git a/yarn.lock b/yarn.lock
index 21d4b189..36c03110 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,13 +2,60 @@
# yarn lockfile v1
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35", "@babel/code-frame@^7.8.3":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
dependencies:
"@babel/highlight" "^7.8.3"
+"@babel/code-frame@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
+ integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
+ dependencies:
+ "@babel/highlight" "^7.10.4"
+
+"@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c"
+ integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==
+ dependencies:
+ browserslist "^4.12.0"
+ invariant "^2.2.4"
+ semver "^5.5.0"
+
+"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.7.5":
+ version "7.11.1"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.1.tgz#2c55b604e73a40dc21b0e52650b11c65cf276643"
+ integrity sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/generator" "^7.11.0"
+ "@babel/helper-module-transforms" "^7.11.0"
+ "@babel/helpers" "^7.10.4"
+ "@babel/parser" "^7.11.1"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.11.0"
+ "@babel/types" "^7.11.0"
+ convert-source-map "^1.7.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.1"
+ json5 "^2.1.2"
+ lodash "^4.17.19"
+ resolve "^1.3.2"
+ semver "^5.4.1"
+ source-map "^0.5.0"
+
+"@babel/generator@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c"
+ integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==
+ dependencies:
+ "@babel/types" "^7.11.0"
+ jsesc "^2.5.1"
+ source-map "^0.5.0"
+
"@babel/generator@^7.8.6":
version "7.8.7"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.7.tgz#870b3cf7984f5297998152af625c4f3e341400f7"
@@ -19,16 +66,6 @@
lodash "^4.17.13"
source-map "^0.5.0"
-"@babel/generator@^7.9.5":
- version "7.9.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.5.tgz#27f0917741acc41e6eaaced6d68f96c3fa9afaf9"
- integrity sha512-GbNIxVB3ZJe3tLeDm1HSn2AhuD/mVcyLDpgtLXa5tplmWrJdF/elxB56XNqCuD6szyNkDi6wuoKXln3QeBmCHQ==
- dependencies:
- "@babel/types" "^7.9.5"
- jsesc "^2.5.1"
- lodash "^4.17.13"
- source-map "^0.5.0"
-
"@babel/helper-annotate-as-pure@^7.0.0":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee"
@@ -36,6 +73,96 @@
dependencies:
"@babel/types" "^7.8.3"
+"@babel/helper-annotate-as-pure@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
+ integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
+ integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
+ dependencies:
+ "@babel/helper-explode-assignable-expression" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-builder-react-jsx-experimental@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz#f35e956a19955ff08c1258e44a515a6d6248646b"
+ integrity sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-module-imports" "^7.10.4"
+ "@babel/types" "^7.10.5"
+
+"@babel/helper-builder-react-jsx@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d"
+ integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-compilation-targets@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2"
+ integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==
+ dependencies:
+ "@babel/compat-data" "^7.10.4"
+ browserslist "^4.12.0"
+ invariant "^2.2.4"
+ levenary "^1.1.1"
+ semver "^5.5.0"
+
+"@babel/helper-create-class-features-plugin@^7.10.4", "@babel/helper-create-class-features-plugin@^7.10.5":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d"
+ integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==
+ dependencies:
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-member-expression-to-functions" "^7.10.5"
+ "@babel/helper-optimise-call-expression" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.10.4"
+
+"@babel/helper-create-regexp-features-plugin@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8"
+ integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-regex" "^7.10.4"
+ regexpu-core "^4.7.0"
+
+"@babel/helper-define-map@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
+ integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
+ dependencies:
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/types" "^7.10.5"
+ lodash "^4.17.19"
+
+"@babel/helper-explode-assignable-expression@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c"
+ integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A==
+ dependencies:
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-function-name@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
+ integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
+ dependencies:
+ "@babel/helper-get-function-arity" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
"@babel/helper-function-name@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca"
@@ -45,14 +172,12 @@
"@babel/template" "^7.8.3"
"@babel/types" "^7.8.3"
-"@babel/helper-function-name@^7.9.5":
- version "7.9.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz#2b53820d35275120e1874a82e5aabe1376920a5c"
- integrity sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==
+"@babel/helper-get-function-arity@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
+ integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
dependencies:
- "@babel/helper-get-function-arity" "^7.8.3"
- "@babel/template" "^7.8.3"
- "@babel/types" "^7.9.5"
+ "@babel/types" "^7.10.4"
"@babel/helper-get-function-arity@^7.8.3":
version "7.8.3"
@@ -61,13 +186,109 @@
dependencies:
"@babel/types" "^7.8.3"
-"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49":
+"@babel/helper-hoist-variables@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
+ integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df"
+ integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==
+ dependencies:
+ "@babel/types" "^7.11.0"
+
+"@babel/helper-module-imports@^7.0.0":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
dependencies:
"@babel/types" "^7.8.3"
+"@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620"
+ integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359"
+ integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==
+ dependencies:
+ "@babel/helper-module-imports" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.10.4"
+ "@babel/helper-simple-access" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.11.0"
+ "@babel/template" "^7.10.4"
+ "@babel/types" "^7.11.0"
+ lodash "^4.17.19"
+
+"@babel/helper-optimise-call-expression@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
+ integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
+ dependencies:
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
+ integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
+
+"@babel/helper-regex@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0"
+ integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==
+ dependencies:
+ lodash "^4.17.19"
+
+"@babel/helper-remap-async-to-generator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5"
+ integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-wrap-function" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-replace-supers@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf"
+ integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==
+ dependencies:
+ "@babel/helper-member-expression-to-functions" "^7.10.4"
+ "@babel/helper-optimise-call-expression" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-simple-access@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461"
+ integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==
+ dependencies:
+ "@babel/template" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729"
+ integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==
+ dependencies:
+ "@babel/types" "^7.11.0"
+
+"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
+ integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
+ dependencies:
+ "@babel/types" "^7.11.0"
+
"@babel/helper-split-export-declaration@^7.8.3":
version "7.8.3"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9"
@@ -75,11 +296,35 @@
dependencies:
"@babel/types" "^7.8.3"
-"@babel/helper-validator-identifier@^7.9.0", "@babel/helper-validator-identifier@^7.9.5":
+"@babel/helper-validator-identifier@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
+ integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
+
+"@babel/helper-validator-identifier@^7.9.0":
version "7.9.5"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80"
integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==
+"@babel/helper-wrap-function@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87"
+ integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==
+ dependencies:
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
+"@babel/helpers@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044"
+ integrity sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==
+ dependencies:
+ "@babel/template" "^7.10.4"
+ "@babel/traverse" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
"@babel/highlight@^7.0.0", "@babel/highlight@^7.8.3":
version "7.9.0"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079"
@@ -89,16 +334,569 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.0.0", "@babel/parser@^7.9.0":
- version "7.9.4"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
- integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
+"@babel/highlight@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
+ integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.10.4"
+ chalk "^2.0.0"
+ js-tokens "^4.0.0"
+
+"@babel/parser@^7.1.0", "@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.11.1", "@babel/parser@^7.7.0":
+ version "7.11.3"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.3.tgz#9e1eae46738bcd08e23e867bab43e7b95299a8f9"
+ integrity sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==
"@babel/parser@^7.8.6":
version "7.8.7"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.7.tgz#7b8facf95d25fef9534aad51c4ffecde1a61e26a"
integrity sha512-9JWls8WilDXFGxs0phaXAZgpxTZhSk/yOYH2hTHC0X1yC7Z78IJfvR1vJ+rmJKq3I35td2XzXzN6ZLYlna+r/A==
+"@babel/plugin-proposal-async-generator-functions@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558"
+ integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-remap-async-to-generator" "^7.10.4"
+ "@babel/plugin-syntax-async-generators" "^7.8.0"
+
+"@babel/plugin-proposal-class-properties@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807"
+ integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-proposal-decorators@^7.10.5":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.10.5.tgz#42898bba478bc4b1ae242a703a953a7ad350ffb4"
+ integrity sha512-Sc5TAQSZuLzgY0664mMDn24Vw2P8g/VhyLyGPaWiHahhgLqeZvcGeyBZOrJW0oSKIK2mvQ22a1ENXBIQLhrEiQ==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.10.5"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-decorators" "^7.10.4"
+
+"@babel/plugin-proposal-dynamic-import@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e"
+ integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.0"
+
+"@babel/plugin-proposal-export-namespace-from@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54"
+ integrity sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
+"@babel/plugin-proposal-json-strings@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db"
+ integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-json-strings" "^7.8.0"
+
+"@babel/plugin-proposal-logical-assignment-operators@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8"
+ integrity sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a"
+ integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+
+"@babel/plugin-proposal-numeric-separator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06"
+ integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+
+"@babel/plugin-proposal-object-rest-spread@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af"
+ integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+ "@babel/plugin-transform-parameters" "^7.10.4"
+
+"@babel/plugin-proposal-optional-catch-binding@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd"
+ integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
+
+"@babel/plugin-proposal-optional-chaining@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076"
+ integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+
+"@babel/plugin-proposal-private-methods@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909"
+ integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d"
+ integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4":
+ version "7.8.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
+ integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-bigint@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
+ integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-class-properties@^7.10.4", "@babel/plugin-syntax-class-properties@^7.8.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c"
+ integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-decorators@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz#6853085b2c429f9d322d02f5a635018cdeb2360c"
+ integrity sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-dynamic-import@^7.8.0":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
+ integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-export-namespace-from@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
+ integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-syntax-flow@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz#53351dd7ae01995e567d04ce42af1a6e0ba846a6"
+ integrity sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-import-meta@^7.8.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
+ integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
+ integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-jsx@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c"
+ integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
+ integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
+ integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+ integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
+ integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
+ integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
+ integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-top-level-await@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d"
+ integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-arrow-functions@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd"
+ integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-async-to-generator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37"
+ integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==
+ dependencies:
+ "@babel/helper-module-imports" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-remap-async-to-generator" "^7.10.4"
+
+"@babel/plugin-transform-block-scoped-functions@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8"
+ integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-block-scoping@^7.10.4":
+ version "7.11.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215"
+ integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-classes@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7"
+ integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-define-map" "^7.10.4"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-optimise-call-expression" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.10.4"
+ globals "^11.1.0"
+
+"@babel/plugin-transform-computed-properties@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb"
+ integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-destructuring@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5"
+ integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee"
+ integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-duplicate-keys@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47"
+ integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-exponentiation-operator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e"
+ integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==
+ dependencies:
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-flow-strip-types@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.10.4.tgz#c497957f09e86e3df7296271e9eb642876bf7788"
+ integrity sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-flow" "^7.10.4"
+
+"@babel/plugin-transform-for-of@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9"
+ integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-function-name@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7"
+ integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==
+ dependencies:
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-literals@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c"
+ integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-member-expression-literals@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7"
+ integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-modules-amd@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1"
+ integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.10.5"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-commonjs@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0"
+ integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-simple-access" "^7.10.4"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-systemjs@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85"
+ integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==
+ dependencies:
+ "@babel/helper-hoist-variables" "^7.10.4"
+ "@babel/helper-module-transforms" "^7.10.5"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-umd@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e"
+ integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-named-capturing-groups-regex@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6"
+ integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.10.4"
+
+"@babel/plugin-transform-new-target@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888"
+ integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-object-super@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894"
+ integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-replace-supers" "^7.10.4"
+
+"@babel/plugin-transform-parameters@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a"
+ integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==
+ dependencies:
+ "@babel/helper-get-function-arity" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-property-literals@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0"
+ integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-react-display-name@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz#b5795f4e3e3140419c3611b7a2a3832b9aef328d"
+ integrity sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-react-jsx-development@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.4.tgz#6ec90f244394604623880e15ebc3c34c356258ba"
+ integrity sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ==
+ dependencies:
+ "@babel/helper-builder-react-jsx-experimental" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-jsx" "^7.10.4"
+
+"@babel/plugin-transform-react-jsx-self@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369"
+ integrity sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-jsx" "^7.10.4"
+
+"@babel/plugin-transform-react-jsx-source@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz#34f1779117520a779c054f2cdd9680435b9222b4"
+ integrity sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-jsx" "^7.10.4"
+
+"@babel/plugin-transform-react-jsx@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz#673c9f913948764a4421683b2bef2936968fddf2"
+ integrity sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A==
+ dependencies:
+ "@babel/helper-builder-react-jsx" "^7.10.4"
+ "@babel/helper-builder-react-jsx-experimental" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-jsx" "^7.10.4"
+
+"@babel/plugin-transform-react-pure-annotations@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz#3eefbb73db94afbc075f097523e445354a1c6501"
+ integrity sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-regenerator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63"
+ integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==
+ dependencies:
+ regenerator-transform "^0.14.2"
+
+"@babel/plugin-transform-reserved-words@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd"
+ integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-shorthand-properties@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6"
+ integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-spread@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc"
+ integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
+
+"@babel/plugin-transform-sticky-regex@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d"
+ integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/helper-regex" "^7.10.4"
+
+"@babel/plugin-transform-template-literals@^7.10.4":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c"
+ integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-typeof-symbol@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc"
+ integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-unicode-escapes@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007"
+ integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-unicode-regex@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8"
+ integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
"@babel/polyfill@^7.0.0":
version "7.8.7"
resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.8.7.tgz#151ec24c7135481336168c3bd8b8bf0cf91c032f"
@@ -107,21 +905,153 @@
core-js "^2.6.5"
regenerator-runtime "^0.13.4"
-"@babel/runtime-corejs3@^7.8.3":
- version "7.9.2"
- resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz#26fe4aa77e9f1ecef9b776559bbb8e84d34284b7"
- integrity sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA==
+"@babel/polyfill@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.10.4.tgz#915e5bfe61490ac0199008e35ca9d7d151a8e45a"
+ integrity sha512-8BYcnVqQ5kMD2HXoHInBH7H1b/uP3KdnwCYXOqFnXqguOyuu443WXusbIUbWEfY3Z0Txk0M1uG/8YuAMhNl6zg==
+ dependencies:
+ core-js "^2.6.5"
+ regenerator-runtime "^0.13.4"
+
+"@babel/preset-env@^7.11.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.0.tgz#860ee38f2ce17ad60480c2021ba9689393efb796"
+ integrity sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg==
+ dependencies:
+ "@babel/compat-data" "^7.11.0"
+ "@babel/helper-compilation-targets" "^7.10.4"
+ "@babel/helper-module-imports" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-proposal-async-generator-functions" "^7.10.4"
+ "@babel/plugin-proposal-class-properties" "^7.10.4"
+ "@babel/plugin-proposal-dynamic-import" "^7.10.4"
+ "@babel/plugin-proposal-export-namespace-from" "^7.10.4"
+ "@babel/plugin-proposal-json-strings" "^7.10.4"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.11.0"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4"
+ "@babel/plugin-proposal-numeric-separator" "^7.10.4"
+ "@babel/plugin-proposal-object-rest-spread" "^7.11.0"
+ "@babel/plugin-proposal-optional-catch-binding" "^7.10.4"
+ "@babel/plugin-proposal-optional-chaining" "^7.11.0"
+ "@babel/plugin-proposal-private-methods" "^7.10.4"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.10.4"
+ "@babel/plugin-syntax-async-generators" "^7.8.0"
+ "@babel/plugin-syntax-class-properties" "^7.10.4"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.0"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+ "@babel/plugin-syntax-json-strings" "^7.8.0"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.0"
+ "@babel/plugin-syntax-top-level-await" "^7.10.4"
+ "@babel/plugin-transform-arrow-functions" "^7.10.4"
+ "@babel/plugin-transform-async-to-generator" "^7.10.4"
+ "@babel/plugin-transform-block-scoped-functions" "^7.10.4"
+ "@babel/plugin-transform-block-scoping" "^7.10.4"
+ "@babel/plugin-transform-classes" "^7.10.4"
+ "@babel/plugin-transform-computed-properties" "^7.10.4"
+ "@babel/plugin-transform-destructuring" "^7.10.4"
+ "@babel/plugin-transform-dotall-regex" "^7.10.4"
+ "@babel/plugin-transform-duplicate-keys" "^7.10.4"
+ "@babel/plugin-transform-exponentiation-operator" "^7.10.4"
+ "@babel/plugin-transform-for-of" "^7.10.4"
+ "@babel/plugin-transform-function-name" "^7.10.4"
+ "@babel/plugin-transform-literals" "^7.10.4"
+ "@babel/plugin-transform-member-expression-literals" "^7.10.4"
+ "@babel/plugin-transform-modules-amd" "^7.10.4"
+ "@babel/plugin-transform-modules-commonjs" "^7.10.4"
+ "@babel/plugin-transform-modules-systemjs" "^7.10.4"
+ "@babel/plugin-transform-modules-umd" "^7.10.4"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4"
+ "@babel/plugin-transform-new-target" "^7.10.4"
+ "@babel/plugin-transform-object-super" "^7.10.4"
+ "@babel/plugin-transform-parameters" "^7.10.4"
+ "@babel/plugin-transform-property-literals" "^7.10.4"
+ "@babel/plugin-transform-regenerator" "^7.10.4"
+ "@babel/plugin-transform-reserved-words" "^7.10.4"
+ "@babel/plugin-transform-shorthand-properties" "^7.10.4"
+ "@babel/plugin-transform-spread" "^7.11.0"
+ "@babel/plugin-transform-sticky-regex" "^7.10.4"
+ "@babel/plugin-transform-template-literals" "^7.10.4"
+ "@babel/plugin-transform-typeof-symbol" "^7.10.4"
+ "@babel/plugin-transform-unicode-escapes" "^7.10.4"
+ "@babel/plugin-transform-unicode-regex" "^7.10.4"
+ "@babel/preset-modules" "^0.1.3"
+ "@babel/types" "^7.11.0"
+ browserslist "^4.12.0"
+ core-js-compat "^3.6.2"
+ invariant "^2.2.2"
+ levenary "^1.1.1"
+ semver "^5.5.0"
+
+"@babel/preset-flow@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.10.4.tgz#e0d9c72f8cb02d1633f6a5b7b16763aa2edf659f"
+ integrity sha512-XI6l1CptQCOBv+ZKYwynyswhtOKwpZZp5n0LG1QKCo8erRhqjoQV6nvx61Eg30JHpysWQSBwA2AWRU3pBbSY5g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-transform-flow-strip-types" "^7.10.4"
+
+"@babel/preset-modules@^0.1.3":
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
+ integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
+ "@babel/plugin-transform-dotall-regex" "^7.4.4"
+ "@babel/types" "^7.4.4"
+ esutils "^2.0.2"
+
+"@babel/preset-react@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.10.4.tgz#92e8a66d816f9911d11d4cc935be67adfc82dbcf"
+ integrity sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-transform-react-display-name" "^7.10.4"
+ "@babel/plugin-transform-react-jsx" "^7.10.4"
+ "@babel/plugin-transform-react-jsx-development" "^7.10.4"
+ "@babel/plugin-transform-react-jsx-self" "^7.10.4"
+ "@babel/plugin-transform-react-jsx-source" "^7.10.4"
+ "@babel/plugin-transform-react-pure-annotations" "^7.10.4"
+
+"@babel/register@^7.10.5":
+ version "7.10.5"
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.10.5.tgz#354f3574895f1307f79efe37a51525e52fd38d89"
+ integrity sha512-eYHdLv43nyvmPn9bfNfrcC4+iYNwdQ8Pxk1MFJuU/U5LpSYl/PH4dFMazCYZDFVi8ueG3shvO+AQfLrxpYulQw==
+ dependencies:
+ find-cache-dir "^2.0.0"
+ lodash "^4.17.19"
+ make-dir "^2.1.0"
+ pirates "^4.0.0"
+ source-map-support "^0.5.16"
+
+"@babel/runtime-corejs3@^7.10.2":
+ version "7.11.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.11.2.tgz#02c3029743150188edeb66541195f54600278419"
+ integrity sha512-qh5IR+8VgFz83VBa6OkaET6uN/mJOhHONuy3m1sgF0CV6mXdPSEBdA7e1eUbVvyNtANjMbg22JUv71BaDXLY6A==
dependencies:
core-js-pure "^3.0.0"
regenerator-runtime "^0.13.4"
-"@babel/runtime@^7.1.2", "@babel/runtime@^7.4.0", "@babel/runtime@^7.4.5":
+"@babel/runtime@^7.1.2", "@babel/runtime@^7.4.0":
version "7.9.2"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06"
integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==
dependencies:
regenerator-runtime "^0.13.4"
+"@babel/runtime@^7.10.2", "@babel/runtime@^7.8.4":
+ version "7.11.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
+ integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==
+ dependencies:
+ regenerator-runtime "^0.13.4"
+
"@babel/runtime@^7.9.2":
version "7.10.1"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.1.tgz#b6eb75cac279588d3100baecd1b9894ea2840822"
@@ -129,6 +1059,15 @@
dependencies:
regenerator-runtime "^0.13.4"
+"@babel/template@^7.10.4", "@babel/template@^7.3.3":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
+ integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/parser" "^7.10.4"
+ "@babel/types" "^7.10.4"
+
"@babel/template@^7.8.3":
version "7.8.6"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b"
@@ -138,20 +1077,20 @@
"@babel/parser" "^7.8.6"
"@babel/types" "^7.8.6"
-"@babel/traverse@^7.0.0":
- version "7.9.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.5.tgz#6e7c56b44e2ac7011a948c21e283ddd9d9db97a2"
- integrity sha512-c4gH3jsvSuGUezlP6rzSJ6jf8fYjLj3hsMZRx/nX0h+fmHN0w+ekubRrHPqnMec0meycA2nwCsJ7dC8IPem2FQ==
+"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0", "@babel/traverse@^7.7.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24"
+ integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==
dependencies:
- "@babel/code-frame" "^7.8.3"
- "@babel/generator" "^7.9.5"
- "@babel/helper-function-name" "^7.9.5"
- "@babel/helper-split-export-declaration" "^7.8.3"
- "@babel/parser" "^7.9.0"
- "@babel/types" "^7.9.5"
+ "@babel/code-frame" "^7.10.4"
+ "@babel/generator" "^7.11.0"
+ "@babel/helper-function-name" "^7.10.4"
+ "@babel/helper-split-export-declaration" "^7.11.0"
+ "@babel/parser" "^7.11.0"
+ "@babel/types" "^7.11.0"
debug "^4.1.0"
globals "^11.1.0"
- lodash "^4.17.13"
+ lodash "^4.17.19"
"@babel/traverse@^7.4.5":
version "7.8.6"
@@ -168,13 +1107,13 @@
globals "^11.1.0"
lodash "^4.17.13"
-"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.9.5":
- version "7.9.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.5.tgz#89231f82915a8a566a703b3b20133f73da6b9444"
- integrity sha512-XjnvNqenk818r5zMaba+sLQjnbda31UfUURv3ei0qPQw4u+j2jMyJ5b11y8ZHYTRSI3NnInQkkkRT4fLqqPdHg==
+"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
+ version "7.11.0"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d"
+ integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==
dependencies:
- "@babel/helper-validator-identifier" "^7.9.5"
- lodash "^4.17.13"
+ "@babel/helper-validator-identifier" "^7.10.4"
+ lodash "^4.17.19"
to-fast-properties "^2.0.0"
"@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.8.7":
@@ -186,6 +1125,19 @@
lodash "^4.17.13"
to-fast-properties "^2.0.0"
+"@bcoe/v8-coverage@^0.2.3":
+ version "0.2.3"
+ resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
+ integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
+
+"@cnakazawa/watch@^1.0.3":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
+ integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
+ dependencies:
+ exec-sh "^0.3.2"
+ minimist "^1.2.0"
+
"@emotion/is-prop-valid@^0.8.3":
version "0.8.7"
resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.7.tgz#803449993f436f9a6c67752251ea3fc492a1044c"
@@ -213,6 +1165,193 @@
resolved "https://registry.yarnpkg.com/@icons/material/-/material-0.2.4.tgz#e90c9f71768b3736e76d7dd6783fc6c2afa88bc8"
integrity sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==
+"@istanbuljs/load-nyc-config@^1.0.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
+ integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
+ dependencies:
+ camelcase "^5.3.1"
+ find-up "^4.1.0"
+ get-package-type "^0.1.0"
+ js-yaml "^3.13.1"
+ resolve-from "^5.0.0"
+
+"@istanbuljs/schema@^0.1.2":
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd"
+ integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==
+
+"@jest/console@^26.2.0":
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.2.0.tgz#d18f2659b90930e7ec3925fb7209f1ba2cf463f0"
+ integrity sha512-mXQfx3nSLwiHm1i7jbu+uvi+vvpVjNGzIQYLCfsat9rapC+MJkS4zBseNrgJE0vU921b3P67bQzhduphjY3Tig==
+ dependencies:
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ jest-message-util "^26.2.0"
+ jest-util "^26.2.0"
+ slash "^3.0.0"
+
+"@jest/core@^26.2.2":
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.2.2.tgz#63de01ffce967618003dd7a0164b05c8041b81a9"
+ integrity sha512-UwA8gNI8aeV4FHGfGAUfO/DHjrFVvlBravF1Tm9Kt6qFE+6YHR47kFhgdepOFpADEKstyO+MVdPvkV6/dyt9sA==
+ dependencies:
+ "@jest/console" "^26.2.0"
+ "@jest/reporters" "^26.2.2"
+ "@jest/test-result" "^26.2.0"
+ "@jest/transform" "^26.2.2"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ ansi-escapes "^4.2.1"
+ chalk "^4.0.0"
+ exit "^0.1.2"
+ graceful-fs "^4.2.4"
+ jest-changed-files "^26.2.0"
+ jest-config "^26.2.2"
+ jest-haste-map "^26.2.2"
+ jest-message-util "^26.2.0"
+ jest-regex-util "^26.0.0"
+ jest-resolve "^26.2.2"
+ jest-resolve-dependencies "^26.2.2"
+ jest-runner "^26.2.2"
+ jest-runtime "^26.2.2"
+ jest-snapshot "^26.2.2"
+ jest-util "^26.2.0"
+ jest-validate "^26.2.0"
+ jest-watcher "^26.2.0"
+ micromatch "^4.0.2"
+ p-each-series "^2.1.0"
+ rimraf "^3.0.0"
+ slash "^3.0.0"
+ strip-ansi "^6.0.0"
+
+"@jest/environment@^26.2.0":
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.2.0.tgz#f6faee1630fcc2fad208953164bccb31dbe0e45f"
+ integrity sha512-oCgp9NmEiJ5rbq9VI/v/yYLDpladAAVvFxZgNsnJxOETuzPZ0ZcKKHYjKYwCtPOP1WCrM5nmyuOhMStXFGHn+g==
+ dependencies:
+ "@jest/fake-timers" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ jest-mock "^26.2.0"
+
+"@jest/fake-timers@^26.2.0":
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.2.0.tgz#b485c57dc4c74d61406a339807a9af4bac74b75a"
+ integrity sha512-45Gfe7YzYTKqTayBrEdAF0qYyAsNRBzfkV0IyVUm3cx7AsCWlnjilBM4T40w7IXT5VspOgMPikQlV0M6gHwy/g==
+ dependencies:
+ "@jest/types" "^26.2.0"
+ "@sinonjs/fake-timers" "^6.0.1"
+ "@types/node" "*"
+ jest-message-util "^26.2.0"
+ jest-mock "^26.2.0"
+ jest-util "^26.2.0"
+
+"@jest/globals@^26.2.0":
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.2.0.tgz#ad78f1104f250c1a4bf5184a2ba51facc59b23f6"
+ integrity sha512-Hoc6ScEIPaym7RNytIL2ILSUWIGKlwEv+JNFof9dGYOdvPjb2evEURSslvCMkNuNg1ECEClTE8PH7ULlMJntYA==
+ dependencies:
+ "@jest/environment" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ expect "^26.2.0"
+
+"@jest/reporters@^26.2.2":
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.2.2.tgz#5a8632ab410f4fc57782bc05dcf115e91818e869"
+ integrity sha512-7854GPbdFTAorWVh+RNHyPO9waRIN6TcvCezKVxI1khvFq9YjINTW7J3WU+tbR038Ynn6WjYred6vtT0YmIWVQ==
+ dependencies:
+ "@bcoe/v8-coverage" "^0.2.3"
+ "@jest/console" "^26.2.0"
+ "@jest/test-result" "^26.2.0"
+ "@jest/transform" "^26.2.2"
+ "@jest/types" "^26.2.0"
+ chalk "^4.0.0"
+ collect-v8-coverage "^1.0.0"
+ exit "^0.1.2"
+ glob "^7.1.2"
+ graceful-fs "^4.2.4"
+ istanbul-lib-coverage "^3.0.0"
+ istanbul-lib-instrument "^4.0.3"
+ istanbul-lib-report "^3.0.0"
+ istanbul-lib-source-maps "^4.0.0"
+ istanbul-reports "^3.0.2"
+ jest-haste-map "^26.2.2"
+ jest-resolve "^26.2.2"
+ jest-util "^26.2.0"
+ jest-worker "^26.2.1"
+ slash "^3.0.0"
+ source-map "^0.6.0"
+ string-length "^4.0.1"
+ terminal-link "^2.0.0"
+ v8-to-istanbul "^4.1.3"
+ optionalDependencies:
+ node-notifier "^7.0.0"
+
+"@jest/source-map@^26.1.0":
+ version "26.1.0"
+ resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.1.0.tgz#a6a020d00e7d9478f4b690167c5e8b77e63adb26"
+ integrity sha512-XYRPYx4eEVX15cMT9mstnO7hkHP3krNtKfxUYd8L7gbtia8JvZZ6bMzSwa6IQJENbudTwKMw5R1BePRD+bkEmA==
+ dependencies:
+ callsites "^3.0.0"
+ graceful-fs "^4.2.4"
+ source-map "^0.6.0"
+
+"@jest/test-result@^26.2.0":
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.2.0.tgz#51c9b165c8851cfcf7a3466019114785e154f76b"
+ integrity sha512-kgPlmcVafpmfyQEu36HClK+CWI6wIaAWDHNxfQtGuKsgoa2uQAYdlxjMDBEa3CvI40+2U3v36gQF6oZBkoKatw==
+ dependencies:
+ "@jest/console" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ collect-v8-coverage "^1.0.0"
+
+"@jest/test-sequencer@^26.2.2":
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.2.2.tgz#5e8091f2e6c61fdf242af566cb820a4eadc6c4af"
+ integrity sha512-SliZWon5LNqV/lVXkeowSU6L8++FGOu3f43T01L1Gv6wnFDP00ER0utV9jyK9dVNdXqfMNCN66sfcyar/o7BNw==
+ dependencies:
+ "@jest/test-result" "^26.2.0"
+ graceful-fs "^4.2.4"
+ jest-haste-map "^26.2.2"
+ jest-runner "^26.2.2"
+ jest-runtime "^26.2.2"
+
+"@jest/transform@^26.2.2":
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.2.2.tgz#86c005c8d5d749ac54d8df53ea58675fffe7a97e"
+ integrity sha512-c1snhvi5wRVre1XyoO3Eef5SEWpuBCH/cEbntBUd9tI5sNYiBDmO0My/lc5IuuGYKp/HFIHV1eZpSx5yjdkhKw==
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/types" "^26.2.0"
+ babel-plugin-istanbul "^6.0.0"
+ chalk "^4.0.0"
+ convert-source-map "^1.4.0"
+ fast-json-stable-stringify "^2.0.0"
+ graceful-fs "^4.2.4"
+ jest-haste-map "^26.2.2"
+ jest-regex-util "^26.0.0"
+ jest-util "^26.2.0"
+ micromatch "^4.0.2"
+ pirates "^4.0.1"
+ slash "^3.0.0"
+ source-map "^0.6.1"
+ write-file-atomic "^3.0.0"
+
+"@jest/types@^26.2.0":
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.2.0.tgz#b28ca1fb517a4eb48c0addea7fcd9edc4ab45721"
+ integrity sha512-lvm3rJvctxd7+wxKSxxbzpDbr4FXDLaC57WEKdUIZ2cjTYuxYSc0zlyD7Z4Uqr5VdKxRUrtwIkiqBuvgf8uKJA==
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "@types/istanbul-reports" "^1.1.1"
+ "@types/node" "*"
+ "@types/yargs" "^15.0.0"
+ chalk "^4.0.0"
+
"@octokit/auth-token@^2.4.0":
version "2.4.0"
resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.0.tgz#b64178975218b99e4dfe948253f0673cbbb59d9f"
@@ -401,6 +1540,20 @@
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd"
integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==
+"@sinonjs/commons@^1.7.0":
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217"
+ integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==
+ dependencies:
+ type-detect "4.0.8"
+
+"@sinonjs/fake-timers@^6.0.1":
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40"
+ integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==
+ dependencies:
+ "@sinonjs/commons" "^1.7.0"
+
"@tippy.js/react@^2.2.2":
version "2.2.3"
resolved "https://registry.yarnpkg.com/@tippy.js/react/-/react-2.2.3.tgz#2ffb0af6693055be7db4b329b2d3cc7f2356f68e"
@@ -414,15 +1567,117 @@
resolved "https://registry.yarnpkg.com/@tommoor/remove-markdown/-/remove-markdown-0.3.1.tgz#25e7b845d52fcfadf149a3a6a468a931fee7619b"
integrity sha512-aM5TtBfBgcUm+B4WWelm2NBAFBk12oNUr67f5lJapSOTkPnwkuzCNwMlsBoDTsRknoZSsUIkcOJB473AnfyqHA==
+"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
+ version "7.1.9"
+ resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.9.tgz#77e59d438522a6fb898fa43dc3455c6e72f3963d"
+ integrity sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw==
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+ "@types/babel__generator" "*"
+ "@types/babel__template" "*"
+ "@types/babel__traverse" "*"
+
+"@types/babel__generator@*":
+ version "7.6.1"
+ resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04"
+ integrity sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==
+ dependencies:
+ "@babel/types" "^7.0.0"
+
+"@types/babel__template@*":
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307"
+ integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+
+"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
+ version "7.0.13"
+ resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.13.tgz#1874914be974a492e1b4cb00585cabb274e8ba18"
+ integrity sha512-i+zS7t6/s9cdQvbqKDARrcbrPvtJGlbYsMkazo03nTAK3RX9FNrLllXys22uiTGJapPOTZTQ35nHh4ISph4SLQ==
+ dependencies:
+ "@babel/types" "^7.3.0"
+
+"@types/color-name@^1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
+ integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
+
+"@types/graceful-fs@^4.1.2":
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.3.tgz#039af35fe26bec35003e8d86d2ee9c586354348f"
+ integrity sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ==
+ dependencies:
+ "@types/node" "*"
+
+"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
+ integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==
+
+"@types/istanbul-lib-report@*":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
+ integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
+ dependencies:
+ "@types/istanbul-lib-coverage" "*"
+
+"@types/istanbul-reports@^1.1.1":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2"
+ integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==
+ dependencies:
+ "@types/istanbul-lib-coverage" "*"
+ "@types/istanbul-lib-report" "*"
+
+"@types/json-schema@^7.0.4":
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd"
+ integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==
+
+"@types/json5@^0.0.29":
+ version "0.0.29"
+ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
+ integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
+
"@types/node@*", "@types/node@>= 8":
version "13.13.0"
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.13.0.tgz#30d2d09f623fe32cde9cb582c7a6eda2788ce4a8"
integrity sha512-WE4IOAC6r/yBZss1oQGM5zs2D7RuKR6Q+w+X2SouPofnWn+LbCqClRyhO3ZE7Ix8nmFgo/oVuuE01cJT2XB13A==
-abab@^2.0.0:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a"
- integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==
+"@types/normalize-package-data@^2.4.0":
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
+ integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
+
+"@types/prettier@^2.0.0":
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.0.2.tgz#5bb52ee68d0f8efa9cc0099920e56be6cc4e37f3"
+ integrity sha512-IkVfat549ggtkZUthUzEX49562eGikhSYeVGX97SkMFn+sTZrgRewXjQ4tPKFPCykZHkX1Zfd9OoELGqKU2jJA==
+
+"@types/stack-utils@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
+ integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
+
+"@types/yargs-parser@*":
+ version "15.0.0"
+ resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d"
+ integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==
+
+"@types/yargs@^15.0.0":
+ version "15.0.5"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.5.tgz#947e9a6561483bdee9adffc983e91a6902af8b79"
+ integrity sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w==
+ dependencies:
+ "@types/yargs-parser" "*"
+
+abab@^2.0.3:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.4.tgz#6dfa57b417ca06d21b2478f0e638302f99c2405c"
+ integrity sha512-Eu9ELJWCz/c1e9gTiCY+FceWxcqzjYEbqMgtndnuSqZSUCOL73TWNK2mHfIj4Cw2E/ongOp+JISVNCmovt2KYQ==
abbrev@1:
version "1.1.1"
@@ -451,38 +1706,38 @@ acorn-dynamic-import@^2.0.0:
dependencies:
acorn "^4.0.3"
-acorn-globals@^4.1.0:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7"
- integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==
+acorn-globals@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
+ integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
dependencies:
- acorn "^6.0.1"
- acorn-walk "^6.0.1"
+ acorn "^7.1.1"
+ acorn-walk "^7.1.1"
-acorn-jsx@^5.0.0:
+acorn-jsx@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe"
integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==
-acorn-walk@^6.0.1:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
- integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
+acorn-walk@^7.1.1:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
+ integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
acorn@^4.0.3:
version "4.0.13"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=
-acorn@^5.0.0, acorn@^5.5.3:
+acorn@^5.0.0:
version "5.7.4"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==
-acorn@^6.0.1, acorn@^6.0.7:
- version "6.4.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474"
- integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==
+acorn@^7.1.1, acorn@^7.3.1:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c"
+ integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w==
after@0.8.2:
version "0.8.2"
@@ -519,6 +1774,11 @@ ajv-keywords@^3.1.0:
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da"
integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
+ajv-keywords@^3.4.1:
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+ integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
+
ajv@^5.0.0, ajv@^5.1.5:
version "5.5.2"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
@@ -529,7 +1789,7 @@ ajv@^5.0.0, ajv@^5.1.5:
fast-json-stable-stringify "^2.0.0"
json-schema-traverse "^0.3.0"
-ajv@^6.1.0, ajv@^6.10.2, ajv@^6.5.5, ajv@^6.9.1:
+ajv@^6.1.0, ajv@^6.10.2, ajv@^6.5.5:
version "6.12.2"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd"
integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==
@@ -539,6 +1799,16 @@ ajv@^6.1.0, ajv@^6.10.2, ajv@^6.5.5, ajv@^6.9.1:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
+ajv@^6.10.0, ajv@^6.12.2:
+ version "6.12.3"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706"
+ integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
align-text@^0.1.1, align-text@^0.1.3:
version "0.1.4"
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
@@ -560,10 +1830,17 @@ ansi-align@^2.0.0:
dependencies:
string-width "^2.0.0"
-ansi-escapes@^3.0.0, ansi-escapes@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
- integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
+ansi-colors@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
+ integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
+
+ansi-escapes@^4.2.1:
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61"
+ integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
+ dependencies:
+ type-fest "^0.11.0"
ansi-html@0.0.7:
version "0.0.7"
@@ -585,6 +1862,11 @@ ansi-regex@^4.1.0:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
+ansi-regex@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
+ integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
+
ansi-styles@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
@@ -597,6 +1879,14 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
dependencies:
color-convert "^1.9.0"
+ansi-styles@^4.0.0, ansi-styles@^4.1.0:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
+ integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
+ dependencies:
+ "@types/color-name" "^1.1.1"
+ color-convert "^2.0.1"
+
any-promise@^1.0.0, any-promise@^1.1.0, any-promise@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
@@ -610,12 +1900,13 @@ anymatch@^2.0.0:
micromatch "^3.1.4"
normalize-path "^2.1.1"
-append-transform@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
- integrity sha1-126/jKlNJ24keja61EpLdKthGZE=
+anymatch@^3.0.3:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
+ integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
dependencies:
- default-require-extensions "^1.0.0"
+ normalize-path "^3.0.0"
+ picomatch "^2.0.4"
aproba@^1.1.1:
version "1.2.0"
@@ -629,13 +1920,13 @@ argparse@^1.0.7:
dependencies:
sprintf-js "~1.0.2"
-aria-query@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc"
- integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=
+aria-query@^4.2.2:
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
+ integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
dependencies:
- ast-types-flow "0.0.7"
- commander "^2.11.0"
+ "@babel/runtime" "^7.10.2"
+ "@babel/runtime-corejs3" "^7.10.2"
arr-diff@^4.0.0:
version "4.0.0"
@@ -652,12 +1943,7 @@ arr-union@^3.1.0:
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
-array-equal@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
- integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=
-
-array-includes@^3.0.3, array-includes@^3.1.1:
+array-includes@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348"
integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==
@@ -676,7 +1962,7 @@ array-unique@^0.3.2:
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
-array.prototype.flat@^1.2.1:
+array.prototype.flat@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b"
integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
@@ -684,6 +1970,15 @@ array.prototype.flat@^1.2.1:
define-properties "^1.1.3"
es-abstract "^1.17.0-next.1"
+array.prototype.flatmap@^1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz#1c13f84a178566042dd63de4414440db9222e443"
+ integrity sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg==
+ dependencies:
+ define-properties "^1.1.3"
+ es-abstract "^1.17.0-next.1"
+ function-bind "^1.1.1"
+
arraybuffer.slice@~0.0.7:
version "0.0.7"
resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675"
@@ -733,7 +2028,7 @@ assign-symbols@^1.0.0:
resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
-ast-types-flow@0.0.7, ast-types-flow@^0.0.7:
+ast-types-flow@^0.0.7:
version "0.0.7"
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
@@ -753,7 +2048,7 @@ async-limiter@~1.0.0:
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
-async@^2.1.2, async@^2.1.4:
+async@^2.1.2:
version "2.6.3"
resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
@@ -833,10 +2128,15 @@ aws4@^1.8.0:
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e"
integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug==
-axobject-query@^2.0.2:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.2.tgz#2bdffc0371e643e5f03ba99065d5179b9ca79799"
- integrity sha512-ICt34ZmrVt8UQnvPl6TVyDTkmhXmAyAT4Jh5ugfGUX4MOrZ+U/ZY6/sdylRw3qGNr9Ub5AJsaHeDMzNLehRdOQ==
+axe-core@^3.5.4:
+ version "3.5.5"
+ resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-3.5.5.tgz#84315073b53fa3c0c51676c588d59da09a192227"
+ integrity sha512-5P0QZ6J5xGikH780pghEdbEKijCTrruK9KxtPZCFWUpef0f6GipO+xEZ5GKCb020mmqgbiNO6TcA55CriL784Q==
+
+axobject-query@^2.1.2:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
+ integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
babel-code-frame@^6.26.0:
version "6.26.0"
@@ -847,103 +2147,17 @@ babel-code-frame@^6.26.0:
esutils "^2.0.2"
js-tokens "^3.0.2"
-babel-core@^6.0.0, babel-core@^6.24.1, babel-core@^6.26.0:
- version "6.26.3"
- resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
- integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==
- dependencies:
- babel-code-frame "^6.26.0"
- babel-generator "^6.26.0"
- babel-helpers "^6.24.1"
- babel-messages "^6.23.0"
- babel-register "^6.26.0"
- babel-runtime "^6.26.0"
- babel-template "^6.26.0"
- babel-traverse "^6.26.0"
- babel-types "^6.26.0"
- babylon "^6.18.0"
- convert-source-map "^1.5.1"
- debug "^2.6.9"
- json5 "^0.5.1"
- lodash "^4.17.4"
- minimatch "^3.0.4"
- path-is-absolute "^1.0.1"
- private "^0.1.8"
- slash "^1.0.0"
- source-map "^0.5.7"
-
-babel-eslint@^9.0.0:
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-9.0.0.tgz#7d9445f81ed9f60aff38115f838970df9f2b6220"
- integrity sha512-itv1MwE3TMbY0QtNfeL7wzak1mV47Uy+n6HtSOO4Xd7rvmO+tsGQSgyOEEgo6Y2vHZKZphaoelNeSVj4vkLA1g==
+babel-eslint@^10.1.0:
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232"
+ integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==
dependencies:
"@babel/code-frame" "^7.0.0"
- "@babel/parser" "^7.0.0"
- "@babel/traverse" "^7.0.0"
- "@babel/types" "^7.0.0"
- eslint-scope "3.7.1"
+ "@babel/parser" "^7.7.0"
+ "@babel/traverse" "^7.7.0"
+ "@babel/types" "^7.7.0"
eslint-visitor-keys "^1.0.0"
-
-babel-generator@^6.18.0, babel-generator@^6.26.0:
- version "6.26.1"
- resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
- integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==
- dependencies:
- babel-messages "^6.23.0"
- babel-runtime "^6.26.0"
- babel-types "^6.26.0"
- detect-indent "^4.0.0"
- jsesc "^1.3.0"
- lodash "^4.17.4"
- source-map "^0.5.7"
- trim-right "^1.0.1"
-
-babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
- integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=
- dependencies:
- babel-helper-explode-assignable-expression "^6.24.1"
- babel-runtime "^6.22.0"
- babel-types "^6.24.1"
-
-babel-helper-builder-react-jsx@^6.24.1:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
- integrity sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=
- dependencies:
- babel-runtime "^6.26.0"
- babel-types "^6.26.0"
- esutils "^2.0.2"
-
-babel-helper-call-delegate@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
- integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=
- dependencies:
- babel-helper-hoist-variables "^6.24.1"
- babel-runtime "^6.22.0"
- babel-traverse "^6.24.1"
- babel-types "^6.24.1"
-
-babel-helper-define-map@^6.24.1:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
- integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=
- dependencies:
- babel-helper-function-name "^6.24.1"
- babel-runtime "^6.26.0"
- babel-types "^6.26.0"
- lodash "^4.17.4"
-
-babel-helper-explode-assignable-expression@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
- integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo=
- dependencies:
- babel-runtime "^6.22.0"
- babel-traverse "^6.24.1"
- babel-types "^6.24.1"
+ resolve "^1.12.0"
babel-helper-function-name@^6.24.1:
version "6.24.1"
@@ -964,78 +2178,30 @@ babel-helper-get-function-arity@^6.24.1:
babel-runtime "^6.22.0"
babel-types "^6.24.1"
-babel-helper-hoist-variables@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
- integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY=
+babel-jest@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.2.2.tgz#70f618f2d7016ed71b232241199308985462f812"
+ integrity sha512-JmLuePHgA+DSOdOL8lPxCgD2LhPPm+rdw1vnxR73PpIrnmKCS2/aBhtkAcxQWuUcW2hBrH8MJ3LKXE7aWpNZyA==
dependencies:
- babel-runtime "^6.22.0"
- babel-types "^6.24.1"
+ "@jest/transform" "^26.2.2"
+ "@jest/types" "^26.2.0"
+ "@types/babel__core" "^7.1.7"
+ babel-plugin-istanbul "^6.0.0"
+ babel-preset-jest "^26.2.0"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.4"
+ slash "^3.0.0"
-babel-helper-optimise-call-expression@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
- integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=
+babel-loader@^8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
+ integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==
dependencies:
- babel-runtime "^6.22.0"
- babel-types "^6.24.1"
-
-babel-helper-regex@^6.24.1:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
- integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=
- dependencies:
- babel-runtime "^6.26.0"
- babel-types "^6.26.0"
- lodash "^4.17.4"
-
-babel-helper-remap-async-to-generator@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
- integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=
- dependencies:
- babel-helper-function-name "^6.24.1"
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
- babel-traverse "^6.24.1"
- babel-types "^6.24.1"
-
-babel-helper-replace-supers@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
- integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo=
- dependencies:
- babel-helper-optimise-call-expression "^6.24.1"
- babel-messages "^6.23.0"
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
- babel-traverse "^6.24.1"
- babel-types "^6.24.1"
-
-babel-helpers@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
- integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=
- dependencies:
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
-
-babel-jest@^22.0.0, babel-jest@^22.4.4:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.4.tgz#977259240420e227444ebe49e226a61e49ea659d"
- integrity sha512-A9NB6/lZhYyypR9ATryOSDcqBaqNdzq4U+CN+/wcMsLcmKkPxQEoTKLajGfd3IkxNyVBT8NewUK2nWyGbSzHEQ==
- dependencies:
- babel-plugin-istanbul "^4.1.5"
- babel-preset-jest "^22.4.4"
-
-babel-loader@^7.1.2:
- version "7.1.5"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.5.tgz#e3ee0cd7394aa557e013b02d3e492bfd07aa6d68"
- integrity sha512-iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==
- dependencies:
- find-cache-dir "^1.0.0"
- loader-utils "^1.0.2"
- mkdirp "^0.5.1"
+ find-cache-dir "^2.1.0"
+ loader-utils "^1.4.0"
+ mkdirp "^0.5.3"
+ pify "^4.0.1"
+ schema-utils "^2.6.5"
babel-messages@^6.23.0:
version "6.23.0"
@@ -1044,29 +2210,35 @@ babel-messages@^6.23.0:
dependencies:
babel-runtime "^6.22.0"
-babel-plugin-check-es2015-constants@^6.22.0:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
- integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=
+babel-plugin-dynamic-import-node@^2.3.3:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
+ integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
dependencies:
- babel-runtime "^6.22.0"
+ object.assign "^4.1.0"
-babel-plugin-istanbul@^4.1.5:
- version "4.1.6"
- resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz#36c59b2192efce81c5b378321b74175add1c9a45"
- integrity sha512-PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ==
+babel-plugin-istanbul@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
+ integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
dependencies:
- babel-plugin-syntax-object-rest-spread "^6.13.0"
- find-up "^2.1.0"
- istanbul-lib-instrument "^1.10.1"
- test-exclude "^4.2.1"
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@istanbuljs/load-nyc-config" "^1.0.0"
+ "@istanbuljs/schema" "^0.1.2"
+ istanbul-lib-instrument "^4.0.0"
+ test-exclude "^6.0.0"
-babel-plugin-jest-hoist@^22.4.4:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.4.tgz#b9851906eab34c7bf6f8c895a2b08bea1a844c0b"
- integrity sha512-DUvGfYaAIlkdnygVIEl0O4Av69NtuQWcrjMOv6DODPuhuGLDnbsARz3AwiiI/EkIMMlxQDUcrZ9yoyJvTNjcVQ==
+babel-plugin-jest-hoist@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.2.0.tgz#bdd0011df0d3d513e5e95f76bd53b51147aca2dd"
+ integrity sha512-B/hVMRv8Nh1sQ1a3EY8I0n4Y1Wty3NrR5ebOyVT302op+DOAau+xNEImGMsUWOC3++ZlMooCytKz+NgN8aKGbA==
+ dependencies:
+ "@babel/template" "^7.3.3"
+ "@babel/types" "^7.3.3"
+ "@types/babel__core" "^7.0.0"
+ "@types/babel__traverse" "^7.0.6"
-babel-plugin-lodash@^3.2.11:
+babel-plugin-lodash@^3.3.4:
version "3.3.4"
resolved "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz#4f6844358a1340baed182adbeffa8df9967bc196"
integrity sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==
@@ -1077,14 +2249,7 @@ babel-plugin-lodash@^3.2.11:
lodash "^4.17.10"
require-package-name "^2.0.1"
-babel-plugin-react-transform@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz#515bbfa996893981142d90b1f9b1635de2995109"
- integrity sha1-UVu/qZaJOYEULZCx+bFjXeKZUQk=
- dependencies:
- lodash "^4.6.1"
-
-"babel-plugin-styled-components@>= 1", babel-plugin-styled-components@^1.1.7:
+"babel-plugin-styled-components@>= 1":
version "1.10.7"
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.10.7.tgz#3494e77914e9989b33cc2d7b3b29527a949d635c"
integrity sha512-MBMHGcIA22996n9hZRf/UJLVVgkEOITuR2SvjHLb5dSTUyR4ZRGn+ngITapes36FI3WLxZHfRhkA1ffHxihOrg==
@@ -1094,60 +2259,26 @@ babel-plugin-react-transform@^2.0.2:
babel-plugin-syntax-jsx "^6.18.0"
lodash "^4.17.11"
-babel-plugin-syntax-async-functions@^6.8.0:
- version "6.13.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
- integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=
+babel-plugin-styled-components@^1.11.1:
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.11.1.tgz#5296a9e557d736c3186be079fff27c6665d63d76"
+ integrity sha512-YwrInHyKUk1PU3avIRdiLyCpM++18Rs1NgyMXEAQC33rIXs/vro0A+stf4sT0Gf22Got+xRWB8Cm0tw+qkRzBA==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.0.0"
+ "@babel/helper-module-imports" "^7.0.0"
+ babel-plugin-syntax-jsx "^6.18.0"
+ lodash "^4.17.11"
babel-plugin-syntax-class-properties@^6.8.0:
version "6.13.0"
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
integrity sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=
-babel-plugin-syntax-decorators@^6.1.18:
- version "6.13.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
- integrity sha1-MSVjtNvePMgGzuPkFszurd0RrAs=
-
-babel-plugin-syntax-dynamic-import@^6.18.0:
- version "6.18.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
- integrity sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=
-
-babel-plugin-syntax-exponentiation-operator@^6.8.0:
- version "6.13.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
- integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=
-
-babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.3.13:
- version "6.18.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
- integrity sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=
-
-babel-plugin-syntax-jsx@^6.18.0, babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
+babel-plugin-syntax-jsx@^6.18.0:
version "6.18.0"
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
-babel-plugin-syntax-object-rest-spread@^6.13.0, babel-plugin-syntax-object-rest-spread@^6.8.0:
- version "6.13.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
- integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=
-
-babel-plugin-syntax-trailing-function-commas@^6.22.0:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
- integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=
-
-babel-plugin-transform-async-to-generator@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
- integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=
- dependencies:
- babel-helper-remap-async-to-generator "^6.24.1"
- babel-plugin-syntax-async-functions "^6.8.0"
- babel-runtime "^6.22.0"
-
babel-plugin-transform-class-properties@^6.24.1:
version "6.24.1"
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
@@ -1158,372 +2289,32 @@ babel-plugin-transform-class-properties@^6.24.1:
babel-runtime "^6.22.0"
babel-template "^6.24.1"
-babel-plugin-transform-decorators-legacy@1.3.4:
- version "1.3.4"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators-legacy/-/babel-plugin-transform-decorators-legacy-1.3.4.tgz#741b58f6c5bce9e6027e0882d9c994f04f366925"
- integrity sha1-dBtY9sW86eYCfgiC2cmU8E82aSU=
+babel-preset-current-node-syntax@^0.1.2:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.3.tgz#b4b547acddbf963cba555ba9f9cbbb70bfd044da"
+ integrity sha512-uyexu1sVwcdFnyq9o8UQYsXwXflIh8LvrF5+cKrYam93ned1CStffB3+BEcsxGSgagoA3GEyjDqO4a/58hyPYQ==
dependencies:
- babel-plugin-syntax-decorators "^6.1.18"
- babel-runtime "^6.2.0"
- babel-template "^6.3.0"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+ "@babel/plugin-syntax-bigint" "^7.8.3"
+ "@babel/plugin-syntax-class-properties" "^7.8.3"
+ "@babel/plugin-syntax-import-meta" "^7.8.3"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+ "@babel/plugin-syntax-numeric-separator" "^7.8.3"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
-babel-plugin-transform-es2015-arrow-functions@^6.22.0:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
- integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=
+babel-preset-jest@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.2.0.tgz#f198201a4e543a43eb40bc481e19736e095fd3e0"
+ integrity sha512-R1k8kdP3R9phYQugXeNnK/nvCGlBzG4m3EoIIukC80GXb6wCv2XiwPhK6K9MAkQcMszWBYvl2Wm+yigyXFQqXg==
dependencies:
- babel-runtime "^6.22.0"
+ babel-plugin-jest-hoist "^26.2.0"
+ babel-preset-current-node-syntax "^0.1.2"
-babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
- integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE=
- dependencies:
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-block-scoping@^6.23.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
- integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=
- dependencies:
- babel-runtime "^6.26.0"
- babel-template "^6.26.0"
- babel-traverse "^6.26.0"
- babel-types "^6.26.0"
- lodash "^4.17.4"
-
-babel-plugin-transform-es2015-classes@^6.23.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
- integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=
- dependencies:
- babel-helper-define-map "^6.24.1"
- babel-helper-function-name "^6.24.1"
- babel-helper-optimise-call-expression "^6.24.1"
- babel-helper-replace-supers "^6.24.1"
- babel-messages "^6.23.0"
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
- babel-traverse "^6.24.1"
- babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-computed-properties@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
- integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=
- dependencies:
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
-
-babel-plugin-transform-es2015-destructuring@^6.23.0:
- version "6.23.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
- integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=
- dependencies:
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
- integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4=
- dependencies:
- babel-runtime "^6.22.0"
- babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-for-of@^6.23.0:
- version "6.23.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
- integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=
- dependencies:
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-function-name@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
- integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=
- dependencies:
- babel-helper-function-name "^6.24.1"
- babel-runtime "^6.22.0"
- babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-literals@^6.22.0:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
- integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=
- dependencies:
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
- integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=
- dependencies:
- babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
-
-babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
- version "6.26.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
- integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==
- dependencies:
- babel-plugin-transform-strict-mode "^6.24.1"
- babel-runtime "^6.26.0"
- babel-template "^6.26.0"
- babel-types "^6.26.0"
-
-babel-plugin-transform-es2015-modules-systemjs@^6.23.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
- integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=
- dependencies:
- babel-helper-hoist-variables "^6.24.1"
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
-
-babel-plugin-transform-es2015-modules-umd@^6.23.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
- integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg=
- dependencies:
- babel-plugin-transform-es2015-modules-amd "^6.24.1"
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
-
-babel-plugin-transform-es2015-object-super@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
- integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40=
- dependencies:
- babel-helper-replace-supers "^6.24.1"
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-parameters@^6.23.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
- integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=
- dependencies:
- babel-helper-call-delegate "^6.24.1"
- babel-helper-get-function-arity "^6.24.1"
- babel-runtime "^6.22.0"
- babel-template "^6.24.1"
- babel-traverse "^6.24.1"
- babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
- integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=
- dependencies:
- babel-runtime "^6.22.0"
- babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-spread@^6.22.0:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
- integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE=
- dependencies:
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-sticky-regex@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
- integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw=
- dependencies:
- babel-helper-regex "^6.24.1"
- babel-runtime "^6.22.0"
- babel-types "^6.24.1"
-
-babel-plugin-transform-es2015-template-literals@^6.22.0:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
- integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=
- dependencies:
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-typeof-symbol@^6.23.0:
- version "6.23.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
- integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=
- dependencies:
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-es2015-unicode-regex@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
- integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek=
- dependencies:
- babel-helper-regex "^6.24.1"
- babel-runtime "^6.22.0"
- regexpu-core "^2.0.0"
-
-babel-plugin-transform-exponentiation-operator@^6.22.0:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
- integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=
- dependencies:
- babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
- babel-plugin-syntax-exponentiation-operator "^6.8.0"
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-flow-strip-types@^6.3.13:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
- integrity sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=
- dependencies:
- babel-plugin-syntax-flow "^6.18.0"
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-object-rest-spread@^6.23.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
- integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=
- dependencies:
- babel-plugin-syntax-object-rest-spread "^6.8.0"
- babel-runtime "^6.26.0"
-
-babel-plugin-transform-react-display-name@^6.3.13:
- version "6.25.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
- integrity sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=
- dependencies:
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-react-jsx-self@^6.11.0:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
- integrity sha1-322AqdomEqEh5t3XVYvL7PBuY24=
- dependencies:
- babel-plugin-syntax-jsx "^6.8.0"
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-react-jsx-source@^6.3.13:
- version "6.22.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
- integrity sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=
- dependencies:
- babel-plugin-syntax-jsx "^6.8.0"
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-react-jsx@^6.3.13:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
- integrity sha1-hAoCjn30YN/DotKfDA2R9jduZqM=
- dependencies:
- babel-helper-builder-react-jsx "^6.24.1"
- babel-plugin-syntax-jsx "^6.8.0"
- babel-runtime "^6.22.0"
-
-babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.24.1:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
- integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=
- dependencies:
- regenerator-transform "^0.10.0"
-
-babel-plugin-transform-strict-mode@^6.24.1:
- version "6.24.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
- integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=
- dependencies:
- babel-runtime "^6.22.0"
- babel-types "^6.24.1"
-
-babel-polyfill@^6.13.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
- integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=
- dependencies:
- babel-runtime "^6.26.0"
- core-js "^2.5.0"
- regenerator-runtime "^0.10.5"
-
-babel-preset-env@^1.4.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a"
- integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==
- dependencies:
- babel-plugin-check-es2015-constants "^6.22.0"
- babel-plugin-syntax-trailing-function-commas "^6.22.0"
- babel-plugin-transform-async-to-generator "^6.22.0"
- babel-plugin-transform-es2015-arrow-functions "^6.22.0"
- babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
- babel-plugin-transform-es2015-block-scoping "^6.23.0"
- babel-plugin-transform-es2015-classes "^6.23.0"
- babel-plugin-transform-es2015-computed-properties "^6.22.0"
- babel-plugin-transform-es2015-destructuring "^6.23.0"
- babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
- babel-plugin-transform-es2015-for-of "^6.23.0"
- babel-plugin-transform-es2015-function-name "^6.22.0"
- babel-plugin-transform-es2015-literals "^6.22.0"
- babel-plugin-transform-es2015-modules-amd "^6.22.0"
- babel-plugin-transform-es2015-modules-commonjs "^6.23.0"
- babel-plugin-transform-es2015-modules-systemjs "^6.23.0"
- babel-plugin-transform-es2015-modules-umd "^6.23.0"
- babel-plugin-transform-es2015-object-super "^6.22.0"
- babel-plugin-transform-es2015-parameters "^6.23.0"
- babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
- babel-plugin-transform-es2015-spread "^6.22.0"
- babel-plugin-transform-es2015-sticky-regex "^6.22.0"
- babel-plugin-transform-es2015-template-literals "^6.22.0"
- babel-plugin-transform-es2015-typeof-symbol "^6.23.0"
- babel-plugin-transform-es2015-unicode-regex "^6.22.0"
- babel-plugin-transform-exponentiation-operator "^6.22.0"
- babel-plugin-transform-regenerator "^6.22.0"
- browserslist "^3.2.6"
- invariant "^2.2.2"
- semver "^5.3.0"
-
-babel-preset-jest@^22.4.4:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.4.tgz#ec9fbd8bcd7dfd24b8b5320e0e688013235b7c39"
- integrity sha512-+dxMtOFwnSYWfum0NaEc0O03oSdwBsjx4tMSChRDPGwu/4wSY6Q6ANW3wkjKpJzzguaovRs/DODcT4hbSN8yiA==
- dependencies:
- babel-plugin-jest-hoist "^22.4.4"
- babel-plugin-syntax-object-rest-spread "^6.13.0"
-
-babel-preset-react-hmre@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/babel-preset-react-hmre/-/babel-preset-react-hmre-1.1.1.tgz#d216e60cb5b8d4c873e19ed0f54eaff1437bc492"
- integrity sha1-0hbmDLW41Mhz4Z7Q9U6v8UN7xJI=
- dependencies:
- babel-plugin-react-transform "^2.0.2"
- react-transform-catch-errors "^1.0.2"
- react-transform-hmr "^1.0.3"
- redbox-react "^1.2.2"
-
-babel-preset-react@6.11.1:
- version "6.11.1"
- resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.11.1.tgz#98ac2bd3c1b76f3062ae082580eade154a19b590"
- integrity sha1-mKwr08G3bzBirgglgOreFUoZtZA=
- dependencies:
- babel-plugin-syntax-flow "^6.3.13"
- babel-plugin-syntax-jsx "^6.3.13"
- babel-plugin-transform-flow-strip-types "^6.3.13"
- babel-plugin-transform-react-display-name "^6.3.13"
- babel-plugin-transform-react-jsx "^6.3.13"
- babel-plugin-transform-react-jsx-self "^6.11.0"
- babel-plugin-transform-react-jsx-source "^6.3.13"
-
-babel-regenerator-runtime@6.5.0:
- version "6.5.0"
- resolved "https://registry.yarnpkg.com/babel-regenerator-runtime/-/babel-regenerator-runtime-6.5.0.tgz#0e41cd1c9f80442466f015c749fff8ba98f8e110"
- integrity sha1-DkHNHJ+ARCRm8BXHSf/4upj44RA=
-
-babel-register@^6.26.0:
- version "6.26.0"
- resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
- integrity sha1-btAhFz4vy0htestFxgCahW9kcHE=
- dependencies:
- babel-core "^6.26.0"
- babel-runtime "^6.26.0"
- core-js "^2.5.0"
- home-or-tmp "^2.0.0"
- lodash "^4.17.4"
- mkdirp "^0.5.1"
- source-map-support "^0.4.15"
-
-babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0:
+babel-runtime@^6.22.0, babel-runtime@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
@@ -1531,7 +2322,7 @@ babel-runtime@^6.18.0, babel-runtime@^6.2.0, babel-runtime@^6.22.0, babel-runtim
core-js "^2.4.0"
regenerator-runtime "^0.11.0"
-babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0, babel-template@^6.3.0:
+babel-template@^6.24.1:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=
@@ -1542,7 +2333,7 @@ babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0, babel-te
babylon "^6.18.0"
lodash "^4.17.4"
-babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
+babel-traverse@^6.24.1, babel-traverse@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=
@@ -1557,7 +2348,7 @@ babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
invariant "^2.2.2"
lodash "^4.17.4"
-babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
+babel-types@^6.24.1, babel-types@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=
@@ -1787,6 +2578,13 @@ braces@^2.3.1, braces@^2.3.2:
split-string "^3.0.2"
to-regex "^3.0.1"
+braces@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
+ integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+ dependencies:
+ fill-range "^7.0.1"
+
brorand@^1.0.1:
version "1.1.0"
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
@@ -1797,13 +2595,6 @@ browser-process-hrtime@^1.0.0:
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-browser-resolve@^1.11.2:
- version "1.11.3"
- resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6"
- integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==
- dependencies:
- resolve "1.1.7"
-
browserify-aes@^1.0.0, browserify-aes@^1.0.4:
version "1.2.0"
resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
@@ -1863,13 +2654,15 @@ browserify-zlib@^0.2.0:
dependencies:
pako "~1.0.5"
-browserslist@^3.2.6:
- version "3.2.8"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6"
- integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==
+browserslist@^4.12.0, browserslist@^4.8.5:
+ version "4.14.0"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.0.tgz#2908951abfe4ec98737b72f34c3bcedc8d43b000"
+ integrity sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==
dependencies:
- caniuse-lite "^1.0.30000844"
- electron-to-chromium "^1.3.47"
+ caniuse-lite "^1.0.30001111"
+ electron-to-chromium "^1.3.523"
+ escalade "^3.0.2"
+ node-releases "^1.1.60"
bser@2.1.1:
version "2.1.1"
@@ -2032,11 +2825,6 @@ callsite@1.0.0:
resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20"
integrity sha1-KAOY5dZkvXQDi28JBRU+borxvCA=
-callsites@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
- integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
-
callsites@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
@@ -2060,11 +2848,16 @@ camelcase@^4.0.0, camelcase@^4.1.0:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=
-camelcase@^5.0.0:
+camelcase@^5.0.0, camelcase@^5.3.1:
version "5.3.1"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
+camelcase@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e"
+ integrity sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w==
+
camelize@1.0.0, camelize@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b"
@@ -2079,17 +2872,17 @@ cancan@3.1.0:
auto-bind "^1.1.0"
is-plain-obj "^1.1.0"
-caniuse-lite@^1.0.30000844:
- version "1.0.30001043"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001043.tgz#1b561de27aefbe6ff99e41866b8d7d87840c513b"
- integrity sha512-MrBDRPJPDBYwACtSQvxg9+fkna5jPXhJlKmuxenl/ml9uf8LHKlDmLpElu+zTW/bEz7lC1m0wTDD7jiIB+hgFg==
+caniuse-lite@^1.0.30001111:
+ version "1.0.30001112"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001112.tgz#0fffc3b934ff56ff0548c37bc9dad7d882bcf672"
+ integrity sha512-J05RTQlqsatidif/38aN3PGULCLrg8OYQOlJUKbeYVzC2mGZkZLIztwRlB3MtrfLmawUmjFlNJvy/uhwniIe1Q==
-capture-exit@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f"
- integrity sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28=
+capture-exit@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
+ integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
dependencies:
- rsvp "^3.3.3"
+ rsvp "^4.8.4"
capture-stack-trace@^1.0.0:
version "1.0.1"
@@ -2127,7 +2920,7 @@ chalk@^1.1.3:
strip-ansi "^3.0.0"
supports-color "^2.0.0"
-chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2:
+chalk@^2.0.0, chalk@^2.0.1:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -2136,6 +2929,19 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.2:
escape-string-regexp "^1.0.5"
supports-color "^5.3.0"
+chalk@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
+ integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+char-regex@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
+ integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
+
character-entities-legacy@^1.0.0:
version "1.1.4"
resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
@@ -2151,11 +2957,6 @@ character-reference-invalid@^1.0.0:
resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==
-chardet@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
- integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
-
charenc@~0.0.1:
version "0.0.2"
resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
@@ -2190,6 +2991,11 @@ ci-info@^1.5.0:
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497"
integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==
+ci-info@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
+ integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
+
cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
version "1.0.4"
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
@@ -2242,18 +3048,6 @@ cli-color@^1.4.0:
memoizee "^0.4.14"
timers-ext "^0.1.5"
-cli-cursor@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
- integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
- dependencies:
- restore-cursor "^2.0.0"
-
-cli-width@^2.0.0:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
- integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==
-
clipboard@^2.0.0:
version "2.0.6"
resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376"
@@ -2299,6 +3093,15 @@ cliui@^5.0.0:
strip-ansi "^5.2.0"
wrap-ansi "^5.1.0"
+cliui@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
+ integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.0"
+ wrap-ansi "^6.2.0"
+
clone-buffer@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58"
@@ -2363,6 +3166,11 @@ code-point-at@^1.0.0:
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
+collect-v8-coverage@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
+ integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
+
collection-visit@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
@@ -2378,11 +3186,23 @@ color-convert@^1.9.0:
dependencies:
color-name "1.1.3"
+color-convert@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+ integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+ dependencies:
+ color-name "~1.1.4"
+
color-name@1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
+color-name@~1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+ integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+
colors@^1.3.2:
version "1.4.0"
resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
@@ -2405,7 +3225,7 @@ commander@2.17.x:
resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==
-commander@^2.11.0, commander@^2.19.0, commander@~2.20.3:
+commander@^2.11.0, commander@^2.19.0:
version "2.20.3"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
@@ -2497,7 +3317,7 @@ configstore@^3.0.0:
write-file-atomic "^2.0.0"
xdg-basedir "^3.0.0"
-confusing-browser-globals@^1.0.6:
+confusing-browser-globals@^1.0.5:
version "1.0.9"
resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd"
integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw==
@@ -2539,7 +3359,7 @@ content-type@^1.0.4:
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
-convert-source-map@^1.4.0, convert-source-map@^1.5.1:
+convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
version "1.7.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
@@ -2588,12 +3408,20 @@ copy-to@^2.0.1:
resolved "https://registry.yarnpkg.com/copy-to/-/copy-to-2.0.1.tgz#2680fbb8068a48d08656b6098092bdafc906f4a5"
integrity sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU=
+core-js-compat@^3.6.2:
+ version "3.6.5"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c"
+ integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==
+ dependencies:
+ browserslist "^4.8.5"
+ semver "7.0.0"
+
core-js-pure@^3.0.0:
version "3.6.5"
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.5.tgz#c79e75f5e38dbc85a662d91eea52b8256d53b813"
integrity sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA==
-core-js@^2.4.0, core-js@^2.5.0, core-js@^2.6.5:
+core-js@2, core-js@^2.4.0, core-js@^2.5.0, core-js@^2.6.5:
version "2.6.11"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==
@@ -2603,11 +3431,6 @@ core-js@^3.1.2:
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.5.tgz#7395dc273af37fb2e50e9bd3d9fe841285231d1a"
integrity sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==
-core-js@~2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.3.0.tgz#fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65"
- integrity sha1-+rg/uwstjchfpjbEudNMdUIMbWU=
-
core-util-is@1.0.2, core-util-is@~1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
@@ -2668,7 +3491,7 @@ cross-spawn@^5.0.1:
shebang-command "^1.2.0"
which "^1.2.9"
-cross-spawn@^6.0.0, cross-spawn@^6.0.5:
+cross-spawn@^6.0.0:
version "6.0.5"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
@@ -2679,6 +3502,15 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"
+cross-spawn@^7.0.0, cross-spawn@^7.0.2:
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+ integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+ dependencies:
+ path-key "^3.1.0"
+ shebang-command "^2.0.0"
+ which "^2.0.1"
+
crypt@~0.0.1:
version "0.0.2"
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
@@ -2735,17 +3567,22 @@ css-what@2.1:
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==
-cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
+cssom@^0.4.4:
+ version "0.4.4"
+ resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
+ integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
+
+cssom@~0.3.6:
version "0.3.8"
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
-cssstyle@^1.0.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1"
- integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==
+cssstyle@^2.2.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
+ integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
dependencies:
- cssom "0.3.x"
+ cssom "~0.3.6"
cyclist@^1.0.1:
version "1.0.1"
@@ -2760,7 +3597,7 @@ d@1, d@^1.0.1:
es5-ext "^0.10.50"
type "^1.0.1"
-damerau-levenshtein@^1.0.4:
+damerau-levenshtein@^1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791"
integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==
@@ -2777,14 +3614,14 @@ dasherize@2.0.0:
resolved "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz#6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308"
integrity sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg=
-data-urls@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
- integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==
+data-urls@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
+ integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
dependencies:
- abab "^2.0.0"
- whatwg-mimetype "^2.2.0"
- whatwg-url "^7.0.0"
+ abab "^2.0.3"
+ whatwg-mimetype "^2.3.0"
+ whatwg-url "^8.0.0"
date-fns@1.29.0:
version "1.29.0"
@@ -2829,6 +3666,11 @@ decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.2.0:
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
+decimal.js@^10.2.0:
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.0.tgz#39466113a9e036111d02f82489b5fd6b0b5ed231"
+ integrity sha512-vDPw+rDgn3bZe1+F/pyEwb1oMG2XTlRVgAa6B4KccTEpYgF8w6eQllVbQcfIJnZyvzFtFpxnpGtx8dd7DJp/Rw==
+
decode-uri-component@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
@@ -2851,17 +3693,15 @@ deep-extend@^0.6.0:
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
-deep-is@~0.1.3:
+deep-is@^0.1.3, deep-is@~0.1.3:
version "0.1.3"
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
-default-require-extensions@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz#f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8"
- integrity sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=
- dependencies:
- strip-bom "^2.0.0"
+deepmerge@^4.2.2:
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
+ integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
define-properties@^1.1.2, define-properties@^1.1.3:
version "1.1.3"
@@ -2940,22 +3780,15 @@ destroy@^1.0.4:
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
-detect-indent@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
- integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg=
- dependencies:
- repeating "^2.0.0"
+detect-newline@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
+ integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
-detect-newline@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
- integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=
-
-diff@^3.2.0:
- version "3.5.0"
- resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
- integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==
+diff-sequences@^26.0.0:
+ version "26.0.0"
+ resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.0.0.tgz#0760059a5c287637b842bd7085311db7060e88a6"
+ integrity sha512-JC/eHYEC3aSS0vZGjuoc4vHA0yAQTzhQQldXMeMF+JlxLGJlCO38Gma82NV9gk1jGFz8mDzUMeaKXvjRRdJ2dg==
diffie-hellman@^5.0.0:
version "5.0.3"
@@ -3018,11 +3851,6 @@ dom-utils@^0.9.0:
resolved "https://registry.yarnpkg.com/dom-utils/-/dom-utils-0.9.0.tgz#e615a5af15ac4505e55ef612c72b5b5d176121f3"
integrity sha1-5hWlrxWsRQXlXvYSxytbXRdhIfM=
-dom-walk@^0.1.0:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84"
- integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==
-
domain-browser@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
@@ -3038,12 +3866,12 @@ domelementtype@^2.0.1:
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d"
integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==
-domexception@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
- integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==
+domexception@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
+ integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
dependencies:
- webidl-conversions "^4.0.2"
+ webidl-conversions "^5.0.0"
domhandler@^2.3.0:
version "2.4.2"
@@ -3152,10 +3980,10 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-electron-to-chromium@^1.3.47:
- version "1.3.413"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.413.tgz#9c457a4165c7b42e59d66dff841063eb9bfe5614"
- integrity sha512-Jm1Rrd3siqYHO3jftZwDljL2LYQafj3Kki5r+udqE58d0i91SkjItVJ5RwlJn9yko8i7MOcoidVKjQlgSdd1hg==
+electron-to-chromium@^1.3.523:
+ version "1.3.526"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.526.tgz#0e004899edf75afc172cce1b8189aac5dca646aa"
+ integrity sha512-HiroW5ZbGwgT8kCnoEO8qnGjoTPzJxduvV/Vv/wH63eo2N6Zj3xT5fmmaSPAPUM05iN9/5fIEkIg3owTtV6QZg==
elliptic@^6.0.0:
version "6.5.3"
@@ -3170,16 +3998,31 @@ elliptic@^6.0.0:
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.0"
+emittery@^0.7.1:
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.1.tgz#c02375a927a40948c0345cc903072597f5270451"
+ integrity sha512-d34LN4L6h18Bzz9xpoku2nPwKxCPlPMr3EEKTkoEBi+1/+b0lcRkRJ1UVyyZaKNeqGR3swcGl6s390DNO4YVgQ==
+
emoji-regex@^6.5.1:
version "6.5.1"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2"
integrity sha512-PAHp6TxrCy7MGMFidro8uikr+zlJJKJ/Q6mm2ExZ7HwkyR9lSVFfE3kt36qcwa24BQL7y0G9axycGjK1A/0uNQ==
-emoji-regex@^7.0.1, emoji-regex@^7.0.2:
+emoji-regex@^7.0.1:
version "7.0.3"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
+emoji-regex@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+
+emoji-regex@^9.0.0:
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.0.0.tgz#48a2309cc8a1d2e9d23bc6a67c39b63032e76ea4"
+ integrity sha512-6p1NII1Vm62wni/VR/cUMauVQoxmLVb9csqQlvLz+hO2gk8U2UYDfXHQSUYIBKmZwAKz867IDqG7B+u0mj+M6w==
+
emojis-list@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
@@ -3259,6 +4102,13 @@ enhanced-resolve@^3.4.0:
object-assign "^4.0.1"
tapable "^0.2.7"
+enquirer@^2.3.5:
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
+ integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
+ dependencies:
+ ansi-colors "^4.1.1"
+
entities@^1.1.1:
version "1.1.2"
resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
@@ -3281,7 +4131,7 @@ errno@^0.1.3, errno@~0.1.7:
dependencies:
prr "~1.0.1"
-error-ex@^1.2.0:
+error-ex@^1.2.0, error-ex@^1.3.1:
version "1.3.2"
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
@@ -3293,13 +4143,6 @@ error-inject@^1.0.0:
resolved "https://registry.yarnpkg.com/error-inject/-/error-inject-1.0.0.tgz#e2b3d91b54aed672f309d950d154850fa11d4f37"
integrity sha1-4rPZG1Su1nLzCdlQ0VSFD6EdTzc=
-error-stack-parser@^1.3.6:
- version "1.3.6"
- resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-1.3.6.tgz#e0e73b93e417138d1cd7c0b746b1a4a14854c292"
- integrity sha1-4Oc7k+QXE40c18C3RrGkoUhUwpI=
- dependencies:
- stackframe "^0.3.1"
-
es-abstract@^1.17.0, es-abstract@^1.17.0-next.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5:
version "1.17.5"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.5.tgz#d8c9d1d66c8981fb9200e2251d799eee92774ae9"
@@ -3361,11 +4204,6 @@ es6-map@^0.1.3:
es6-symbol "~3.1.1"
event-emitter "~0.3.5"
-es6-promise@~3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-3.0.2.tgz#010d5858423a5f118979665f46486a95c6ee2bb6"
- integrity sha1-AQ1YWEI6XxGJeWZfRkhqlcbuK7Y=
-
es6-set@~0.1.5:
version "0.1.5"
resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1"
@@ -3403,6 +4241,11 @@ es6-weak-map@^2.0.1, es6-weak-map@^2.0.2:
es6-iterator "^2.0.3"
es6-symbol "^3.1.1"
+escalade@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4"
+ integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==
+
escape-html@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
@@ -3413,10 +4256,15 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
-escodegen@^1.9.1:
- version "1.14.1"
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457"
- integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ==
+escape-string-regexp@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
+ integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
+
+escodegen@^1.14.1:
+ version "1.14.3"
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
+ integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
dependencies:
esprima "^4.0.1"
estraverse "^4.2.0"
@@ -3435,22 +4283,22 @@ escope@^3.6.0:
esrecurse "^4.1.0"
estraverse "^4.1.1"
-eslint-config-react-app@^3.0.6:
- version "3.0.8"
- resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-3.0.8.tgz#6f606828ba30bafee7d744c41cd07a3fea8f3035"
- integrity sha512-Ovi6Bva67OjXrom9Y/SLJRkrGqKhMAL0XCH8BizPhjEVEhYczl2ZKiNZI2CuqO5/CJwAfMwRXAVGY0KToWr1aA==
+eslint-config-react-app@3.0.6:
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-3.0.6.tgz#addcae1359235941e95f3c96970b7ac8552e1130"
+ integrity sha512-VL5rA1EBZv7f9toc9x71or7nr4jRmwCH4V9JKB9DFVaTLOLI9+vjWLgQLjMu3xR9iUT80dty86RbCfNaKyrFFg==
dependencies:
- confusing-browser-globals "^1.0.6"
+ confusing-browser-globals "^1.0.5"
-eslint-import-resolver-node@^0.3.2:
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404"
- integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg==
+eslint-import-resolver-node@^0.3.3:
+ version "0.3.4"
+ resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717"
+ integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==
dependencies:
debug "^2.6.9"
resolve "^1.13.1"
-eslint-module-utils@^2.4.1:
+eslint-module-utils@^2.6.0:
version "2.6.0"
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz#579ebd094f56af7797d19c9866c9c9486629bfa6"
integrity sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==
@@ -3458,157 +4306,156 @@ eslint-module-utils@^2.4.1:
debug "^2.6.9"
pkg-dir "^2.0.0"
-eslint-plugin-flowtype@^2.40.1:
- version "2.50.3"
- resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.3.tgz#61379d6dce1d010370acd6681740fd913d68175f"
- integrity sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ==
+eslint-plugin-flowtype@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.0.tgz#a4bef5dc18f9b2bdb41569a4ab05d73805a3d261"
+ integrity sha512-z7ULdTxuhlRJcEe1MVljePXricuPOrsWfScRXFhNzVD5dmTHWjIF57AxD0e7AbEoLSbjSsaA5S+hCg43WvpXJQ==
dependencies:
- lodash "^4.17.10"
+ lodash "^4.17.15"
+ string-natural-compare "^3.0.1"
-eslint-plugin-import@^2.14.0:
- version "2.20.2"
- resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.2.tgz#91fc3807ce08be4837141272c8b99073906e588d"
- integrity sha512-FObidqpXrR8OnCh4iNsxy+WACztJLXAHBO5hK79T1Hc77PgQZkyDGA5Ag9xAvRpglvLNxhH/zSmZ70/pZ31dHg==
+eslint-plugin-import@^2.22.0:
+ version "2.22.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz#92f7736fe1fde3e2de77623c838dd992ff5ffb7e"
+ integrity sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg==
dependencies:
- array-includes "^3.0.3"
- array.prototype.flat "^1.2.1"
+ array-includes "^3.1.1"
+ array.prototype.flat "^1.2.3"
contains-path "^0.1.0"
debug "^2.6.9"
doctrine "1.5.0"
- eslint-import-resolver-node "^0.3.2"
- eslint-module-utils "^2.4.1"
+ eslint-import-resolver-node "^0.3.3"
+ eslint-module-utils "^2.6.0"
has "^1.0.3"
minimatch "^3.0.4"
- object.values "^1.1.0"
+ object.values "^1.1.1"
read-pkg-up "^2.0.0"
- resolve "^1.12.0"
+ resolve "^1.17.0"
+ tsconfig-paths "^3.9.0"
-eslint-plugin-jsx-a11y@^6.1.2:
- version "6.2.3"
- resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz#b872a09d5de51af70a97db1eea7dc933043708aa"
- integrity sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==
+eslint-plugin-jsx-a11y@^6.1.0:
+ version "6.3.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.1.tgz#99ef7e97f567cc6a5b8dd5ab95a94a67058a2660"
+ integrity sha512-i1S+P+c3HOlBJzMFORRbC58tHa65Kbo8b52/TwCwSKLohwvpfT5rm2GjGWzOHTEuq4xxf2aRlHHTtmExDQOP+g==
dependencies:
- "@babel/runtime" "^7.4.5"
- aria-query "^3.0.0"
- array-includes "^3.0.3"
+ "@babel/runtime" "^7.10.2"
+ aria-query "^4.2.2"
+ array-includes "^3.1.1"
ast-types-flow "^0.0.7"
- axobject-query "^2.0.2"
- damerau-levenshtein "^1.0.4"
- emoji-regex "^7.0.2"
+ axe-core "^3.5.4"
+ axobject-query "^2.1.2"
+ damerau-levenshtein "^1.0.6"
+ emoji-regex "^9.0.0"
has "^1.0.3"
- jsx-ast-utils "^2.2.1"
+ jsx-ast-utils "^2.4.1"
+ language-tags "^1.0.5"
-eslint-plugin-prettier@^2.4.0:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.7.0.tgz#b4312dcf2c1d965379d7f9d5b5f8aaadc6a45904"
- integrity sha512-CStQYJgALoQBw3FsBzH0VOVDRnJ/ZimUlpLm226U8qgqYJfPOY/CPK6wyRInMxh73HSKg5wyRwdS4BVYYHwokA==
+eslint-plugin-prettier@^3.1.0:
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz#168ab43154e2ea57db992a2cd097c828171f75c2"
+ integrity sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg==
dependencies:
- fast-diff "^1.1.1"
- jest-docblock "^21.0.0"
+ prettier-linter-helpers "^1.0.0"
-eslint-plugin-react@^7.12.4:
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz#6d08f9673628aa69c5559d33489e855d83551666"
- integrity sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ==
+eslint-plugin-react@^7.20.0:
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.20.5.tgz#29480f3071f64a04b2c3d99d9b460ce0f76fb857"
+ integrity sha512-ajbJfHuFnpVNJjhyrfq+pH1C0gLc2y94OiCbAXT5O0J0YCKaFEHDV8+3+mDOr+w8WguRX+vSs1bM2BDG0VLvCw==
dependencies:
array-includes "^3.1.1"
+ array.prototype.flatmap "^1.2.3"
doctrine "^2.1.0"
has "^1.0.3"
- jsx-ast-utils "^2.2.3"
- object.entries "^1.1.1"
+ jsx-ast-utils "^2.4.1"
+ object.entries "^1.1.2"
object.fromentries "^2.0.2"
object.values "^1.1.1"
prop-types "^15.7.2"
- resolve "^1.15.1"
- semver "^6.3.0"
+ resolve "^1.17.0"
string.prototype.matchall "^4.0.2"
- xregexp "^4.3.0"
-eslint-scope@3.7.1:
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
- integrity sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=
+eslint-scope@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.0.tgz#d0f971dfe59c69e0cada684b23d49dbf82600ce5"
+ integrity sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w==
dependencies:
esrecurse "^4.1.0"
estraverse "^4.1.1"
-eslint-scope@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
- integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
-
-eslint-utils@^1.3.1:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
- integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
+eslint-utils@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
+ integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
dependencies:
eslint-visitor-keys "^1.1.0"
-eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
+eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
+ integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
+
+eslint-visitor-keys@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
-eslint@^5.12.1:
- version "5.16.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea"
- integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==
+eslint@^7.6.0:
+ version "7.6.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.6.0.tgz#522d67cfaea09724d96949c70e7a0550614d64d6"
+ integrity sha512-QlAManNtqr7sozWm5TF4wIH9gmUm2hE3vNRUvyoYAa4y1l5/jxD/PQStEjBMQtCqZmSep8UxrcecI60hOpe61w==
dependencies:
"@babel/code-frame" "^7.0.0"
- ajv "^6.9.1"
- chalk "^2.1.0"
- cross-spawn "^6.0.5"
+ ajv "^6.10.0"
+ chalk "^4.0.0"
+ cross-spawn "^7.0.2"
debug "^4.0.1"
doctrine "^3.0.0"
- eslint-scope "^4.0.3"
- eslint-utils "^1.3.1"
- eslint-visitor-keys "^1.0.0"
- espree "^5.0.1"
- esquery "^1.0.1"
+ enquirer "^2.3.5"
+ eslint-scope "^5.1.0"
+ eslint-utils "^2.1.0"
+ eslint-visitor-keys "^1.3.0"
+ espree "^7.2.0"
+ esquery "^1.2.0"
esutils "^2.0.2"
file-entry-cache "^5.0.1"
functional-red-black-tree "^1.0.1"
- glob "^7.1.2"
- globals "^11.7.0"
+ glob-parent "^5.0.0"
+ globals "^12.1.0"
ignore "^4.0.6"
import-fresh "^3.0.0"
imurmurhash "^0.1.4"
- inquirer "^6.2.2"
- js-yaml "^3.13.0"
+ is-glob "^4.0.0"
+ js-yaml "^3.13.1"
json-stable-stringify-without-jsonify "^1.0.1"
- levn "^0.3.0"
- lodash "^4.17.11"
+ levn "^0.4.1"
+ lodash "^4.17.19"
minimatch "^3.0.4"
- mkdirp "^0.5.1"
natural-compare "^1.4.0"
- optionator "^0.8.2"
- path-is-inside "^1.0.2"
+ optionator "^0.9.1"
progress "^2.0.0"
- regexpp "^2.0.1"
- semver "^5.5.1"
- strip-ansi "^4.0.0"
- strip-json-comments "^2.0.1"
+ regexpp "^3.1.0"
+ semver "^7.2.1"
+ strip-ansi "^6.0.0"
+ strip-json-comments "^3.1.0"
table "^5.2.3"
text-table "^0.2.0"
+ v8-compile-cache "^2.0.3"
-espree@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a"
- integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A==
+espree@^7.2.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-7.2.0.tgz#1c263d5b513dbad0ac30c4991b93ac354e948d69"
+ integrity sha512-H+cQ3+3JYRMEIOl87e7QdHX70ocly5iW4+dttuR8iYSPr/hXKFb+7dBsZ7+u1adC4VrnPlTkv0+OwuPnDop19g==
dependencies:
- acorn "^6.0.7"
- acorn-jsx "^5.0.0"
- eslint-visitor-keys "^1.0.0"
+ acorn "^7.3.1"
+ acorn-jsx "^5.2.0"
+ eslint-visitor-keys "^1.3.0"
esprima@^4.0.0, esprima@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-esquery@^1.0.1:
+esquery@^1.2.0:
version "1.3.1"
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
@@ -3678,12 +4525,10 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
md5.js "^1.3.4"
safe-buffer "^5.1.1"
-exec-sh@^0.2.0:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36"
- integrity sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==
- dependencies:
- merge "^1.2.0"
+exec-sh@^0.3.2:
+ version "0.3.4"
+ resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5"
+ integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==
execa@^0.7.0:
version "0.7.0"
@@ -3711,6 +4556,21 @@ execa@^1.0.0:
signal-exit "^3.0.0"
strip-eof "^1.0.0"
+execa@^4.0.0:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2"
+ integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A==
+ dependencies:
+ cross-spawn "^7.0.0"
+ get-stream "^5.0.0"
+ human-signals "^1.1.1"
+ is-stream "^2.0.0"
+ merge-stream "^2.0.0"
+ npm-run-path "^4.0.0"
+ onetime "^5.1.0"
+ signal-exit "^3.0.2"
+ strip-final-newline "^2.0.0"
+
exenv@^1.2.0:
version "1.2.2"
resolved "https://registry.yarnpkg.com/exenv/-/exenv-1.2.2.tgz#2ae78e85d9894158670b03d47bec1f03bd91bb9d"
@@ -3739,17 +4599,17 @@ expect-ct@0.2.0:
resolved "https://registry.yarnpkg.com/expect-ct/-/expect-ct-0.2.0.tgz#3a54741b6ed34cc7a93305c605f63cd268a54a62"
integrity sha512-6SK3MG/Bbhm8MsgyJAylg+ucIOU71/FzyFalcfu5nY19dH8y/z0tBJU0wrNBXD4B27EoQtqPF/9wqH0iYAd04g==
-expect@^22.4.0:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/expect/-/expect-22.4.3.tgz#d5a29d0a0e1fb2153557caef2674d4547e914674"
- integrity sha512-XcNXEPehqn8b/jm8FYotdX0YrXn36qp4HWlrVT4ktwQas1l1LPxiVWncYnnL2eyMtKAmVIaG0XAp0QlrqJaxaA==
+expect@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/expect/-/expect-26.2.0.tgz#0140dd9cc7376d7833852e9cda88c05414f1efba"
+ integrity sha512-8AMBQ9UVcoUXt0B7v+5/U5H6yiUR87L6eKCfjE3spx7Ya5lF+ebUo37MCFBML2OiLfkX1sxmQOZhIDonyVTkcw==
dependencies:
- ansi-styles "^3.2.0"
- jest-diff "^22.4.3"
- jest-get-type "^22.4.3"
- jest-matcher-utils "^22.4.3"
- jest-message-util "^22.4.3"
- jest-regex-util "^22.4.3"
+ "@jest/types" "^26.2.0"
+ ansi-styles "^4.0.0"
+ jest-get-type "^26.0.0"
+ jest-matcher-utils "^26.2.0"
+ jest-message-util "^26.2.0"
+ jest-regex-util "^26.0.0"
exports-loader@^0.6.4:
version "0.6.4"
@@ -3786,15 +4646,6 @@ extend@^3.0.2, extend@~3.0.2:
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
-external-editor@^3.0.3:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
- integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
- dependencies:
- chardet "^0.7.0"
- iconv-lite "^0.4.24"
- tmp "^0.0.33"
-
extglob@^2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
@@ -3829,7 +4680,7 @@ fast-deep-equal@^3.1.1:
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4"
integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
-fast-diff@^1.1.1:
+fast-diff@^1.1.2:
version "1.2.0"
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
@@ -3839,7 +4690,7 @@ fast-json-stable-stringify@^2.0.0:
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-fast-levenshtein@~2.0.6:
+fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
@@ -3869,13 +4720,6 @@ fetch-test-server@^1.1.0:
debug "^3.1.0"
node-fetch "^2.1.2"
-figures@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
- integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
- dependencies:
- escape-string-regexp "^1.0.5"
-
file-entry-cache@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c"
@@ -3896,14 +4740,6 @@ file-uri-to-path@1.0.0:
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
-fileset@^2.0.2:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz#8e7548a96d3cc2327ee5e674168723a333bba2a0"
- integrity sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=
- dependencies:
- glob "^7.0.3"
- minimatch "^3.0.3"
-
fill-range@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
@@ -3914,6 +4750,13 @@ fill-range@^4.0.0:
repeat-string "^1.6.1"
to-regex-range "^2.1.0"
+fill-range@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
+ integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+ dependencies:
+ to-regex-range "^5.0.1"
+
find-cache-dir@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
@@ -3923,13 +4766,14 @@ find-cache-dir@^1.0.0:
make-dir "^1.0.0"
pkg-dir "^2.0.0"
-find-up@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
- integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=
+find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
+ integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
dependencies:
- path-exists "^2.0.0"
- pinkie-promise "^2.0.0"
+ commondir "^1.0.1"
+ make-dir "^2.0.0"
+ pkg-dir "^3.0.0"
find-up@^2.0.0, find-up@^2.1.0:
version "2.1.0"
@@ -3945,6 +4789,14 @@ find-up@^3.0.0:
dependencies:
locate-path "^3.0.0"
+find-up@^4.0.0, find-up@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+ integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
+ dependencies:
+ locate-path "^5.0.0"
+ path-exists "^4.0.0"
+
flat-cache@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
@@ -4107,7 +4959,7 @@ fs.realpath@^1.0.0:
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-fsevents@^1.2.3, fsevents@^1.2.7:
+fsevents@^1.2.7:
version "1.2.12"
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c"
integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==
@@ -4115,6 +4967,11 @@ fsevents@^1.2.3, fsevents@^1.2.7:
bindings "^1.5.0"
nan "^2.12.1"
+fsevents@^2.1.2:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
+ integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
+
fstream@^1.0.12:
version "1.0.12"
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045"
@@ -4159,6 +5016,11 @@ generic-pool@2.4.3:
resolved "https://registry.yarnpkg.com/generic-pool/-/generic-pool-2.4.3.tgz#780c36f69dfad05a5a045dd37be7adca11a4f6ff"
integrity sha1-eAw29p360FpaBF3Te+etyhGk9v8=
+gensync@^1.0.0-beta.1:
+ version "1.0.0-beta.1"
+ resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
+ integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
+
get-caller-file@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
@@ -4169,6 +5031,11 @@ get-caller-file@^2.0.1:
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
+get-package-type@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
+ integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
+
get-port@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193"
@@ -4186,6 +5053,13 @@ get-stream@^4.0.0:
dependencies:
pump "^3.0.0"
+get-stream@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9"
+ integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==
+ dependencies:
+ pump "^3.0.0"
+
get-value@^2.0.3, get-value@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
@@ -4206,7 +5080,14 @@ glob-parent@^3.1.0:
is-glob "^3.1.0"
path-dirname "^1.0.0"
-glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3:
+glob-parent@^5.0.0:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
+ integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
+ dependencies:
+ is-glob "^4.0.1"
+
+glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
version "7.1.6"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
@@ -4225,19 +5106,18 @@ global-dirs@^0.1.0:
dependencies:
ini "^1.3.4"
-global@^4.3.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406"
- integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==
- dependencies:
- min-document "^2.19.0"
- process "^0.11.10"
-
-globals@^11.1.0, globals@^11.7.0:
+globals@^11.1.0:
version "11.12.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+globals@^12.1.0:
+ version "12.4.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8"
+ integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
+ dependencies:
+ type-fest "^0.8.1"
+
globals@^9.18.0:
version "9.18.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
@@ -4326,6 +5206,11 @@ graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
+graceful-fs@^4.2.4:
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
+ integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
+
growly@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
@@ -4353,18 +5238,6 @@ gzip-size@^3.0.0:
dependencies:
duplexer "^0.1.1"
-handlebars@^4.0.3:
- version "4.7.6"
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
- integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==
- dependencies:
- minimist "^1.2.5"
- neo-async "^2.6.0"
- source-map "^0.6.1"
- wordwrap "^1.0.0"
- optionalDependencies:
- uglify-js "^3.1.4"
-
har-schema@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
@@ -4402,11 +5275,6 @@ has-cors@1.1.0:
resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39"
integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=
-has-flag@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
- integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=
-
has-flag@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
@@ -4417,6 +5285,11 @@ has-flag@^3.0.0:
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+has-flag@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+ integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+
has-symbol-support-x@^1.4.1:
version "1.4.2"
resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
@@ -4582,14 +5455,6 @@ hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0:
dependencies:
react-is "^16.7.0"
-home-or-tmp@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
- integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg=
- dependencies:
- os-homedir "^1.0.0"
- os-tmpdir "^1.0.1"
-
hosted-git-info@^2.1.4:
version "2.8.8"
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
@@ -4607,18 +5472,23 @@ hsts@2.2.0:
dependencies:
depd "2.0.0"
-html-encoding-sniffer@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
- integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==
+html-encoding-sniffer@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3"
+ integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
dependencies:
- whatwg-encoding "^1.0.1"
+ whatwg-encoding "^1.0.5"
html-entities@^1.2.0:
version "1.3.1"
resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.3.1.tgz#fb9a1a4b5b14c5daba82d3e34c6ae4fe701a0e44"
integrity sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==
+html-escaper@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
+ integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
+
html-minifier@^3.2.3:
version "3.5.21"
resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c"
@@ -4729,12 +5599,17 @@ https-proxy-agent@^5.0.0:
agent-base "6"
debug "4"
+human-signals@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
+ integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
+
humanize-number@0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/humanize-number/-/humanize-number-0.0.2.tgz#11c0af6a471643633588588048f1799541489c18"
integrity sha1-EcCvakcWQ2M1iFiASPF5lUFInBg=
-iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@~0.4.13:
+iconv-lite@0.4.24, iconv-lite@~0.4.13:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
@@ -4796,13 +5671,13 @@ import-lazy@^2.1.0:
resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=
-import-local@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz#5e4ffdc03f4fe6c009c6729beb29631c2f8227bc"
- integrity sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==
+import-local@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6"
+ integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==
dependencies:
- pkg-dir "^2.0.0"
- resolve-cwd "^2.0.0"
+ pkg-dir "^4.2.0"
+ resolve-cwd "^3.0.0"
imports-loader@0.6.5:
version "0.6.5"
@@ -4865,25 +5740,6 @@ ini@^1.3.4, ini@~1.3.0:
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==
-inquirer@^6.2.2:
- version "6.5.2"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca"
- integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==
- dependencies:
- ansi-escapes "^3.2.0"
- chalk "^2.4.2"
- cli-cursor "^2.1.0"
- cli-width "^2.0.0"
- external-editor "^3.0.3"
- figures "^2.0.0"
- lodash "^4.17.12"
- mute-stream "0.0.7"
- run-async "^2.2.0"
- rxjs "^6.4.0"
- string-width "^2.1.0"
- strip-ansi "^5.1.0"
- through "^2.3.6"
-
internal-slot@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3"
@@ -4906,7 +5762,7 @@ into-stream@^3.1.0:
from2 "^2.1.1"
p-is-promise "^1.1.0"
-invariant@^2.2.1, invariant@^2.2.2:
+invariant@^2.2.1, invariant@^2.2.2, invariant@^2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
@@ -4938,6 +5794,11 @@ ioredis@^4.14.1:
redis-parser "^3.0.0"
standard-as-callback "^2.0.1"
+ip-regex@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
+ integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
+
is-accessor-descriptor@^0.1.6:
version "0.1.6"
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
@@ -4999,6 +5860,13 @@ is-ci@^1.0.10:
dependencies:
ci-info "^1.5.0"
+is-ci@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
+ integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
+ dependencies:
+ ci-info "^2.0.0"
+
is-data-descriptor@^0.1.4:
version "0.1.4"
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
@@ -5041,6 +5909,11 @@ is-descriptor@^1.0.0, is-descriptor@^1.0.2:
is-data-descriptor "^1.0.0"
kind-of "^6.0.2"
+is-docker@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156"
+ integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
+
is-extendable@^0.1.0, is-extendable@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
@@ -5058,11 +5931,6 @@ is-extglob@^2.1.0, is-extglob@^2.1.1:
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
-is-finite@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3"
- integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==
-
is-fullwidth-code-point@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
@@ -5075,10 +5943,15 @@ is-fullwidth-code-point@^2.0.0:
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
-is-generator-fn@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz#969d49e1bb3329f6bb7f09089be26578b2ddd46a"
- integrity sha1-lp1J4bszKfa7fwkIm+JleLLd1Go=
+is-fullwidth-code-point@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+
+is-generator-fn@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
+ integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
is-generator-function@^1.0.7:
version "1.0.7"
@@ -5092,7 +5965,7 @@ is-glob@^3.1.0:
dependencies:
is-extglob "^2.1.0"
-is-glob@^4.0.0:
+is-glob@^4.0.0, is-glob@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
@@ -5136,6 +6009,11 @@ is-number@^3.0.0:
dependencies:
kind-of "^3.0.2"
+is-number@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+ integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+
is-obj@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
@@ -5172,7 +6050,12 @@ is-plain-object@^3.0.0:
dependencies:
isobject "^4.0.0"
-is-promise@^2.1, is-promise@^2.1.0:
+is-potential-custom-element-name@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397"
+ integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c=
+
+is-promise@^2.1:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
@@ -5216,25 +6099,22 @@ is-symbol@^1.0.2:
dependencies:
has-symbols "^1.0.1"
-is-typedarray@~1.0.0:
+is-typedarray@^1.0.0, is-typedarray@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
-is-utf8@^0.2.0:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
- integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
-
is-windows@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-is-wsl@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
- integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
+is-wsl@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
+ integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
+ dependencies:
+ is-docker "^2.0.0"
isarray@0.0.1:
version "0.0.1"
@@ -5286,75 +6166,46 @@ isstream@~0.1.2:
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
-istanbul-api@^1.1.14:
- version "1.3.7"
- resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.7.tgz#a86c770d2b03e11e3f778cd7aedd82d2722092aa"
- integrity sha512-4/ApBnMVeEPG3EkSzcw25wDe4N66wxwn+KKn6b47vyek8Xb3NBAcg4xfuQbS7BqcZuTX4wxfD5lVagdggR3gyA==
- dependencies:
- async "^2.1.4"
- fileset "^2.0.2"
- istanbul-lib-coverage "^1.2.1"
- istanbul-lib-hook "^1.2.2"
- istanbul-lib-instrument "^1.10.2"
- istanbul-lib-report "^1.1.5"
- istanbul-lib-source-maps "^1.2.6"
- istanbul-reports "^1.5.1"
- js-yaml "^3.7.0"
- mkdirp "^0.5.1"
- once "^1.4.0"
+istanbul-lib-coverage@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
+ integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
-istanbul-lib-coverage@^1.1.1, istanbul-lib-coverage@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz#ccf7edcd0a0bb9b8f729feeb0930470f9af664f0"
- integrity sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==
-
-istanbul-lib-hook@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz#bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86"
- integrity sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw==
+istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
+ integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
dependencies:
- append-transform "^0.4.0"
+ "@babel/core" "^7.7.5"
+ "@istanbuljs/schema" "^0.1.2"
+ istanbul-lib-coverage "^3.0.0"
+ semver "^6.3.0"
-istanbul-lib-instrument@^1.10.1, istanbul-lib-instrument@^1.10.2, istanbul-lib-instrument@^1.8.0:
- version "1.10.2"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz#1f55ed10ac3c47f2bdddd5307935126754d0a9ca"
- integrity sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==
+istanbul-lib-report@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
+ integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
dependencies:
- babel-generator "^6.18.0"
- babel-template "^6.16.0"
- babel-traverse "^6.18.0"
- babel-types "^6.18.0"
- babylon "^6.18.0"
- istanbul-lib-coverage "^1.2.1"
- semver "^5.3.0"
+ istanbul-lib-coverage "^3.0.0"
+ make-dir "^3.0.0"
+ supports-color "^7.1.0"
-istanbul-lib-report@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz#f2a657fc6282f96170aaf281eb30a458f7f4170c"
- integrity sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw==
+istanbul-lib-source-maps@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz#75743ce6d96bb86dc7ee4352cf6366a23f0b1ad9"
+ integrity sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==
dependencies:
- istanbul-lib-coverage "^1.2.1"
- mkdirp "^0.5.1"
- path-parse "^1.0.5"
- supports-color "^3.1.2"
+ debug "^4.1.1"
+ istanbul-lib-coverage "^3.0.0"
+ source-map "^0.6.1"
-istanbul-lib-source-maps@^1.2.1, istanbul-lib-source-maps@^1.2.6:
- version "1.2.6"
- resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz#37b9ff661580f8fca11232752ee42e08c6675d8f"
- integrity sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg==
+istanbul-reports@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b"
+ integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==
dependencies:
- debug "^3.1.0"
- istanbul-lib-coverage "^1.2.1"
- mkdirp "^0.5.1"
- rimraf "^2.6.1"
- source-map "^0.5.3"
-
-istanbul-reports@^1.5.1:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz#97e4dbf3b515e8c484caea15d6524eebd3ff4e1a"
- integrity sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw==
- dependencies:
- handlebars "^4.0.3"
+ html-escaper "^2.0.0"
+ istanbul-lib-report "^3.0.0"
isurl@^1.0.0-alpha5:
version "1.0.0"
@@ -5364,286 +6215,366 @@ isurl@^1.0.0-alpha5:
has-to-string-tag-x "^1.2.0"
is-object "^1.0.1"
-jest-changed-files@^22.2.0:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-22.4.3.tgz#8882181e022c38bd46a2e4d18d44d19d90a90fb2"
- integrity sha512-83Dh0w1aSkUNFhy5d2dvqWxi/y6weDwVVLU6vmK0cV9VpRxPzhTeGimbsbRDSnEoszhF937M4sDLLeS7Cu/Tmw==
+jest-changed-files@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.2.0.tgz#b4946201defe0c919a2f3d601e9f98cb21dacc15"
+ integrity sha512-+RyJb+F1K/XBLIYiL449vo5D+CvlHv29QveJUWNPXuUicyZcq+tf1wNxmmFeRvAU1+TzhwqczSjxnCCFt7+8iA==
dependencies:
- throat "^4.0.0"
+ "@jest/types" "^26.2.0"
+ execa "^4.0.0"
+ throat "^5.0.0"
-jest-cli@^22.0.0:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.4.4.tgz#68cd2a2aae983adb1e6638248ca21082fd6d9e90"
- integrity sha512-I9dsgkeyjVEEZj9wrGrqlH+8OlNob9Iptyl+6L5+ToOLJmHm4JwOPatin1b2Bzp5R5YRQJ+oiedx7o1H7wJzhA==
+jest-cli@^26.0.0:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.2.2.tgz#4c273e5474baafac1eb15fd25aaafb4703f5ffbc"
+ integrity sha512-vVcly0n/ijZvdy6gPQiQt0YANwX2hLTPQZHtW7Vi3gcFdKTtif7YpI85F8R8JYy5DFSWz4x1OW0arnxlziu5Lw==
dependencies:
- ansi-escapes "^3.0.0"
- chalk "^2.0.1"
+ "@jest/core" "^26.2.2"
+ "@jest/test-result" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ chalk "^4.0.0"
exit "^0.1.2"
- glob "^7.1.2"
- graceful-fs "^4.1.11"
- import-local "^1.0.0"
- is-ci "^1.0.10"
- istanbul-api "^1.1.14"
- istanbul-lib-coverage "^1.1.1"
- istanbul-lib-instrument "^1.8.0"
- istanbul-lib-source-maps "^1.2.1"
- jest-changed-files "^22.2.0"
- jest-config "^22.4.4"
- jest-environment-jsdom "^22.4.1"
- jest-get-type "^22.1.0"
- jest-haste-map "^22.4.2"
- jest-message-util "^22.4.0"
- jest-regex-util "^22.1.0"
- jest-resolve-dependencies "^22.1.0"
- jest-runner "^22.4.4"
- jest-runtime "^22.4.4"
- jest-snapshot "^22.4.0"
- jest-util "^22.4.1"
- jest-validate "^22.4.4"
- jest-worker "^22.2.2"
- micromatch "^2.3.11"
- node-notifier "^5.2.1"
- realpath-native "^1.0.0"
- rimraf "^2.5.4"
- slash "^1.0.0"
- string-length "^2.0.0"
- strip-ansi "^4.0.0"
- which "^1.2.12"
- yargs "^10.0.3"
+ graceful-fs "^4.2.4"
+ import-local "^3.0.2"
+ is-ci "^2.0.0"
+ jest-config "^26.2.2"
+ jest-util "^26.2.0"
+ jest-validate "^26.2.0"
+ prompts "^2.0.1"
+ yargs "^15.3.1"
-jest-config@^22.4.4:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.4.4.tgz#72a521188720597169cd8b4ff86934ef5752d86a"
- integrity sha512-9CKfo1GC4zrXSoMLcNeDvQBfgtqGTB1uP8iDIZ97oB26RCUb886KkKWhVcpyxVDOUxbhN+uzcBCeFe7w+Iem4A==
+jest-config@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.2.2.tgz#f3ebc7e2bc3f49de8ed3f8007152f345bb111917"
+ integrity sha512-2lhxH0y4YFOijMJ65usuf78m7+9/8+hAb1PZQtdRdgnQpAb4zP6KcVDDktpHEkspBKnc2lmFu+RQdHukUUbiTg==
dependencies:
- chalk "^2.0.1"
+ "@babel/core" "^7.1.0"
+ "@jest/test-sequencer" "^26.2.2"
+ "@jest/types" "^26.2.0"
+ babel-jest "^26.2.2"
+ chalk "^4.0.0"
+ deepmerge "^4.2.2"
glob "^7.1.1"
- jest-environment-jsdom "^22.4.1"
- jest-environment-node "^22.4.1"
- jest-get-type "^22.1.0"
- jest-jasmine2 "^22.4.4"
- jest-regex-util "^22.1.0"
- jest-resolve "^22.4.2"
- jest-util "^22.4.1"
- jest-validate "^22.4.4"
- pretty-format "^22.4.0"
+ graceful-fs "^4.2.4"
+ jest-environment-jsdom "^26.2.0"
+ jest-environment-node "^26.2.0"
+ jest-get-type "^26.0.0"
+ jest-jasmine2 "^26.2.2"
+ jest-regex-util "^26.0.0"
+ jest-resolve "^26.2.2"
+ jest-util "^26.2.0"
+ jest-validate "^26.2.0"
+ micromatch "^4.0.2"
+ pretty-format "^26.2.0"
-jest-diff@^22.4.0, jest-diff@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-22.4.3.tgz#e18cc3feff0aeef159d02310f2686d4065378030"
- integrity sha512-/QqGvCDP5oZOF6PebDuLwrB2BMD8ffJv6TAGAdEVuDx1+uEgrHpSFrfrOiMRx2eJ1hgNjlQrOQEHetVwij90KA==
+jest-diff@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.2.0.tgz#dee62c771adbb23ae585f3f1bd289a6e8ef4f298"
+ integrity sha512-Wu4Aopi2nzCsHWLBlD48TgRy3Z7OsxlwvHNd1YSnHc7q1NJfrmyCPoUXrTIrydQOG5ApaYpsAsdfnMbJqV1/wQ==
dependencies:
- chalk "^2.0.1"
- diff "^3.2.0"
- jest-get-type "^22.4.3"
- pretty-format "^22.4.3"
+ chalk "^4.0.0"
+ diff-sequences "^26.0.0"
+ jest-get-type "^26.0.0"
+ pretty-format "^26.2.0"
-jest-docblock@^21.0.0:
- version "21.2.0"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414"
- integrity sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==
-
-jest-docblock@^22.4.0, jest-docblock@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.4.3.tgz#50886f132b42b280c903c592373bb6e93bb68b19"
- integrity sha512-uPKBEAw7YrEMcXueMKZXn/rbMxBiSv48fSqy3uEnmgOlQhSX+lthBqHb1fKWNVmFqAp9E/RsSdBfiV31LbzaOg==
+jest-docblock@^26.0.0:
+ version "26.0.0"
+ resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5"
+ integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==
dependencies:
- detect-newline "^2.1.0"
+ detect-newline "^3.0.0"
-jest-environment-jsdom@^22.4.1:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.3.tgz#d67daa4155e33516aecdd35afd82d4abf0fa8a1e"
- integrity sha512-FviwfR+VyT3Datf13+ULjIMO5CSeajlayhhYQwpzgunswoaLIPutdbrnfUHEMyJCwvqQFaVtTmn9+Y8WCt6n1w==
+jest-each@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.2.0.tgz#aec8efa01d072d7982c900e74940863385fa884e"
+ integrity sha512-gHPCaho1twWHB5bpcfnozlc6mrMi+VAewVPNgmwf81x2Gzr6XO4dl+eOrwPWxbkYlgjgrYjWK2xgKnixbzH3Ew==
dependencies:
- jest-mock "^22.4.3"
- jest-util "^22.4.3"
- jsdom "^11.5.1"
+ "@jest/types" "^26.2.0"
+ chalk "^4.0.0"
+ jest-get-type "^26.0.0"
+ jest-util "^26.2.0"
+ pretty-format "^26.2.0"
-jest-environment-node@^22.4.1:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.4.3.tgz#54c4eaa374c83dd52a9da8759be14ebe1d0b9129"
- integrity sha512-reZl8XF6t/lMEuPWwo9OLfttyC26A5AMgDyEQ6DBgZuyfyeNUzYT8BFo6uxCCP/Av/b7eb9fTi3sIHFPBzmlRA==
+jest-environment-jsdom@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.2.0.tgz#6443a6f3569297dcaa4371dddf93acaf167302dc"
+ integrity sha512-sDG24+5M4NuIGzkI3rJW8XUlrpkvIdE9Zz4jhD8OBnVxAw+Y1jUk9X+lAOD48nlfUTlnt3lbAI3k2Ox+WF3S0g==
dependencies:
- jest-mock "^22.4.3"
- jest-util "^22.4.3"
+ "@jest/environment" "^26.2.0"
+ "@jest/fake-timers" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ jest-mock "^26.2.0"
+ jest-util "^26.2.0"
+ jsdom "^16.2.2"
-jest-get-type@^22.1.0, jest-get-type@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4"
- integrity sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w==
-
-jest-haste-map@^22.4.2:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.4.3.tgz#25842fa2ba350200767ac27f658d58b9d5c2e20b"
- integrity sha512-4Q9fjzuPVwnaqGKDpIsCSoTSnG3cteyk2oNVjBX12HHOaF1oxql+uUiqZb5Ndu7g/vTZfdNwwy4WwYogLh29DQ==
+jest-environment-node@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.2.0.tgz#fee89e06bdd4bed3f75ee2978d73ede9bb57a681"
+ integrity sha512-4M5ExTYkJ19efBzkiXtBi74JqKLDciEk4CEsp5tTjWGYMrlKFQFtwIVG3tW1OGE0AlXhZjuHPwubuRYY4j4uOw==
dependencies:
+ "@jest/environment" "^26.2.0"
+ "@jest/fake-timers" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ jest-mock "^26.2.0"
+ jest-util "^26.2.0"
+
+jest-get-type@^26.0.0:
+ version "26.0.0"
+ resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.0.0.tgz#381e986a718998dbfafcd5ec05934be538db4039"
+ integrity sha512-zRc1OAPnnws1EVfykXOj19zo2EMw5Hi6HLbFCSjpuJiXtOWAYIjNsHVSbpQ8bDX7L5BGYGI8m+HmKdjHYFF0kg==
+
+jest-haste-map@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.2.2.tgz#6d4267b1903854bfdf6a871419f35a82f03ae71e"
+ integrity sha512-3sJlMSt+NHnzCB+0KhJ1Ut4zKJBiJOlbrqEYNdRQGlXTv8kqzZWjUKQRY3pkjmlf+7rYjAV++MQ4D6g4DhAyOg==
+ dependencies:
+ "@jest/types" "^26.2.0"
+ "@types/graceful-fs" "^4.1.2"
+ "@types/node" "*"
+ anymatch "^3.0.3"
fb-watchman "^2.0.0"
- graceful-fs "^4.1.11"
- jest-docblock "^22.4.3"
- jest-serializer "^22.4.3"
- jest-worker "^22.4.3"
- micromatch "^2.3.11"
- sane "^2.0.0"
+ graceful-fs "^4.2.4"
+ jest-regex-util "^26.0.0"
+ jest-serializer "^26.2.0"
+ jest-util "^26.2.0"
+ jest-worker "^26.2.1"
+ micromatch "^4.0.2"
+ sane "^4.0.3"
+ walker "^1.0.7"
+ optionalDependencies:
+ fsevents "^2.1.2"
-jest-jasmine2@^22.4.4:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.4.4.tgz#c55f92c961a141f693f869f5f081a79a10d24e23"
- integrity sha512-nK3vdUl50MuH7vj/8at7EQVjPGWCi3d5+6aCi7Gxy/XMWdOdbH1qtO/LjKbqD8+8dUAEH+BVVh7HkjpCWC1CSw==
+jest-jasmine2@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.2.2.tgz#d82b1721fac2b153a4f8b3f0c95e81e702812de2"
+ integrity sha512-Q8AAHpbiZMVMy4Hz9j1j1bg2yUmPa1W9StBvcHqRaKa9PHaDUMwds8LwaDyzP/2fkybcTQE4+pTMDOG9826tEw==
dependencies:
- chalk "^2.0.1"
+ "@babel/traverse" "^7.1.0"
+ "@jest/environment" "^26.2.0"
+ "@jest/source-map" "^26.1.0"
+ "@jest/test-result" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ chalk "^4.0.0"
co "^4.6.0"
- expect "^22.4.0"
- graceful-fs "^4.1.11"
- is-generator-fn "^1.0.0"
- jest-diff "^22.4.0"
- jest-matcher-utils "^22.4.0"
- jest-message-util "^22.4.0"
- jest-snapshot "^22.4.0"
- jest-util "^22.4.1"
- source-map-support "^0.5.0"
+ expect "^26.2.0"
+ is-generator-fn "^2.0.0"
+ jest-each "^26.2.0"
+ jest-matcher-utils "^26.2.0"
+ jest-message-util "^26.2.0"
+ jest-runtime "^26.2.2"
+ jest-snapshot "^26.2.2"
+ jest-util "^26.2.0"
+ pretty-format "^26.2.0"
+ throat "^5.0.0"
-jest-leak-detector@^22.4.0:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-22.4.3.tgz#2b7b263103afae8c52b6b91241a2de40117e5b35"
- integrity sha512-NZpR/Ls7+ndO57LuXROdgCGz2RmUdC541tTImL9bdUtU3WadgFGm0yV+Ok4Fuia/1rLAn5KaJ+i76L6e3zGJYQ==
+jest-leak-detector@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.2.0.tgz#073ee6d8db7a9af043e7ce99d8eea17a4fb0cc50"
+ integrity sha512-aQdzTX1YiufkXA1teXZu5xXOJgy7wZQw6OJ0iH5CtQlOETe6gTSocaYKUNui1SzQ91xmqEUZ/WRavg9FD82rtQ==
dependencies:
- pretty-format "^22.4.3"
+ jest-get-type "^26.0.0"
+ pretty-format "^26.2.0"
-jest-matcher-utils@^22.4.0, jest-matcher-utils@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-22.4.3.tgz#4632fe428ebc73ebc194d3c7b65d37b161f710ff"
- integrity sha512-lsEHVaTnKzdAPR5t4B6OcxXo9Vy4K+kRRbG5gtddY8lBEC+Mlpvm1CJcsMESRjzUhzkz568exMV1hTB76nAKbA==
+jest-matcher-utils@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.2.0.tgz#b107af98c2b8c557ffd46c1adf06f794aa52d622"
+ integrity sha512-2cf/LW2VFb3ayPHrH36ZDjp9+CAeAe/pWBAwsV8t3dKcrINzXPVxq8qMWOxwt5BaeBCx4ZupVGH7VIgB8v66vQ==
dependencies:
- chalk "^2.0.1"
- jest-get-type "^22.4.3"
- pretty-format "^22.4.3"
+ chalk "^4.0.0"
+ jest-diff "^26.2.0"
+ jest-get-type "^26.0.0"
+ pretty-format "^26.2.0"
-jest-message-util@^22.4.0, jest-message-util@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-22.4.3.tgz#cf3d38aafe4befddbfc455e57d65d5239e399eb7"
- integrity sha512-iAMeKxhB3Se5xkSjU0NndLLCHtP4n+GtCqV0bISKA5dmOXQfEbdEmYiu2qpnWBDCQdEafNDDU6Q+l6oBMd/+BA==
+jest-message-util@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.2.0.tgz#757fbc1323992297092bb9016a71a2eb12fd22ea"
+ integrity sha512-g362RhZaJuqeqG108n1sthz5vNpzTNy926eNDszo4ncRbmmcMRIUAZibnd6s5v2XSBCChAxQtCoN25gnzp7JbQ==
dependencies:
- "@babel/code-frame" "^7.0.0-beta.35"
- chalk "^2.0.1"
- micromatch "^2.3.11"
- slash "^1.0.0"
- stack-utils "^1.0.1"
+ "@babel/code-frame" "^7.0.0"
+ "@jest/types" "^26.2.0"
+ "@types/stack-utils" "^1.0.1"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.4"
+ micromatch "^4.0.2"
+ slash "^3.0.0"
+ stack-utils "^2.0.2"
-jest-mock@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-22.4.3.tgz#f63ba2f07a1511772cdc7979733397df770aabc7"
- integrity sha512-+4R6mH5M1G4NK16CKg9N1DtCaFmuxhcIqF4lQK/Q1CIotqMs/XBemfpDPeVZBFow6iyUNu6EBT9ugdNOTT5o5Q==
-
-jest-regex-util@^22.1.0, jest-regex-util@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-22.4.3.tgz#a826eb191cdf22502198c5401a1fc04de9cef5af"
- integrity sha512-LFg1gWr3QinIjb8j833bq7jtQopiwdAs67OGfkPrvy7uNUbVMfTXXcOKXJaeY5GgjobELkKvKENqq1xrUectWg==
-
-jest-resolve-dependencies@^22.1.0:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-22.4.3.tgz#e2256a5a846732dc3969cb72f3c9ad7725a8195e"
- integrity sha512-06czCMVToSN8F2U4EvgSB1Bv/56gc7MpCftZ9z9fBgUQM7dzHGCMBsyfVA6dZTx8v0FDcnALf7hupeQxaBCvpA==
+jest-mock@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.2.0.tgz#a1b3303ab38c34aa1dbbc16ab57cdc1a59ed50d1"
+ integrity sha512-XeC7yWtWmWByoyVOHSsE7NYsbXJLtJNgmhD7z4MKumKm6ET0si81bsSLbQ64L5saK3TgsHo2B/UqG5KNZ1Sp/Q==
dependencies:
- jest-regex-util "^22.4.3"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
-jest-resolve@^22.4.2:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.4.3.tgz#0ce9d438c8438229aa9b916968ec6b05c1abb4ea"
- integrity sha512-u3BkD/MQBmwrOJDzDIaxpyqTxYH+XqAXzVJP51gt29H8jpj3QgKof5GGO2uPGKGeA1yTMlpbMs1gIQ6U4vcRhw==
- dependencies:
- browser-resolve "^1.11.2"
- chalk "^2.0.1"
+jest-pnp-resolver@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
+ integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
-jest-runner@^22.4.4:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.4.4.tgz#dfca7b7553e0fa617e7b1291aeb7ce83e540a907"
- integrity sha512-5S/OpB51igQW9xnkM5Tgd/7ZjiAuIoiJAVtvVTBcEBiXBIFzWM3BAMPBM19FX68gRV0KWyFuGKj0EY3M3aceeQ==
+jest-regex-util@^26.0.0:
+ version "26.0.0"
+ resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28"
+ integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
+
+jest-resolve-dependencies@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.2.2.tgz#2ad3cd9281730e9a5c487cd846984c5324e47929"
+ integrity sha512-S5vufDmVbQXnpP7435gr710xeBGUFcKNpNswke7RmFvDQtmqPjPVU/rCeMlEU0p6vfpnjhwMYeaVjKZAy5QYJA==
dependencies:
+ "@jest/types" "^26.2.0"
+ jest-regex-util "^26.0.0"
+ jest-snapshot "^26.2.2"
+
+jest-resolve@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.2.2.tgz#324a20a516148d61bffa0058ed0c77c510ecfd3e"
+ integrity sha512-ye9Tj/ILn/0OgFPE/3dGpQPUqt4dHwIocxt5qSBkyzxQD8PbL0bVxBogX2FHxsd3zJA7V2H/cHXnBnNyyT9YoQ==
+ dependencies:
+ "@jest/types" "^26.2.0"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.4"
+ jest-pnp-resolver "^1.2.2"
+ jest-util "^26.2.0"
+ read-pkg-up "^7.0.1"
+ resolve "^1.17.0"
+ slash "^3.0.0"
+
+jest-runner@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.2.2.tgz#6d03d057886e9c782e10b2cf37443f902fe0e39e"
+ integrity sha512-/qb6ptgX+KQ+aNMohJf1We695kaAfuu3u3ouh66TWfhTpLd9WbqcF6163d/tMoEY8GqPztXPLuyG0rHRVDLxCA==
+ dependencies:
+ "@jest/console" "^26.2.0"
+ "@jest/environment" "^26.2.0"
+ "@jest/test-result" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ emittery "^0.7.1"
exit "^0.1.2"
- jest-config "^22.4.4"
- jest-docblock "^22.4.0"
- jest-haste-map "^22.4.2"
- jest-jasmine2 "^22.4.4"
- jest-leak-detector "^22.4.0"
- jest-message-util "^22.4.0"
- jest-runtime "^22.4.4"
- jest-util "^22.4.1"
- jest-worker "^22.2.2"
- throat "^4.0.0"
+ graceful-fs "^4.2.4"
+ jest-config "^26.2.2"
+ jest-docblock "^26.0.0"
+ jest-haste-map "^26.2.2"
+ jest-leak-detector "^26.2.0"
+ jest-message-util "^26.2.0"
+ jest-resolve "^26.2.2"
+ jest-runtime "^26.2.2"
+ jest-util "^26.2.0"
+ jest-worker "^26.2.1"
+ source-map-support "^0.5.6"
+ throat "^5.0.0"
-jest-runtime@^22.4.4:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.4.4.tgz#9ba7792fc75582a5be0f79af6f8fe8adea314048"
- integrity sha512-WRTj9m///npte1YjuphCYX7GRY/c2YvJImU9t7qOwFcqHr4YMzmX6evP/3Sehz5DKW2Vi8ONYPCFWe36JVXxfw==
+jest-runtime@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.2.2.tgz#2480ff79320680a643031dd21998d7c63d83ab68"
+ integrity sha512-a8VXM3DxCDnCIdl9+QucWFfQ28KdqmyVFqeKLigHdErtsx56O2ZIdQkhFSuP1XtVrG9nTNHbKxjh5XL1UaFDVQ==
dependencies:
- babel-core "^6.0.0"
- babel-jest "^22.4.4"
- babel-plugin-istanbul "^4.1.5"
- chalk "^2.0.1"
- convert-source-map "^1.4.0"
+ "@jest/console" "^26.2.0"
+ "@jest/environment" "^26.2.0"
+ "@jest/fake-timers" "^26.2.0"
+ "@jest/globals" "^26.2.0"
+ "@jest/source-map" "^26.1.0"
+ "@jest/test-result" "^26.2.0"
+ "@jest/transform" "^26.2.2"
+ "@jest/types" "^26.2.0"
+ "@types/yargs" "^15.0.0"
+ chalk "^4.0.0"
+ collect-v8-coverage "^1.0.0"
exit "^0.1.2"
- graceful-fs "^4.1.11"
- jest-config "^22.4.4"
- jest-haste-map "^22.4.2"
- jest-regex-util "^22.1.0"
- jest-resolve "^22.4.2"
- jest-util "^22.4.1"
- jest-validate "^22.4.4"
- json-stable-stringify "^1.0.1"
- micromatch "^2.3.11"
- realpath-native "^1.0.0"
- slash "^1.0.0"
- strip-bom "3.0.0"
- write-file-atomic "^2.1.0"
- yargs "^10.0.3"
+ glob "^7.1.3"
+ graceful-fs "^4.2.4"
+ jest-config "^26.2.2"
+ jest-haste-map "^26.2.2"
+ jest-message-util "^26.2.0"
+ jest-mock "^26.2.0"
+ jest-regex-util "^26.0.0"
+ jest-resolve "^26.2.2"
+ jest-snapshot "^26.2.2"
+ jest-util "^26.2.0"
+ jest-validate "^26.2.0"
+ slash "^3.0.0"
+ strip-bom "^4.0.0"
+ yargs "^15.3.1"
-jest-serializer@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-22.4.3.tgz#a679b81a7f111e4766235f4f0c46d230ee0f7436"
- integrity sha512-uPaUAppx4VUfJ0QDerpNdF43F68eqKWCzzhUlKNDsUPhjOon7ZehR4C809GCqh765FoMRtTVUVnGvIoskkYHiw==
-
-jest-snapshot@^22.4.0:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-22.4.3.tgz#b5c9b42846ffb9faccb76b841315ba67887362d2"
- integrity sha512-JXA0gVs5YL0HtLDCGa9YxcmmV2LZbwJ+0MfyXBBc5qpgkEYITQFJP7XNhcHFbUvRiniRpRbGVfJrOoYhhGE0RQ==
+jest-serializer@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.2.0.tgz#92dcae5666322410f4bf50211dd749274959ddac"
+ integrity sha512-V7snZI9IVmyJEu0Qy0inmuXgnMWDtrsbV2p9CRAcmlmPVwpC2ZM8wXyYpiugDQnwLHx0V4+Pnog9Exb3UO8M6Q==
dependencies:
- chalk "^2.0.1"
- jest-diff "^22.4.3"
- jest-matcher-utils "^22.4.3"
- mkdirp "^0.5.1"
+ "@types/node" "*"
+ graceful-fs "^4.2.4"
+
+jest-snapshot@^26.2.2:
+ version "26.2.2"
+ resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.2.2.tgz#9d2eda083a4a1017b157e351868749bd63211799"
+ integrity sha512-NdjD8aJS7ePu268Wy/n/aR1TUisG0BOY+QOW4f6h46UHEKOgYmmkvJhh2BqdVZQ0BHSxTMt04WpCf9njzx8KtA==
+ dependencies:
+ "@babel/types" "^7.0.0"
+ "@jest/types" "^26.2.0"
+ "@types/prettier" "^2.0.0"
+ chalk "^4.0.0"
+ expect "^26.2.0"
+ graceful-fs "^4.2.4"
+ jest-diff "^26.2.0"
+ jest-get-type "^26.0.0"
+ jest-haste-map "^26.2.2"
+ jest-matcher-utils "^26.2.0"
+ jest-message-util "^26.2.0"
+ jest-resolve "^26.2.2"
natural-compare "^1.4.0"
- pretty-format "^22.4.3"
+ pretty-format "^26.2.0"
+ semver "^7.3.2"
-jest-util@^22.4.1, jest-util@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.4.3.tgz#c70fec8eec487c37b10b0809dc064a7ecf6aafac"
- integrity sha512-rfDfG8wyC5pDPNdcnAlZgwKnzHvZDu8Td2NJI/jAGKEGxJPYiE4F0ss/gSAkG4778Y23Hvbz+0GMrDJTeo7RjQ==
+jest-util@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.2.0.tgz#0597d2a27c559340957609f106c408c17c1d88ac"
+ integrity sha512-YmDwJxLZ1kFxpxPfhSJ0rIkiZOM0PQbRcfH0TzJOhqCisCAsI1WcmoQqO83My9xeVA2k4n+rzg2UuexVKzPpig==
dependencies:
- callsites "^2.0.0"
- chalk "^2.0.1"
- graceful-fs "^4.1.11"
- is-ci "^1.0.10"
- jest-message-util "^22.4.3"
- mkdirp "^0.5.1"
- source-map "^0.6.0"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.4"
+ is-ci "^2.0.0"
+ micromatch "^4.0.2"
-jest-validate@^22.4.4:
- version "22.4.4"
- resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.4.4.tgz#1dd0b616ef46c995de61810d85f57119dbbcec4d"
- integrity sha512-dmlf4CIZRGvkaVg3fa0uetepcua44DHtktHm6rcoNVtYlpwe6fEJRkMFsaUVcFHLzbuBJ2cPw9Gl9TKfnzMVwg==
+jest-validate@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.2.0.tgz#97fedf3e7984b7608854cbf925b9ca6ebcbdb78a"
+ integrity sha512-8XKn3hM6VIVmLNuyzYLCPsRCT83o8jMZYhbieh4dAyKLc4Ypr36rVKC+c8WMpWkfHHpGnEkvWUjjIAyobEIY/Q==
dependencies:
- chalk "^2.0.1"
- jest-config "^22.4.4"
- jest-get-type "^22.1.0"
- leven "^2.1.0"
- pretty-format "^22.4.0"
+ "@jest/types" "^26.2.0"
+ camelcase "^6.0.0"
+ chalk "^4.0.0"
+ jest-get-type "^26.0.0"
+ leven "^3.1.0"
+ pretty-format "^26.2.0"
-jest-worker@^22.2.2, jest-worker@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.4.3.tgz#5c421417cba1c0abf64bf56bd5fb7968d79dd40b"
- integrity sha512-B1ucW4fI8qVAuZmicFxI1R3kr2fNeYJyvIQ1rKcuLYnenFV5K5aMbxFj6J0i00Ju83S8jP2d7Dz14+AvbIHRYQ==
+jest-watcher@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.2.0.tgz#45bdf2fecadd19c0a501f3b071a474dca636825b"
+ integrity sha512-674Boco4Joe0CzgKPL6K4Z9LgyLx+ZvW2GilbpYb8rFEUkmDGgsZdv1Hv5rxsRpb1HLgKUOL/JfbttRCuFdZXQ==
dependencies:
- merge-stream "^1.0.1"
+ "@jest/test-result" "^26.2.0"
+ "@jest/types" "^26.2.0"
+ "@types/node" "*"
+ ansi-escapes "^4.2.1"
+ chalk "^4.0.0"
+ jest-util "^26.2.0"
+ string-length "^4.0.1"
+
+jest-worker@^26.2.1:
+ version "26.2.1"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.2.1.tgz#5d630ab93f666b53f911615bc13e662b382bd513"
+ integrity sha512-+XcGMMJDTeEGncRb5M5Zq9P7K4sQ1sirhjdOxsN1462h6lFo9w59bl2LVQmdGEEeU3m+maZCkS2Tcc9SfCHO4A==
+ dependencies:
+ "@types/node" "*"
+ merge-stream "^2.0.0"
+ supports-color "^7.0.0"
jmespath@0.15.0:
version "0.15.0"
@@ -5681,7 +6612,7 @@ js-tokens@^3.0.2:
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
-js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.7.0:
+js-yaml@^3.13.1:
version "3.13.1"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
@@ -5694,43 +6625,38 @@ jsbn@~0.1.0:
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
-jsdom@^11.5.1:
- version "11.12.0"
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"
- integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==
+jsdom@^16.2.2:
+ version "16.4.0"
+ resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb"
+ integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==
dependencies:
- abab "^2.0.0"
- acorn "^5.5.3"
- acorn-globals "^4.1.0"
- array-equal "^1.0.0"
- cssom ">= 0.3.2 < 0.4.0"
- cssstyle "^1.0.0"
- data-urls "^1.0.0"
- domexception "^1.0.1"
- escodegen "^1.9.1"
- html-encoding-sniffer "^1.0.2"
- left-pad "^1.3.0"
- nwsapi "^2.0.7"
- parse5 "4.0.0"
- pn "^1.1.0"
- request "^2.87.0"
- request-promise-native "^1.0.5"
- sax "^1.2.4"
- symbol-tree "^3.2.2"
- tough-cookie "^2.3.4"
- w3c-hr-time "^1.0.1"
- webidl-conversions "^4.0.2"
- whatwg-encoding "^1.0.3"
- whatwg-mimetype "^2.1.0"
- whatwg-url "^6.4.1"
- ws "^5.2.0"
+ abab "^2.0.3"
+ acorn "^7.1.1"
+ acorn-globals "^6.0.0"
+ cssom "^0.4.4"
+ cssstyle "^2.2.0"
+ data-urls "^2.0.0"
+ decimal.js "^10.2.0"
+ domexception "^2.0.1"
+ escodegen "^1.14.1"
+ html-encoding-sniffer "^2.0.1"
+ is-potential-custom-element-name "^1.0.0"
+ nwsapi "^2.2.0"
+ parse5 "5.1.1"
+ request "^2.88.2"
+ request-promise-native "^1.0.8"
+ saxes "^5.0.0"
+ symbol-tree "^3.2.4"
+ tough-cookie "^3.0.1"
+ w3c-hr-time "^1.0.2"
+ w3c-xmlserializer "^2.0.0"
+ webidl-conversions "^6.1.0"
+ whatwg-encoding "^1.0.5"
+ whatwg-mimetype "^2.3.0"
+ whatwg-url "^8.0.0"
+ ws "^7.2.3"
xml-name-validator "^3.0.0"
-jsesc@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
- integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s=
-
jsesc@^2.5.1:
version "2.5.2"
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
@@ -5763,6 +6689,11 @@ json-loader@^0.5.4:
resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d"
integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w==
+json-parse-better-errors@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
+ integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
+
json-schema-traverse@^0.3.0:
version "0.3.1"
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
@@ -5783,13 +6714,6 @@ json-stable-stringify-without-jsonify@^1.0.1:
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
-json-stable-stringify@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af"
- integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=
- dependencies:
- jsonify "~0.0.0"
-
json-stringify-safe@~5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
@@ -5807,6 +6731,13 @@ json5@^1.0.1:
dependencies:
minimist "^1.2.0"
+json5@^2.1.2:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
+ integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
+ dependencies:
+ minimist "^1.2.5"
+
jsonfile@^2.1.0:
version "2.4.0"
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
@@ -5828,11 +6759,6 @@ jsonfile@^4.0.0:
optionalDependencies:
graceful-fs "^4.1.6"
-jsonify@~0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
- integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
-
jsonwebtoken@8.5.1, jsonwebtoken@^8.5.0:
version "8.5.1"
resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d"
@@ -5859,24 +6785,23 @@ jsprim@^1.2.2:
json-schema "0.2.3"
verror "1.10.0"
-jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3:
- version "2.2.3"
- resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f"
- integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA==
+jsx-ast-utils@^2.4.1:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e"
+ integrity sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==
dependencies:
- array-includes "^3.0.3"
+ array-includes "^3.1.1"
object.assign "^4.1.0"
-jszip@3.1.5:
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.1.5.tgz#e3c2a6c6d706ac6e603314036d43cd40beefdf37"
- integrity sha512-5W8NUaFRFRqTOL7ZDDrx5qWHJyBXy6velVudIzQUSoqAAYqzSh2Z7/m0Rf1QbmQJccegD0r+YZxBjzqoBiEeJQ==
+jszip@^3.5.0:
+ version "3.5.0"
+ resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.5.0.tgz#b4fd1f368245346658e781fec9675802489e15f6"
+ integrity sha512-WRtu7TPCmYePR1nazfrtuF216cIVon/3GWOvHS9QR5bIwSbnxtdpma6un3jyGGNhHsKCSzn5Ypk+EkDRvTGiFA==
dependencies:
- core-js "~2.3.0"
- es6-promise "~3.0.2"
- lie "~3.1.0"
+ lie "~3.3.0"
pako "~1.0.2"
- readable-stream "~2.0.6"
+ readable-stream "~2.3.6"
+ set-immediate-shim "~1.0.1"
jwa@^1.4.1:
version "1.4.1"
@@ -5957,6 +6882,11 @@ klaw@^1.0.0:
optionalDependencies:
graceful-fs "^4.1.9"
+kleur@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
+ integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
+
koa-bodyparser@4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/koa-bodyparser/-/koa-bodyparser-4.2.0.tgz#bce6e08bc65f8709b6d1faa9411c7f0d8938aa54"
@@ -6134,6 +7064,18 @@ koa@^2.10.0:
type-is "^1.6.16"
vary "^1.1.2"
+language-subtag-registry@~0.3.2:
+ version "0.3.20"
+ resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.20.tgz#a00a37121894f224f763268e431c55556b0c0755"
+ integrity sha512-KPMwROklF4tEx283Xw0pNKtfTj1gZ4UByp4EsIFWLgBavJltF4TiYPc39k06zSTsLzxTVXXDSpbwaQXaFB4Qeg==
+
+language-tags@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
+ integrity sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=
+ dependencies:
+ language-subtag-registry "~0.3.2"
+
latest-version@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15"
@@ -6160,17 +7102,27 @@ lcid@^2.0.0:
dependencies:
invert-kv "^2.0.0"
-left-pad@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e"
- integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==
+leven@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
+ integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
-leven@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580"
- integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA=
+levenary@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77"
+ integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==
+ dependencies:
+ leven "^3.1.0"
-levn@^0.3.0, levn@~0.3.0:
+levn@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
+ integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
+ dependencies:
+ prelude-ls "^1.2.1"
+ type-check "~0.4.0"
+
+levn@~0.3.0:
version "0.3.0"
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
@@ -6178,10 +7130,10 @@ levn@^0.3.0, levn@~0.3.0:
prelude-ls "~1.1.2"
type-check "~0.3.2"
-lie@~3.1.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/lie/-/lie-3.1.1.tgz#9a436b2cc7746ca59de7a41fa469b3efb76bd87e"
- integrity sha1-mkNrLMd0bKWd56QfpGmz77dr2H4=
+lie@~3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz#dcf82dee545f46074daf200c7c1c5a08e0f40f6a"
+ integrity sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==
dependencies:
immediate "~3.0.5"
@@ -6192,6 +7144,11 @@ line-height@^0.3.1:
dependencies:
computed-style "~0.1.3"
+lines-and-columns@^1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
+ integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+
linkify-it@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf"
@@ -6204,17 +7161,6 @@ listenercount@~1.0.1:
resolved "https://registry.yarnpkg.com/listenercount/-/listenercount-1.0.1.tgz#84c8a72ab59c4725321480c975e6508342e70937"
integrity sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc=
-load-json-file@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
- integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=
- dependencies:
- graceful-fs "^4.1.2"
- parse-json "^2.2.0"
- pify "^2.0.0"
- pinkie-promise "^2.0.0"
- strip-bom "^2.0.0"
-
load-json-file@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8"
@@ -6240,7 +7186,7 @@ loader-utils@0.2.x, loader-utils@^0.2.16:
json5 "^0.5.0"
object-assign "^4.0.1"
-loader-utils@^1.0.2, loader-utils@^1.1.0:
+loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
@@ -6265,6 +7211,13 @@ locate-path@^3.0.0:
p-locate "^3.0.0"
path-exists "^3.0.0"
+locate-path@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
+ integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
+ dependencies:
+ p-locate "^4.1.0"
+
lodash.defaults@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
@@ -6335,7 +7288,7 @@ lodash.uniq@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
-"lodash@>=3.5 <5", lodash@^4.0.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.6.1:
+"lodash@>=3.5 <5", lodash@^4.0.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5:
version "4.17.19"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
@@ -6406,6 +7359,21 @@ make-dir@^1.0.0:
dependencies:
pify "^3.0.0"
+make-dir@^2.0.0, make-dir@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+ integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ dependencies:
+ pify "^4.0.1"
+ semver "^5.6.0"
+
+make-dir@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
+ integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
+ dependencies:
+ semver "^6.0.0"
+
makeerror@1.0.x:
version "1.0.11"
resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
@@ -6524,24 +7492,17 @@ memory-fs@^0.4.0, memory-fs@~0.4.1:
errno "^0.1.3"
readable-stream "^2.0.1"
-merge-stream@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1"
- integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=
- dependencies:
- readable-stream "^2.0.1"
-
-merge@^1.2.0:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145"
- integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==
+merge-stream@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
+ integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
methods@^1.0.1:
version "1.1.2"
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
-micromatch@^2.3.11, micromatch@^3.1.10, micromatch@^3.1.4:
+micromatch@^3.1.10, micromatch@^3.1.4:
version "3.1.10"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
@@ -6560,6 +7521,14 @@ micromatch@^2.3.11, micromatch@^3.1.10, micromatch@^3.1.4:
snapdragon "^0.8.1"
to-regex "^3.0.2"
+micromatch@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
+ integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
+ dependencies:
+ braces "^3.0.1"
+ picomatch "^2.0.5"
+
miller-rabin@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
@@ -6595,7 +7564,7 @@ mimic-fn@^1.0.0:
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
-mimic-fn@^2.0.0:
+mimic-fn@^2.0.0, mimic-fn@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
@@ -6605,13 +7574,6 @@ mimic-response@^1.0.0:
resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==
-min-document@^2.19.0:
- version "2.19.0"
- resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
- integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=
- dependencies:
- dom-walk "^0.1.0"
-
mini-create-react-context@^0.3.0:
version "0.3.2"
resolved "https://registry.yarnpkg.com/mini-create-react-context/-/mini-create-react-context-0.3.2.tgz#79fc598f283dd623da8e088b05db8cddab250189"
@@ -6631,7 +7593,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
-minimatch@^3.0.3, minimatch@^3.0.4:
+minimatch@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
@@ -6667,7 +7629,7 @@ mixin-deep@^1.2.0:
for-in "^1.0.2"
is-extendable "^1.0.1"
-"mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@~0.5.0:
+"mkdirp@>=0.5 0", mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.0:
version "0.5.5"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
@@ -6731,11 +7693,6 @@ ms@^2.1.1:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
-mute-stream@0.0.7:
- version "0.0.7"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
- integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
-
mz@2, mz@^2.6.0:
version "2.7.0"
resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
@@ -6782,7 +7739,7 @@ negotiator@0.6.2:
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
-neo-async@^2.5.0, neo-async@^2.6.0:
+neo-async@^2.5.0:
version "2.6.1"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
@@ -6866,16 +7823,27 @@ node-libs-browser@^2.0.0:
util "^0.11.0"
vm-browserify "^1.0.1"
-node-notifier@^5.2.1:
- version "5.4.3"
- resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50"
- integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q==
+node-modules-regexp@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
+ integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
+
+node-notifier@^7.0.0:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-7.0.2.tgz#3a70b1b70aca5e919d0b1b022530697466d9c675"
+ integrity sha512-ux+n4hPVETuTL8+daJXTOC6uKLgMsl1RYfFv7DKRzyvzBapqco0rZZ9g72ZN8VS6V+gvNYHYa/ofcCY8fkJWsA==
dependencies:
growly "^1.3.0"
- is-wsl "^1.1.0"
- semver "^5.5.0"
+ is-wsl "^2.2.0"
+ semver "^7.3.2"
shellwords "^0.1.1"
- which "^1.3.0"
+ uuid "^8.2.0"
+ which "^2.0.2"
+
+node-releases@^1.1.60:
+ version "1.1.60"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084"
+ integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==
nodemailer@^4.4.0:
version "4.7.0"
@@ -6913,7 +7881,7 @@ nopt@~1.0.10:
dependencies:
abbrev "1"
-normalize-package-data@^2.3.2:
+normalize-package-data@^2.3.2, normalize-package-data@^2.5.0:
version "2.5.0"
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
@@ -6956,6 +7924,13 @@ npm-run-path@^2.0.0:
dependencies:
path-key "^2.0.0"
+npm-run-path@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
+ integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
+ dependencies:
+ path-key "^3.0.0"
+
nth-check@~1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
@@ -6968,7 +7943,7 @@ number-is-nan@^1.0.0:
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
-nwsapi@^2.0.7:
+nwsapi@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
@@ -7029,14 +8004,13 @@ object.assign@^4.1.0:
has-symbols "^1.0.0"
object-keys "^1.0.11"
-object.entries@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b"
- integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ==
+object.entries@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.2.tgz#bc73f00acb6b6bb16c203434b10f9a7e797d3add"
+ integrity sha512-BQdB9qKmb/HyNdMNWVr7O3+z5MUIx3aiegEIJqjMBbBf0YT9RRxTJSim4mzFqtyr7PDAHigq0N9dO0m0tRakQA==
dependencies:
define-properties "^1.1.3"
- es-abstract "^1.17.0-next.1"
- function-bind "^1.1.1"
+ es-abstract "^1.17.5"
has "^1.0.3"
object.fromentries@^2.0.2:
@@ -7064,7 +8038,7 @@ object.pick@^1.3.0:
dependencies:
isobject "^3.0.1"
-object.values@^1.1.0, object.values@^1.1.1:
+object.values@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
@@ -7093,19 +8067,19 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0:
dependencies:
wrappy "1"
-onetime@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
- integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
+onetime@^5.1.0:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.1.tgz#5c8016847b0d67fcedb7eef254751cfcdc7e9418"
+ integrity sha512-ZpZpjcJeugQfWsfyQlshVoowIIQ1qBGSVll4rfDq6JJVO//fesjoX808hXWfBjY+ROZgpKDI5TRSRBSoJiZ8eg==
dependencies:
- mimic-fn "^1.0.0"
+ mimic-fn "^2.1.0"
only@~0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/only/-/only-0.0.2.tgz#2afde84d03e50b9a8edc444e30610a70295edfb4"
integrity sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q=
-optionator@^0.8.1, optionator@^0.8.2:
+optionator@^0.8.1:
version "0.8.3"
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
@@ -7117,6 +8091,18 @@ optionator@^0.8.1, optionator@^0.8.2:
type-check "~0.3.2"
word-wrap "~1.2.3"
+optionator@^0.9.1:
+ version "0.9.1"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
+ integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
+ dependencies:
+ deep-is "^0.1.3"
+ fast-levenshtein "^2.0.6"
+ levn "^0.4.1"
+ prelude-ls "^1.2.1"
+ type-check "^0.4.0"
+ word-wrap "^1.2.3"
+
orderedmap@^1.1.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/orderedmap/-/orderedmap-1.1.1.tgz#c618e77611b3b21d0fe3edc92586265e0059c789"
@@ -7158,7 +8144,7 @@ os-name@^3.1.0:
macos-release "^2.2.0"
windows-release "^3.1.0"
-os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2:
+os-tmpdir@^1.0.0, os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
@@ -7202,6 +8188,11 @@ p-defer@^1.0.0:
resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
+p-each-series@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48"
+ integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ==
+
p-finally@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
@@ -7224,7 +8215,7 @@ p-limit@^1.1.0:
dependencies:
p-try "^1.0.0"
-p-limit@^2.0.0:
+p-limit@^2.0.0, p-limit@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
@@ -7245,6 +8236,13 @@ p-locate@^3.0.0:
dependencies:
p-limit "^2.0.0"
+p-locate@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
+ integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
+ dependencies:
+ p-limit "^2.2.0"
+
p-some@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/p-some/-/p-some-2.0.1.tgz#65d87c8b154edbcf5221d167778b6d2e150f6f06"
@@ -7355,10 +8353,20 @@ parse-json@^2.2.0:
dependencies:
error-ex "^1.2.0"
-parse5@4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
- integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==
+parse-json@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.1.tgz#7cfe35c1ccd641bce3981467e6c2ece61b3b3878"
+ integrity sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ==
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ error-ex "^1.3.1"
+ json-parse-better-errors "^1.0.1"
+ lines-and-columns "^1.1.6"
+
+parse5@5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"
+ integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
parseqs@0.0.5:
version "0.0.5"
@@ -7399,24 +8407,22 @@ path-dirname@^1.0.0:
resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
-path-exists@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
- integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=
- dependencies:
- pinkie-promise "^2.0.0"
-
path-exists@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
-path-is-absolute@1.0.1, path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
+path-exists@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+ integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+
+path-is-absolute@1.0.1, path-is-absolute@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
-path-is-inside@^1.0.1, path-is-inside@^1.0.2:
+path-is-inside@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
@@ -7426,7 +8432,12 @@ path-key@^2.0.0, path-key@^2.0.1:
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
-path-parse@^1.0.5, path-parse@^1.0.6:
+path-key@^3.0.0, path-key@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+ integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+
+path-parse@^1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
@@ -7438,15 +8449,6 @@ path-to-regexp@^1.1.1, path-to-regexp@^1.7.0:
dependencies:
isarray "0.0.1"
-path-type@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
- integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=
- dependencies:
- graceful-fs "^4.1.2"
- pify "^2.0.0"
- pinkie-promise "^2.0.0"
-
path-type@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73"
@@ -7527,6 +8529,11 @@ pgpass@1.*:
dependencies:
split "^1.0.0"
+picomatch@^2.0.4, picomatch@^2.0.5:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
+ integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
+
pify@^2.0.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
@@ -7537,17 +8544,17 @@ pify@^3.0.0:
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
-pinkie-promise@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
- integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
- dependencies:
- pinkie "^2.0.0"
+pify@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+ integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
-pinkie@^2.0.0:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
- integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
+pirates@^4.0.0, pirates@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
+ integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
+ dependencies:
+ node-modules-regexp "^1.0.0"
pkg-dir@^2.0.0:
version "2.0.0"
@@ -7556,10 +8563,19 @@ pkg-dir@^2.0.0:
dependencies:
find-up "^2.1.0"
-pn@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
- integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
+pkg-dir@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
+ integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
+ dependencies:
+ find-up "^3.0.0"
+
+pkg-dir@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
+ integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
+ dependencies:
+ find-up "^4.0.0"
polished@3.6.5:
version "3.6.5"
@@ -7605,6 +8621,11 @@ postgres-interval@^1.1.0:
dependencies:
xtend "^4.0.0"
+prelude-ls@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
+ integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
+
prelude-ls@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
@@ -7620,6 +8641,13 @@ prepend-http@^2.0.0:
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
+prettier-linter-helpers@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
+ integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
+ dependencies:
+ fast-diff "^1.1.2"
+
prettier@^1.16.4, prettier@^1.18.2:
version "1.19.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
@@ -7638,13 +8666,15 @@ pretty-error@^2.0.2:
renderkid "^2.0.1"
utila "~0.4"
-pretty-format@^22.4.0, pretty-format@^22.4.3:
- version "22.4.3"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-22.4.3.tgz#f873d780839a9c02e9664c8a082e9ee79eaac16f"
- integrity sha512-S4oT9/sT6MN7/3COoOy+ZJeA92VmOnveLHgrwBE3Z1W5N9S2A1QGNYiE1z75DAENbJrXXUb+OWXhpJcg05QKQQ==
+pretty-format@^26.2.0:
+ version "26.2.0"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.2.0.tgz#83ecc8d7de676ff224225055e72bd64821cec4f1"
+ integrity sha512-qi/8IuBu2clY9G7qCXgCdD1Bf9w+sXakdHTRToknzMtVy0g7c4MBWaZy7MfB7ndKZovRO6XRwJiAYqq+MC7SDA==
dependencies:
- ansi-regex "^3.0.0"
- ansi-styles "^3.2.0"
+ "@jest/types" "^26.2.0"
+ ansi-regex "^5.0.0"
+ ansi-styles "^4.0.0"
+ react-is "^16.12.0"
prismjs@^1.19.0:
version "1.21.0"
@@ -7660,21 +8690,11 @@ prismjs@~1.17.0:
optionalDependencies:
clipboard "^2.0.0"
-private@^0.1.6, private@^0.1.8:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
- integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
-
process-nextick-args@^2.0.0, process-nextick-args@~2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-process-nextick-args@~1.0.6:
- version "1.0.7"
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
- integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=
-
process@^0.11.10:
version "0.11.10"
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
@@ -7699,6 +8719,14 @@ promise.prototype.finally@^3.1.2:
es-abstract "^1.17.0-next.0"
function-bind "^1.1.1"
+prompts@^2.0.1:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068"
+ integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==
+ dependencies:
+ kleur "^3.0.3"
+ sisteransi "^1.0.4"
+
prop-types@^15.0.0, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.6, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.6.2, prop-types@^15.7.2:
version "15.7.2"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
@@ -8034,11 +9062,6 @@ react-color@^2.17.3:
reactcss "^1.2.0"
tinycolor2 "^1.4.1"
-react-deep-force-update@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.1.2.tgz#3d2ae45c2c9040cbb1772be52f8ea1ade6ca2ee1"
- integrity sha512-WUSQJ4P/wWcusaH+zZmbECOk7H5N2pOIl0vzheeornkIMhu+qrNdGFm0bDZLCb0hSF0jf/kH1SgkNGfBdTc4wA==
-
react-dom@^16.8.6:
version "16.13.1"
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f"
@@ -8072,7 +9095,7 @@ react-helmet@^5.2.0:
react-fast-compare "^2.0.2"
react-side-effect "^1.1.0"
-react-is@^16.6.0, react-is@^16.6.3, react-is@^16.7.0, react-is@^16.8.1:
+react-is@^16.12.0, react-is@^16.6.0, react-is@^16.6.3, react-is@^16.7.0, react-is@^16.8.1:
version "16.13.1"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
@@ -8111,14 +9134,6 @@ react-portal@^4.0.0, react-portal@^4.2.1:
dependencies:
prop-types "^15.5.8"
-react-proxy@^1.1.7:
- version "1.1.8"
- resolved "https://registry.yarnpkg.com/react-proxy/-/react-proxy-1.1.8.tgz#9dbfd9d927528c3aa9f444e4558c37830ab8c26a"
- integrity sha1-nb/Z2SdSjDqp9ETkVYw3gwq4wmo=
- dependencies:
- lodash "^4.6.1"
- react-deep-force-update "^1.0.0"
-
react-router-dom@^5.1.2:
version "5.1.2"
resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.1.2.tgz#06701b834352f44d37fbb6311f870f84c76b9c18"
@@ -8155,19 +9170,6 @@ react-side-effect@^1.1.0:
dependencies:
shallowequal "^1.0.1"
-react-transform-catch-errors@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/react-transform-catch-errors/-/react-transform-catch-errors-1.0.2.tgz#1b4d4a76e97271896fc16fe3086c793ec88a9eeb"
- integrity sha1-G01KdulycYlvwW/jCGx5PsiKnus=
-
-react-transform-hmr@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz#e1a40bd0aaefc72e8dfd7a7cda09af85066397bb"
- integrity sha1-4aQL0Krvxy6N/Xp82gmvhQZjl7s=
- dependencies:
- global "^4.3.0"
- react-proxy "^1.1.7"
-
react-waypoint@^9.0.2:
version "9.0.2"
resolved "https://registry.yarnpkg.com/react-waypoint/-/react-waypoint-9.0.2.tgz#d65fb0fe6ff5c1b832a1d01b1462a661fb921e45"
@@ -8193,14 +9195,6 @@ reactcss@^1.2.0:
dependencies:
lodash "^4.0.1"
-read-pkg-up@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
- integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=
- dependencies:
- find-up "^1.0.0"
- read-pkg "^1.0.0"
-
read-pkg-up@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be"
@@ -8209,14 +9203,14 @@ read-pkg-up@^2.0.0:
find-up "^2.0.0"
read-pkg "^2.0.0"
-read-pkg@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
- integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=
+read-pkg-up@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
+ integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
dependencies:
- load-json-file "^1.0.0"
- normalize-package-data "^2.3.2"
- path-type "^1.0.0"
+ find-up "^4.1.0"
+ read-pkg "^5.2.0"
+ type-fest "^0.8.1"
read-pkg@^2.0.0:
version "2.0.0"
@@ -8227,6 +9221,16 @@ read-pkg@^2.0.0:
normalize-package-data "^2.3.2"
path-type "^2.0.0"
+read-pkg@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
+ integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
+ dependencies:
+ "@types/normalize-package-data" "^2.4.0"
+ normalize-package-data "^2.5.0"
+ parse-json "^5.0.0"
+ type-fest "^0.6.0"
+
"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6:
version "2.3.7"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
@@ -8249,18 +9253,6 @@ readable-stream@^3.1.1:
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
-readable-stream@~2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
- integrity sha1-j5A0HmilPMySh4jaz80Rs265t44=
- dependencies:
- core-util-is "~1.0.0"
- inherits "~2.0.1"
- isarray "~1.0.0"
- process-nextick-args "~1.0.6"
- string_decoder "~0.10.x"
- util-deprecate "~1.0.1"
-
readdirp@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
@@ -8270,13 +9262,6 @@ readdirp@^2.2.1:
micromatch "^3.1.10"
readable-stream "^2.0.2"
-realpath-native@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
- integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==
- dependencies:
- util.promisify "^1.0.0"
-
rechoir@^0.6.2:
version "0.6.2"
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
@@ -8284,16 +9269,6 @@ rechoir@^0.6.2:
dependencies:
resolve "^1.1.6"
-redbox-react@^1.2.2:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/redbox-react/-/redbox-react-1.6.0.tgz#e753ac02595bc1bf695b3935889a4f5b1b5a21a1"
- integrity sha512-mLjM5eYR41yOp5YKHpd3syFeGq6B4Wj5vZr64nbLvTZW5ZLff4LYk7VE4ITpVxkZpCY6OZuqh0HiP3A3uEaCpg==
- dependencies:
- error-stack-parser "^1.3.6"
- object-assign "^4.0.1"
- prop-types "^15.5.4"
- sourcemapped-stacktrace "^1.1.6"
-
redis-commands@1.5.0, redis-commands@^1.2.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.5.0.tgz#80d2e20698fe688f227127ff9e5164a7dd17e785"
@@ -8339,15 +9314,17 @@ refractor@^2.10.1:
parse-entities "^1.1.2"
prismjs "~1.17.0"
-regenerate@^1.2.1:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
- integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==
+regenerate-unicode-properties@^8.2.0:
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
+ integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
+ dependencies:
+ regenerate "^1.4.0"
-regenerator-runtime@^0.10.5:
- version "0.10.5"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
- integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=
+regenerate@^1.4.0:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f"
+ integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==
regenerator-runtime@^0.11.0:
version "0.11.1"
@@ -8359,14 +9336,12 @@ regenerator-runtime@^0.13.4:
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
-regenerator-transform@^0.10.0:
- version "0.10.1"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
- integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==
+regenerator-transform@^0.14.2:
+ version "0.14.5"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
+ integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
dependencies:
- babel-runtime "^6.18.0"
- babel-types "^6.19.0"
- private "^0.1.6"
+ "@babel/runtime" "^7.8.4"
regex-not@^1.0.0, regex-not@^1.0.2:
version "1.0.2"
@@ -8384,19 +9359,22 @@ regexp.prototype.flags@^1.3.0:
define-properties "^1.1.3"
es-abstract "^1.17.0-next.1"
-regexpp@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
- integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
+regexpp@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
+ integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
-regexpu-core@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
- integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=
+regexpu-core@^4.7.0:
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938"
+ integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==
dependencies:
- regenerate "^1.2.1"
- regjsgen "^0.2.0"
- regjsparser "^0.1.4"
+ regenerate "^1.4.0"
+ regenerate-unicode-properties "^8.2.0"
+ regjsgen "^0.5.1"
+ regjsparser "^0.6.4"
+ unicode-match-property-ecmascript "^1.0.4"
+ unicode-match-property-value-ecmascript "^1.2.0"
registry-auth-token@^3.0.1:
version "3.4.0"
@@ -8413,15 +9391,15 @@ registry-url@^3.0.3:
dependencies:
rc "^1.0.1"
-regjsgen@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
- integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=
+regjsgen@^0.5.1:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
+ integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
-regjsparser@^0.1.4:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
- integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=
+regjsparser@^0.6.4:
+ version "0.6.4"
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
+ integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
dependencies:
jsesc "~0.5.0"
@@ -8456,35 +9434,28 @@ repeat-string@^1.5.2, repeat-string@^1.6.1:
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
-repeating@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
- integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=
- dependencies:
- is-finite "^1.0.0"
-
replace-ext@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=
-request-promise-core@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9"
- integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ==
+request-promise-core@1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f"
+ integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==
dependencies:
- lodash "^4.17.15"
+ lodash "^4.17.19"
-request-promise-native@^1.0.5:
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36"
- integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==
+request-promise-native@^1.0.8:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
+ integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
dependencies:
- request-promise-core "1.1.3"
+ request-promise-core "1.1.4"
stealthy-require "^1.1.1"
tough-cookie "^2.3.3"
-request@^2.87.0:
+request@^2.88.2:
version "2.88.2"
resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==
@@ -8530,23 +9501,23 @@ require-package-name@^2.0.1:
resolved "https://registry.yarnpkg.com/require-package-name/-/require-package-name-2.0.1.tgz#c11e97276b65b8e2923f75dabf5fb2ef0c3841b9"
integrity sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=
-resolve-cwd@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
- integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=
- dependencies:
- resolve-from "^3.0.0"
-
-resolve-from@^3.0.0:
+resolve-cwd@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
- integrity sha1-six699nWiBvItuZTM17rywoYh0g=
+ resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
+ integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
+ dependencies:
+ resolve-from "^5.0.0"
resolve-from@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+resolve-from@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
+ integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
+
resolve-path@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/resolve-path/-/resolve-path-1.4.0.tgz#c4bda9f5efb2fce65247873ab36bb4d834fe16f7"
@@ -8565,18 +9536,20 @@ resolve-url@^0.2.1:
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-resolve@1.1.7:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
- integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
-
-resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.5.0:
+resolve@^1.1.6, resolve@^1.10.0, resolve@^1.13.1, resolve@^1.5.0:
version "1.16.1"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.16.1.tgz#49fac5d8bacf1fd53f200fa51247ae736175832c"
integrity sha512-rmAglCSqWWMrrBv/XM6sW0NuRFiKViw/W4d9EbC4pt+49H8JwHy+mcGmALTEg504AUDcLTvb1T2q3E9AnmY+ig==
dependencies:
path-parse "^1.0.6"
+resolve@^1.12.0, resolve@^1.17.0, resolve@^1.3.2:
+ version "1.17.0"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
+ integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
+ dependencies:
+ path-parse "^1.0.6"
+
responselike@1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
@@ -8584,14 +9557,6 @@ responselike@1.0.2:
dependencies:
lowercase-keys "^1.0.0"
-restore-cursor@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
- integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
- dependencies:
- onetime "^2.0.0"
- signal-exit "^3.0.2"
-
ret@~0.1.10:
version "0.1.15"
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
@@ -8643,7 +9608,7 @@ right-align@^0.1.1:
dependencies:
align-text "^0.1.1"
-rimraf@2, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2:
+rimraf@2, rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.2:
version "2.7.1"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
@@ -8657,6 +9622,13 @@ rimraf@2.6.3:
dependencies:
glob "^7.1.3"
+rimraf@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+ dependencies:
+ glob "^7.1.3"
+
ripemd160@^2.0.0, ripemd160@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
@@ -8691,17 +9663,10 @@ rope-sequence@^1.3.0:
resolved "https://registry.yarnpkg.com/rope-sequence/-/rope-sequence-1.3.2.tgz#a19e02d72991ca71feb6b5f8a91154e48e3c098b"
integrity sha512-ku6MFrwEVSVmXLvy3dYph3LAMNS0890K7fabn+0YIRQ2T96T9F4gkFf0vf0WW0JUraNWwGRtInEpH7yO4tbQZg==
-rsvp@^3.3.3:
- version "3.6.2"
- resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a"
- integrity sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==
-
-run-async@^2.2.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8"
- integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg==
- dependencies:
- is-promise "^2.1.0"
+rsvp@^4.8.4:
+ version "4.8.5"
+ resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
+ integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
run-queue@^1.0.0, run-queue@^1.0.3:
version "1.0.3"
@@ -8710,13 +9675,6 @@ run-queue@^1.0.0, run-queue@^1.0.3:
dependencies:
aproba "^1.1.1"
-rxjs@^6.4.0:
- version "6.5.5"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec"
- integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ==
- dependencies:
- tslib "^1.9.0"
-
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
@@ -8739,21 +9697,20 @@ safe-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-sane@^2.0.0:
- version "2.5.2"
- resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa"
- integrity sha1-tNwYYcIbQn6SlQej51HiosuKs/o=
+sane@^4.0.3:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
+ integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
dependencies:
+ "@cnakazawa/watch" "^1.0.3"
anymatch "^2.0.0"
- capture-exit "^1.2.0"
- exec-sh "^0.2.0"
+ capture-exit "^2.0.0"
+ exec-sh "^0.3.2"
+ execa "^1.0.0"
fb-watchman "^2.0.0"
micromatch "^3.1.4"
minimist "^1.1.1"
walker "~1.0.5"
- watch "~0.18.0"
- optionalDependencies:
- fsevents "^1.2.3"
sanitizer@^0.1.3:
version "0.1.3"
@@ -8765,11 +9722,18 @@ sax@1.2.1:
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a"
integrity sha1-e45lYZCyKOgaZq6nSEgNgozS03o=
-sax@>=0.6.0, sax@^1.2.4:
+sax@>=0.6.0:
version "1.2.4"
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+saxes@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
+ integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
+ dependencies:
+ xmlchars "^2.2.0"
+
scheduler@^0.19.1:
version "0.19.1"
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
@@ -8793,6 +9757,15 @@ schema-utils@^0.4.5:
ajv "^6.1.0"
ajv-keywords "^3.1.0"
+schema-utils@^2.6.5:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7"
+ integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==
+ dependencies:
+ "@types/json-schema" "^7.0.4"
+ ajv "^6.12.2"
+ ajv-keywords "^3.4.1"
+
scroll-into-view-if-needed@^2.2.24:
version "2.2.24"
resolved "https://registry.yarnpkg.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.24.tgz#12bca532990769bd509115a49edcfa755e92a0ea"
@@ -8812,7 +9785,7 @@ semver-diff@^2.0.0:
dependencies:
semver "^5.0.3"
-"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.1:
+"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.1:
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
@@ -8822,12 +9795,17 @@ semver@4.3.2:
resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.2.tgz#c7a07158a80bedd052355b770d82d6640f803be7"
integrity sha1-x6BxWKgL7dBSNVt3DYLWZA+AO+c=
-semver@^6.3.0:
+semver@7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
+ integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
+
+semver@^6.0.0, semver@^6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-semver@^7.3.2:
+semver@^7.2.1, semver@^7.3.2:
version "7.3.2"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938"
integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==
@@ -8887,6 +9865,11 @@ set-blocking@^2.0.0:
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
+set-immediate-shim@~1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
+ integrity sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=
+
set-value@^2.0.0, set-value@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
@@ -8932,11 +9915,23 @@ shebang-command@^1.2.0:
dependencies:
shebang-regex "^1.0.0"
+shebang-command@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+ integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+ dependencies:
+ shebang-regex "^3.0.0"
+
shebang-regex@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
+shebang-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+ integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+
shelljs@^0.8.3:
version "0.8.3"
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.3.tgz#a7f3319520ebf09ee81275b2368adb286659b097"
@@ -8974,10 +9969,15 @@ signal-exit@^3.0.0, signal-exit@^3.0.2:
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
-slash@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
- integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
+sisteransi@^1.0.4:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
+ integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
+
+slash@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+ integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
slate-md-serializer@5.5.4:
version "5.5.4"
@@ -9160,17 +10160,17 @@ source-map-resolve@^0.5.0:
source-map-url "^0.4.0"
urix "^0.1.0"
-source-map-support@^0.4.0, source-map-support@^0.4.15:
+source-map-support@^0.4.0:
version "0.4.18"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==
dependencies:
source-map "^0.5.6"
-source-map-support@^0.5.0:
- version "0.5.17"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.17.tgz#29fe1b3c98b9dbd5064ada89052ee8ff070cb46c"
- integrity sha512-bwdKOBZ5L0gFRh4KOxNap/J/MpvX9Yxsq9lFDx65s3o7F/NiHy7JRaGIS8MwW6tZPAq9UXE207Il0cfcb5yu/Q==
+source-map-support@^0.5.16, source-map-support@^0.5.6:
+ version "0.5.19"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
+ integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
dependencies:
buffer-from "^1.0.0"
source-map "^0.6.0"
@@ -9187,12 +10187,7 @@ source-map@0.1.x:
dependencies:
amdefine ">=0.0.4"
-source-map@0.5.6:
- version "0.5.6"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
- integrity sha1-dc449SvwczxafwwRjYEzSiu19BI=
-
-source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1:
+source-map@0.5.x, source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1:
version "0.5.7"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
@@ -9202,6 +10197,11 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+source-map@^0.7.3:
+ version "0.7.3"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
+ integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
+
source-map@~0.4.1:
version "0.4.4"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
@@ -9209,13 +10209,6 @@ source-map@~0.4.1:
dependencies:
amdefine ">=0.0.4"
-sourcemapped-stacktrace@^1.1.6:
- version "1.1.11"
- resolved "https://registry.yarnpkg.com/sourcemapped-stacktrace/-/sourcemapped-stacktrace-1.1.11.tgz#e2dede7fc148599c52a4f883276e527f8452657d"
- integrity sha512-O0pcWjJqzQFVsisPlPXuNawJHHg9N9UgpJ/aDmvi9+vnS3x1C0NhwkVFzzZ1VN0Xo+bekyweoqYvBw5ZBKiNnQ==
- dependencies:
- source-map "0.5.6"
-
space-separated-tokens@^1.0.0:
version "1.1.5"
resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899"
@@ -9288,15 +10281,12 @@ ssri@^5.2.4:
dependencies:
safe-buffer "^5.1.1"
-stack-utils@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8"
- integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==
-
-stackframe@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-0.3.1.tgz#33aa84f1177a5548c8935533cbfeb3420975f5a4"
- integrity sha1-M6qE8Rd6VUjIk1Uzy/6zQgl19aQ=
+stack-utils@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.2.tgz#5cf48b4557becb4638d0bc4f21d23f5d19586593"
+ integrity sha512-0H7QK2ECz3fyZMzQ8rH0j2ykpfbnd20BFtfg/SqVC2+sCTtcw0aDTGB7dk+de4U4uUeuz6nOtJcrkFFLG1B0Rg==
+ dependencies:
+ escape-string-regexp "^2.0.0"
standard-as-callback@^2.0.1:
version "2.0.1"
@@ -9363,13 +10353,18 @@ strict-uri-encode@^1.0.0:
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
-string-length@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
- integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=
+string-length@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.1.tgz#4a973bf31ef77c4edbceadd6af2611996985f8a1"
+ integrity sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==
dependencies:
- astral-regex "^1.0.0"
- strip-ansi "^4.0.0"
+ char-regex "^1.0.2"
+ strip-ansi "^6.0.0"
+
+string-natural-compare@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4"
+ integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==
string-replace-to-array@^1.0.3:
version "1.0.3"
@@ -9389,7 +10384,7 @@ string-width@^1.0.1:
is-fullwidth-code-point "^1.0.0"
strip-ansi "^3.0.0"
-string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
+string-width@^2.0.0, string-width@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
@@ -9406,6 +10401,15 @@ string-width@^3.0.0, string-width@^3.1.0:
is-fullwidth-code-point "^2.0.0"
strip-ansi "^5.1.0"
+string-width@^4.1.0, string-width@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
+ integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.0"
+
string.prototype.matchall@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e"
@@ -9459,11 +10463,6 @@ string_decoder@^1.0.0, string_decoder@^1.1.1:
dependencies:
safe-buffer "~5.2.0"
-string_decoder@~0.10.x:
- version "0.10.31"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
- integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=
-
string_decoder@~1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
@@ -9492,24 +10491,39 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
dependencies:
ansi-regex "^4.1.0"
-strip-bom@3.0.0, strip-bom@^3.0.0:
+strip-ansi@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
+ integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
+ dependencies:
+ ansi-regex "^5.0.0"
+
+strip-bom@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
-strip-bom@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
- integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=
- dependencies:
- is-utf8 "^0.2.0"
+strip-bom@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
+ integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
strip-eof@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-strip-json-comments@^2.0.1, strip-json-comments@~2.0.1:
+strip-final-newline@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
+ integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
+
+strip-json-comments@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+ integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+
+strip-json-comments@~2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
@@ -9545,13 +10559,6 @@ supports-color@^2.0.0:
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
-supports-color@^3.1.2:
- version "3.2.3"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
- integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=
- dependencies:
- has-flag "^1.0.0"
-
supports-color@^4.2.1:
version "4.5.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
@@ -9566,7 +10573,22 @@ supports-color@^5.3.0, supports-color@^5.5.0:
dependencies:
has-flag "^3.0.0"
-symbol-tree@^3.2.2:
+supports-color@^7.0.0, supports-color@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
+ integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
+ dependencies:
+ has-flag "^4.0.0"
+
+supports-hyperlinks@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47"
+ integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==
+ dependencies:
+ has-flag "^4.0.0"
+ supports-color "^7.0.0"
+
+symbol-tree@^3.2.4:
version "3.2.4"
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
@@ -9598,16 +10620,22 @@ term-size@^1.2.0:
dependencies:
execa "^0.7.0"
-test-exclude@^4.2.1:
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz#a9a5e64474e4398339245a0a769ad7c2f4a97c20"
- integrity sha512-SYbXgY64PT+4GAL2ocI3HwPa4Q4TBKm0cwAVeKOt/Aoc0gSpNRjJX8w0pA1LMKZ3LBmd8pYBqApFNQLII9kavA==
+terminal-link@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
+ integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
dependencies:
- arrify "^1.0.1"
- micromatch "^2.3.11"
- object-assign "^4.1.0"
- read-pkg-up "^1.0.1"
- require-main-filename "^1.0.1"
+ ansi-escapes "^4.2.1"
+ supports-hyperlinks "^2.0.0"
+
+test-exclude@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
+ integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
+ dependencies:
+ "@istanbuljs/schema" "^0.1.2"
+ glob "^7.1.4"
+ minimatch "^3.0.4"
text-table@^0.2.0:
version "0.2.0"
@@ -9628,10 +10656,10 @@ thenify-all@^1.0.0:
dependencies:
any-promise "^1.0.0"
-throat@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a"
- integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=
+throat@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
+ integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
through2@^2.0.0:
version "2.0.5"
@@ -9641,7 +10669,7 @@ through2@^2.0.0:
readable-stream "~2.3.6"
xtend "~4.0.1"
-through@2, through@^2.3.6, through@^2.3.8:
+through@2, through@^2.3.8:
version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
@@ -9708,7 +10736,7 @@ tippy.js@^4.3.4:
dependencies:
popper.js "^1.14.7"
-tmp@0.0.33, tmp@^0.0.33:
+tmp@0.0.33:
version "0.0.33"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
@@ -9755,6 +10783,13 @@ to-regex-range@^2.1.0:
is-number "^3.0.0"
repeat-string "^1.6.1"
+to-regex-range@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+ integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+ dependencies:
+ is-number "^7.0.0"
+
to-regex@^3.0.1, to-regex@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
@@ -9792,7 +10827,7 @@ touch@^3.1.0:
dependencies:
nopt "~1.0.10"
-tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.5.0:
+tough-cookie@^2.3.3, tough-cookie@~2.5.0:
version "2.5.0"
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
@@ -9800,24 +10835,38 @@ tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.5.0:
psl "^1.1.28"
punycode "^2.1.1"
-tr46@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
- integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
+tough-cookie@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2"
+ integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
dependencies:
- punycode "^2.1.0"
+ ip-regex "^2.1.0"
+ psl "^1.1.28"
+ punycode "^2.1.1"
+
+tr46@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.0.2.tgz#03273586def1595ae08fedb38d7733cee91d2479"
+ integrity sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==
+ dependencies:
+ punycode "^2.1.1"
"traverse@>=0.3.0 <0.4":
version "0.3.9"
resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.3.9.tgz#717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9"
integrity sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=
-trim-right@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
- integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
+tsconfig-paths@^3.9.0:
+ version "3.9.0"
+ resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz#098547a6c4448807e8fcb8eae081064ee9a3c90b"
+ integrity sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==
+ dependencies:
+ "@types/json5" "^0.0.29"
+ json5 "^1.0.1"
+ minimist "^1.2.0"
+ strip-bom "^3.0.0"
-tslib@^1.9.0, tslib@^1.9.3:
+tslib@^1.9.3:
version "1.11.1"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
@@ -9844,6 +10893,13 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0:
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
+type-check@^0.4.0, type-check@~0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
+ integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
+ dependencies:
+ prelude-ls "^1.2.1"
+
type-check@~0.3.2:
version "0.3.2"
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
@@ -9851,6 +10907,26 @@ type-check@~0.3.2:
dependencies:
prelude-ls "~1.1.2"
+type-detect@4.0.8:
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
+ integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
+
+type-fest@^0.11.0:
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1"
+ integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
+
+type-fest@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
+ integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
+
+type-fest@^0.8.1:
+ version "0.8.1"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
+ integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+
type-is@^1.6.14, type-is@^1.6.16:
version "1.6.18"
resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
@@ -9874,6 +10950,13 @@ type@^2.0.0:
resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3"
integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==
+typedarray-to-buffer@^3.1.5:
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
+ integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
+ dependencies:
+ is-typedarray "^1.0.0"
+
typedarray@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
@@ -9925,13 +11008,6 @@ uglify-js@^2.8.29:
optionalDependencies:
uglify-to-browserify "~1.0.0"
-uglify-js@^3.1.4:
- version "3.9.1"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.9.1.tgz#a56a71c8caa2d36b5556cc1fd57df01ae3491539"
- integrity sha512-JUPoL1jHsc9fOjVFHdQIhqEEJsQvfKDjlubcCilu8U26uZ73qOg8VsN8O1jbuei44ZPlwL7kmbAdM4tzaUvqnA==
- dependencies:
- commander "~2.20.3"
-
uglify-to-browserify@~1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
@@ -9984,6 +11060,29 @@ underscore@^1.7.0:
resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.10.2.tgz#73d6aa3668f3188e4adb0f1943bd12cfd7efaaaf"
integrity sha512-N4P+Q/BuyuEKFJ43B9gYuOj4TQUHXX+j2FqguVOpjkssLUUrnJofCcBccJSCoeturDoZU6GorDTHSvUDlSQbTg==
+unicode-canonical-property-names-ecmascript@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
+ integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
+
+unicode-match-property-ecmascript@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
+ integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
+ dependencies:
+ unicode-canonical-property-names-ecmascript "^1.0.4"
+ unicode-property-aliases-ecmascript "^1.0.4"
+
+unicode-match-property-value-ecmascript@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
+ integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
+
+unicode-property-aliases-ecmascript@^1.0.4:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
+ integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
+
"unicode@>= 0.3.1":
version "12.1.0"
resolved "https://registry.yarnpkg.com/unicode/-/unicode-12.1.0.tgz#7ee53a7a0ca5539b353419432823d8da58bbbf33"
@@ -10172,7 +11271,7 @@ util.promisify@1.0.0:
define-properties "^1.1.2"
object.getownpropertydescriptors "^2.0.3"
-util.promisify@^1.0.0, util.promisify@^1.0.1:
+util.promisify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
@@ -10216,6 +11315,25 @@ uuid@^3.3.2, uuid@^3.3.3, uuid@^3.4.0:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
+uuid@^8.2.0:
+ version "8.3.0"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea"
+ integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ==
+
+v8-compile-cache@^2.0.3:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745"
+ integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==
+
+v8-to-istanbul@^4.1.3:
+ version "4.1.4"
+ resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6"
+ integrity sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ==
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.1"
+ convert-source-map "^1.6.0"
+ source-map "^0.7.3"
+
validate-npm-package-license@^3.0.1:
version "3.0.4"
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
@@ -10270,7 +11388,7 @@ vm-browserify@^1.0.1:
resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
-w3c-hr-time@^1.0.1:
+w3c-hr-time@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
@@ -10282,7 +11400,14 @@ w3c-keyname@^2.2.0:
resolved "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.4.tgz#4ade6916f6290224cdbd1db8ac49eab03d0eef6b"
integrity sha512-tOhfEwEzFLJzf6d1ZPkYfGj+FWhIpBux9ppoP3rlclw3Z0BZv3N7b7030Z1kYth+6rDuAsXUFr+d0VE6Ed1ikw==
-walker@~1.0.5:
+w3c-xmlserializer@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a"
+ integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
+ dependencies:
+ xml-name-validator "^3.0.0"
+
+walker@^1.0.7, walker@~1.0.5:
version "1.0.7"
resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
@@ -10296,14 +11421,6 @@ warning@^4.0.3:
dependencies:
loose-envify "^1.0.0"
-watch@~0.18.0:
- version "0.18.0"
- resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
- integrity sha1-KAlUdsbffJDJYxOJkMClQj60uYY=
- dependencies:
- exec-sh "^0.2.0"
- minimist "^1.2.0"
-
watchpack@^1.4.0:
version "1.6.1"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.1.tgz#280da0a8718592174010c078c7585a74cd8cd0e2"
@@ -10313,10 +11430,15 @@ watchpack@^1.4.0:
graceful-fs "^4.1.2"
neo-async "^2.5.0"
-webidl-conversions@^4.0.2:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
- integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
+webidl-conversions@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
+ integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
+
+webidl-conversions@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
+ integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
webpack-core@^0.6.8:
version "0.6.9"
@@ -10391,7 +11513,7 @@ webpack@3.10.0:
webpack-sources "^1.0.1"
yargs "^8.0.2"
-whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3:
+whatwg-encoding@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
@@ -10403,41 +11525,39 @@ whatwg-fetch@>=0.10.0:
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb"
integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==
-whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0:
+whatwg-mimetype@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
-whatwg-url@^6.4.1:
- version "6.5.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8"
- integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==
+whatwg-url@^8.0.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.1.0.tgz#c628acdcf45b82274ce7281ee31dd3c839791771"
+ integrity sha512-vEIkwNi9Hqt4TV9RdnaBPNt+E2Sgmo3gePebCRgZ1R7g6d23+53zCTnuB0amKI4AXq6VM8jj2DUAa0S1vjJxkw==
dependencies:
lodash.sortby "^4.7.0"
- tr46 "^1.0.1"
- webidl-conversions "^4.0.2"
-
-whatwg-url@^7.0.0:
- version "7.1.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
- integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
- dependencies:
- lodash.sortby "^4.7.0"
- tr46 "^1.0.1"
- webidl-conversions "^4.0.2"
+ tr46 "^2.0.2"
+ webidl-conversions "^5.0.0"
which-module@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
-which@^1.2.12, which@^1.2.9, which@^1.3.0, which@^1.3.1:
+which@^1.2.9, which@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
dependencies:
isexe "^2.0.0"
+which@^2.0.1, which@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+ integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+ dependencies:
+ isexe "^2.0.0"
+
widest-line@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc"
@@ -10464,7 +11584,7 @@ wkx@^0.4.8:
dependencies:
"@types/node" "*"
-word-wrap@~1.2.3:
+word-wrap@^1.2.3, word-wrap@~1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
@@ -10474,11 +11594,6 @@ wordwrap@0.0.2:
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=
-wordwrap@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
- integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
-
worker-farm@^1.5.2:
version "1.7.0"
resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
@@ -10503,12 +11618,21 @@ wrap-ansi@^5.1.0:
string-width "^3.0.0"
strip-ansi "^5.0.0"
+wrap-ansi@^6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
+ integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
wrappy@1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
-write-file-atomic@^2.0.0, write-file-atomic@^2.1.0:
+write-file-atomic@^2.0.0:
version "2.4.3"
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"
integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==
@@ -10517,6 +11641,16 @@ write-file-atomic@^2.0.0, write-file-atomic@^2.1.0:
imurmurhash "^0.1.4"
signal-exit "^3.0.2"
+write-file-atomic@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
+ integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
+ dependencies:
+ imurmurhash "^0.1.4"
+ is-typedarray "^1.0.0"
+ signal-exit "^3.0.2"
+ typedarray-to-buffer "^3.1.5"
+
write@1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3"
@@ -10524,18 +11658,16 @@ write@1.0.3:
dependencies:
mkdirp "^0.5.1"
-ws@^5.2.0:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"
- integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==
- dependencies:
- async-limiter "~1.0.0"
-
ws@^7.1.2:
version "7.2.3"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.3.tgz#a5411e1fb04d5ed0efee76d26d5c46d830c39b46"
integrity sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ==
+ws@^7.2.3:
+ version "7.3.1"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8"
+ integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA==
+
ws@~6.1.0:
version "6.1.4"
resolved "https://registry.yarnpkg.com/ws/-/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9"
@@ -10571,18 +11703,16 @@ xmlbuilder@~9.0.1:
resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"
integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=
+xmlchars@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
+ integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
+
xmlhttprequest-ssl@~1.5.4:
version "1.5.5"
resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e"
integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4=
-xregexp@^4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz#7e92e73d9174a99a59743f67a4ce879a04b5ae50"
- integrity sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g==
- dependencies:
- "@babel/runtime-corejs3" "^7.8.3"
-
xtend@^4.0.0, xtend@~4.0.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
@@ -10624,6 +11754,14 @@ yargs-parser@^13.1.2:
camelcase "^5.0.0"
decamelize "^1.2.0"
+yargs-parser@^18.1.2:
+ version "18.1.3"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
+ integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
+ dependencies:
+ camelcase "^5.0.0"
+ decamelize "^1.2.0"
+
yargs-parser@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
@@ -10631,31 +11769,6 @@ yargs-parser@^7.0.0:
dependencies:
camelcase "^4.1.0"
-yargs-parser@^8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950"
- integrity sha512-yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==
- dependencies:
- camelcase "^4.1.0"
-
-yargs@^10.0.3:
- version "10.1.2"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.1.2.tgz#454d074c2b16a51a43e2fb7807e4f9de69ccb5c5"
- integrity sha512-ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==
- dependencies:
- cliui "^4.0.0"
- decamelize "^1.1.1"
- find-up "^2.1.0"
- get-caller-file "^1.0.1"
- os-locale "^2.0.0"
- require-directory "^2.1.1"
- require-main-filename "^1.0.1"
- set-blocking "^2.0.0"
- string-width "^2.0.0"
- which-module "^2.0.0"
- y18n "^3.2.1"
- yargs-parser "^8.1.0"
-
yargs@^12.0.2:
version "12.0.5"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
@@ -10690,6 +11803,23 @@ yargs@^13.1.0:
y18n "^4.0.0"
yargs-parser "^13.1.2"
+yargs@^15.3.1:
+ version "15.4.1"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
+ integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
+ dependencies:
+ cliui "^6.0.0"
+ decamelize "^1.2.0"
+ find-up "^4.1.0"
+ get-caller-file "^2.0.1"
+ require-directory "^2.1.1"
+ require-main-filename "^2.0.0"
+ set-blocking "^2.0.0"
+ string-width "^4.2.0"
+ which-module "^2.0.0"
+ y18n "^4.0.0"
+ yargs-parser "^18.1.2"
+
yargs@^8.0.2:
version "8.0.2"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360"